@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:style.css
Summary:base styles
Created:2025-06-12
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Margin */
/*  --------------------------------------------- */
/* 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 {
  display: block;
  background: #000;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

/* 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: 14px;
  }
}
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: linear-gradient(to right, rgba(0, 113, 255, 0.85), rgba(0, 211, 157, 0.85));
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: min(5.208vw, 100px);
  padding: 0 0 0 min(2.604vw, 50px);
  margin: 0;
  position: fixed;
  top: 0;
  z-index: 100;
}
html body header .inner > h1 {
  width: min(12.812vw, 246px);
  filter: invert(1);
}
html body header .inner > div {
  display: flex;
  align-items: center;
  gap: min(1.563vw, 30px);
}
html body header .inner > div .tel {
  width: min(14.844vw, 285px);
}
html body header .inner > div .btn {
  width: min(12.24vw, 235px);
}
html body header .inner > div #nav_toggle {
  background: #000;
  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-size: min(2.5rem, 40px);
  font-weight: 700;
}
html body header #global_nav ul li a span::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
html body header.open .inner {
  background: none;
}
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(11.628vw, 50px);
    padding: 0 0 0 min(4.651vw, 20px);
  }
  html body header .inner h1 {
    width: min(31.628vw, 136px);
  }
  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(11.628vw, 50px);
    height: min(11.628vw, 50px);
  }
  html body header .inner > div #nav_toggle span {
    width: min(4.651vw, 20px);
  }
  html body header #global_nav ul {
    grid-template-columns: repeat(1, 1fr);
    gap: min(4.651vw, 20px);
    width: 80%;
  }
  html body header #global_nav ul li {
    transform: translateY(min(9.302vw, 40px));
  }
  html body header #global_nav ul li a span {
    font-size: 20px;
  }
  html body header #global_nav ul li a span::after {
    font-size: 0.857rem;
    margin-top: min(2.326vw, 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 section#mainvisual .inner {
  background: url("../img/bg_mainvisual.jpg") no-repeat center top/cover;
  position: relative;
}
html body main#index section#mainvisual .inner div {
  position: absolute;
  left: min(6.771vw, 130px);
  bottom: min(7.813vw, 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner div {
    left: min(4.651vw, 20px);
    bottom: min(11.628vw, 50px);
  }
}
html body main#index section#mainvisual .inner div h2 {
  color: #fff;
  font-size: min(5.75rem, 92px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner div h2 {
    font-size: min(4.375rem, 70px);
  }
}
html body main#index section#mainvisual .inner div h2 small {
  font-size: 84.782%;
  font-weight: 700;
}
html body main#index section#mainvisual .inner div .comment {
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner div .comment {
    font-size: min(0.875rem, 14px);
    margin-top: min(4.651vw, 20px);
  }
}
html body main#index section:not(#mainvisual) .inner h2 {
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(4.651vw, 20px);
  }
}
html body main#index section:not(#mainvisual) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#index section#fv {
  position: relative;
  width: 100%;
}
html body main#index section#fv video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#index section#fv div {
  position: absolute;
  left: min(6.771vw, 130px);
  bottom: min(7.813vw, 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#index section#fv div {
    left: min(4.651vw, 20px);
    bottom: min(11.628vw, 50px);
  }
}
html body main#index section#fv div h2 {
  color: #fff;
  font-size: min(5.75rem, 92px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#index section#fv div h2 {
    font-size: 70px;
  }
}
html body main#index section#fv div h2 small {
  font-size: 84.782%;
  font-weight: 700;
}
html body main#index section#fv div .comment {
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#fv div .comment {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#index section#company {
  background: url("../img/bg_company.jpg") no-repeat center top/cover;
  position: relative;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#company {
    background: url("../img/bg_company_sp.jpg") no-repeat center top/100% auto;
    position: initial;
    margin-top: min(6.977vw, 30px);
  }
}
html body main#index section#company::before {
  content: "";
  display: block;
  padding-top: 39.427%;
}
@media screen and (max-width: 768px) {
  html body main#index section#company::before {
    content: none;
  }
}
html body main#index section#company .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner {
    position: initial;
    padding: min(67.442vw, 290px) min(6.977vw, 30px) min(9.302vw, 40px);
  }
}
html body main#index section#company .inner > div {
  position: absolute;
  top: calc(-1 * min(3.125vw, 60px));
  left: calc(50% + min(4.688vw, 90px));
  width: min(31.51vw, 605px);
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner > div {
    position: initial;
    width: 100%;
  }
}
html body main#index section#company .inner > div .wrapper {
  background: url("../img/bg_company2.png") no-repeat center top/cover;
  width: min(31.51vw, 605px);
  padding: min(3.125vw, 60px) min(4.688vw, 90px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner > div .wrapper {
    background: url("../img/bg_company2_sp.png") no-repeat center top/cover;
    width: 100%;
    padding: 9.302vw min(9.302vw, 40px) 0;
  }
}
html body main#index section#company .inner > div .wrapper h2 {
  font-size: 0;
  width: min(18.542vw, 356px);
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner > div .wrapper h2 {
    width: 37.907vw;
  }
}
html body main#index section#company .inner > div .wrapper h2::after {
  content: none;
}
html body main#index section#company .inner > div .wrapper .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner > div .wrapper .comment {
    font-size: 0.714rem;
  }
}
html body main#index section#company .inner > div .wrapper .btn {
  width: min(12.24vw, 235px);
  margin: min(1.563vw, 30px) 0 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner > div .wrapper .btn {
    width: min(34.884vw, 150px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
html body main#index section#img {
  background: url("../img/bg_img.jpg") no-repeat center top/cover;
  width: 100%;
  height: min(11.25vw, 216px);
  aspect-ratio: 80/9;
}
@media screen and (max-width: 768px) {
  html body main#index section#img {
    height: min(41.86vw, 180px);
  }
}
html body main#index section#solution {
  background: url("../img/bg_solution.jpg") no-repeat center top/cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body main#index section#solution {
    background: url("../img/bg_solution_sp.jpg") no-repeat center bottom/100% auto;
    position: initial;
  }
}
html body main#index section#solution::before {
  content: "";
  display: block;
  padding-top: 28.802%;
}
@media screen and (max-width: 768px) {
  html body main#index section#solution::before {
    content: none;
  }
}
html body main#index section#solution .inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: min(2.604vw, 50px);
  width: 65.26vw;
}
@media screen and (max-width: 768px) {
  html body main#index section#solution .inner {
    position: initial;
    flex-direction: column;
    gap: min(9.302vw, 40px);
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px) min(65.116vw, 280px);
  }
}
html body main#index section#solution .inner div:nth-of-type(1) .comment {
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#index section#solution .inner div:nth-of-type(1) .comment {
    font-size: 0.714rem;
  }
}
html body main#index section#solution .inner div:nth-of-type(2) {
  width: min(28.854vw, 554px);
}
@media screen and (max-width: 768px) {
  html body main#index section#solution .inner div:nth-of-type(2) {
    width: min(100%, 554px);
  }
}
html body main#index section#workon {
  background: url("../img/bg_workon.jpg") no-repeat center top/cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#workon {
    background: url("../img/bg_workon_sp.jpg") no-repeat center top/100% auto;
    position: initial;
  }
}
html body main#index section#workon::before {
  content: "";
  display: block;
  padding-top: 26.77%;
}
@media screen and (max-width: 768px) {
  html body main#index section#workon::before {
    content: none;
  }
}
html body main#index section#workon .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#index section#workon .inner {
    position: initial;
    flex-direction: column;
    width: 100%;
    padding: 0 min(4.651vw, 20px);
  }
}
html body main#index section#workon .inner div {
  background: url("../img/bg_workon2.png") no-repeat center top/cover;
  width: min(30.468vw, 585px);
  padding: min(3.125vw, 60px) min(4.688vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  bottom: 0;
  left: calc(50% + min(4.688vw, 90px));
}
@media screen and (max-width: 768px) {
  html body main#index section#workon .inner div {
    width: 100%;
    padding: min(9.302vw, 40px) min(6.977vw, 30px);
    position: initial;
    margin-top: min(81.395vw, 350px);
  }
}
html body main#index section#workon .inner div .comment {
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#index section#workon .inner div .comment {
    font-size: 0.714rem;
  }
}
html body main#index section#workon .inner div .btn {
  width: min(12.24vw, 235px);
  margin: min(1.563vw, 30px) 0 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#workon .inner div .btn {
    width: min(34.884vw, 150px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
html body main#index section#base {
  background: #000 url("../img/bg_base.jpg") no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  html body main#index section#base {
    background: url("../img/bg_base_sp.jpg") no-repeat center top/100% auto;
  }
}
html body main#index section#base .inner {
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#index section#base .inner .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto;
}
html body main#index section#base .inner .title h2 {
  margin-bottom: 0;
}
html body main#index section#base .inner .title > .btn {
  width: min(9.375vw, 180px);
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .title > .btn {
    display: none;
  }
}
html body main#index section#base .inner .list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: min(3.646vw, 70px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: min(9.302vw, 40px) auto 0;
  }
}
html body main#index section#base .inner .list div {
  width: min(28.646vw, 550px);
  /*
  dl {
  	display: flex;
  	justify-content: flex-end;
  	align-items: center;
  	color: #fff;
  	padding: min($size20, 20px) 0;
  	border-top: 1px #808080 solid;

  	@include mobile {
  		padding: min($size20s, 20px) 0;
  	}

  	&:last-child {
  		border-bottom: 1px #808080 solid;
  	}

  	dt {
  		flex-shrink: 0;
  		font-size: min($fs16, 16px);
  		width: min(9.375vw, 180px);

  		@include mobile {
  			font-size: 0.875rem;
  			line-height: 1.25;
  			width: min(20.93vw, 90px);
  		}
  	}

  	dd {
  		display: flex;
  		justify-content: flex-start;
  		align-items: center;
  		width: 100%;
  		font-size: min($fs16, 16px);

  		@include mobile {
  			font-size: 0.875rem;
  			line-height: 1.25;
  		}

  		span {
  			border-radius: min($size20, 20px);
  			background: linear-gradient(to right, rgba(0, 113, 255, 1), rgba(0, 211, 157, 1));
  			color: #fff;
  			font-size: min($fs12, 12px);
  			padding: min($size5, 5px) min($size10, 10px);
  			margin-left: min($size10, 10px);

  			@include mobile {
  				border-radius: min($size20s, 20px);
  				font-size: 0.714rem;
  				padding: min($size5s, 5px) min($size10s, 10px);
  				margin-left: min($size10s, 10px);
  			}
  		}

  		a {
  			color: #fff;
  		}
  	}
  }
  */
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .list div {
    width: 100%;
  }
  html body main#index section#base .inner .list div:nth-of-type(n+2) {
    margin-top: min(9.302vw, 40px);
  }
}
html body main#index section#base .inner .list div h3 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  font-size: min(1.5rem, 24px);
  margin-bottom: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .list div h3 {
    font-size: 1.3125rem;
    margin-bottom: min(4.651vw, 20px);
  }
}
html body main#index section#base .inner .list div h3::before {
  content: "";
  display: block;
  width: min(0.521vw, 10px);
  height: min(1.146vw, 22px);
  background: #fff;
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .list div h3::before {
    width: min(2.326vw, 10px);
    height: 18px;
    margin-right: min(2.326vw, 10px);
  }
}
html body main#index section#base .inner .list div dl {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  padding: min(1.042vw, 20px) 0;
  border-top: 1px #808080 solid;
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .list div dl {
    padding: min(4.651vw, 20px) 0;
  }
}
html body main#index section#base .inner .list div dl:last-child {
  border-bottom: 1px #808080 solid;
}
html body main#index section#base .inner .list div dl dt {
  flex-shrink: 0;
  font-size: min(0.875rem, 14px);
  width: min(9.375vw, 180px);
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .list div dl dt {
    font-size: 0.875rem;
    line-height: 1.25;
    width: min(20.93vw, 90px);
  }
}
html body main#index section#base .inner .list div dl dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .list div dl dd {
    font-size: 0.875rem;
    line-height: 1.25;
  }
}
html body main#index section#base .inner .list div dl dd span {
  border-radius: min(1.042vw, 20px);
  background: linear-gradient(to right, rgb(0, 113, 255), rgb(0, 211, 157));
  color: #fff;
  font-size: min(0.75rem, 12px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  margin-left: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner .list div dl dd span {
    border-radius: min(4.651vw, 20px);
    font-size: 0.714rem;
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
    margin-left: min(2.326vw, 10px);
  }
}
html body main#index section#base .inner .list div dl dd a {
  color: #fff;
}
html body main#index section#base .inner > .btn {
  display: none;
}
@media screen and (max-width: 768px) {
  html body main#index section#base .inner > .btn {
    display: block;
    width: min(34.884vw, 150px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
html body main#index section#info .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: min(59.375vw, 1140px);
  padding: min(6.25vw, 120px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px) 0;
  }
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(1) {
    width: 100%;
  }
}
html body main#index section#info .inner > div:nth-of-type(1) h2 {
  color: #000;
}
html body main#index section#info .inner > div:nth-of-type(2) {
  width: min(34.896vw, 670px);
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(2) {
    width: 100%;
  }
}
html body main#index section#info .inner > div:nth-of-type(2) article {
  border-bottom: 1px #000 solid;
}
html body main#index section#info .inner > div:nth-of-type(2) article:first-of-type {
  border-top: 1px #000 solid;
}
html body main#index section#info .inner > div:nth-of-type(2) article a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(2) article a {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: min(4.651vw, 20px) 0;
  }
}
html body main#index section#info .inner > div:nth-of-type(2) article a div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(2) article a div {
    gap: min(4.651vw, 20px);
    width: 100%;
  }
}
html body main#index section#info .inner > div:nth-of-type(2) article a div time {
  flex-shrink: 0;
  width: min(6.771vw, 130px);
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(2) article a div time {
    font-size: 1rem;
    width: auto;
  }
}
html body main#index section#info .inner > div:nth-of-type(2) article a div .category {
  display: none;
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(2) article a div .category {
    display: block;
    color: #fff;
    font-size: 0.857rem;
    font-weight: 700;
    padding: min(2.326vw, 10px) min(4.651vw, 20px);
    background: #747374;
    border-radius: min(4.651vw, 20px);
  }
}
html body main#index section#info .inner > div:nth-of-type(2) article a div .new {
  display: none;
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(2) article a div .new {
    display: block;
    color: #d4000e;
    font-size: 1rem;
    font-weight: 700;
  }
}
html body main#index section#info .inner > div:nth-of-type(2) article a h1 {
  width: 100%;
  font-size: min(0.875rem, 14px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(2) article a h1 {
    font-size: 0.714rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#index section#info .inner > div:nth-of-type(2) .btn {
  width: min(12.24vw, 235px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#info .inner > div:nth-of-type(2) .btn {
    width: min(34.884vw, 150px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
html body main#index section#recruit .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(70.313vw, 1350px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#recruit .inner {
    width: min(100%, 776px);
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#index section#recruit .inner a {
  display: block;
}
html body main#index section#recruit .inner a picture {
  width: 100%;
}
html body main#info section#title {
  background: url("../img/title_info.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#info section#title {
    background: url("../img/title_info_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#info section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#info section#title::before {
    padding-top: 51.162%;
  }
}
html body main#info section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#info section#title .inner {
    justify-content: flex-start;
  }
}
html body main#info section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#info section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#info section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info section#title .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#info section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#info section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#info section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#info section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info section:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#info_detail section#title {
  background: url("../img/title_info_detail.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#title {
    background: url("../img/title_info_detail_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#info_detail section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#title::before {
    padding-top: 51.162%;
  }
}
html body main#info_detail section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#title .inner {
    justify-content: flex-start;
  }
}
html body main#info_detail section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#info_detail section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#title .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#info_detail section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#info_detail section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#info_detail section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#info_detail section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info_detail section:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#works section#title {
  background: url("../img/title_works.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#works section#title {
    background: url("../img/title_works_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#works section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#works section#title::before {
    padding-top: 51.162%;
  }
}
html body main#works section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#works section#title .inner {
    justify-content: flex-start;
  }
}
html body main#works section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#works section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#works section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  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: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#works section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#works section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#works section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#works section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  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:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#works_detail section#title {
  background: url("../img/title_works_detail.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title {
    background: url("../img/title_works_detail_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#works_detail section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title::before {
    padding-top: 51.162%;
  }
}
html body main#works_detail section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .inner {
    justify-content: flex-start;
  }
}
html body main#works_detail section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#works_detail section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  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: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#works_detail section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#works_detail section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#works_detail section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  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:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#solution section#title {
  background: url("../img/title_solution.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#solution section#title {
    background: url("../img/title_solution_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#solution section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#solution section#title::before {
    padding-top: 51.162%;
  }
}
html body main#solution section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#solution section#title .inner {
    justify-content: flex-start;
  }
}
html body main#solution section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#solution section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#solution section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#solution section#title .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#solution section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#solution section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#solution section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#solution section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#solution section:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#solution_detail section#title {
  background: url("../img/title_solution_detail.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#title {
    background: url("../img/title_solution_detail_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#solution_detail section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#title::before {
    padding-top: 51.162%;
  }
}
html body main#solution_detail section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#title .inner {
    justify-content: flex-start;
  }
}
html body main#solution_detail section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#solution_detail section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#title .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#solution_detail section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#solution_detail section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#solution_detail section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#recruit section#title {
  background: url("../img/title_recruit.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title {
    background: url("../img/title_recruit_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#recruit section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title::before {
    padding-top: 51.162%;
  }
}
html body main#recruit section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .inner {
    justify-content: flex-start;
  }
}
html body main#recruit section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#recruit section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  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: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#recruit section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#recruit section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#recruit section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  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:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#recruitment section#title {
  background: url("../img/title_recruitment.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#title {
    background: url("../img/title_recruitment_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#recruitment section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#title::before {
    padding-top: 51.162%;
  }
}
html body main#recruitment section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#title .inner {
    justify-content: flex-start;
  }
}
html body main#recruitment section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#recruitment section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#title .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#recruitment section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#recruitment section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#recruitment section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#company section#title {
  background: url("../img/title_company.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#company section#title {
    background: url("../img/title_company_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#company section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#company section#title::before {
    padding-top: 51.162%;
  }
}
html body main#company section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#company section#title .inner {
    justify-content: flex-start;
  }
}
html body main#company section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#company section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#company section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  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: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#company section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#company section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#company section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  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:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#strength section#title {
  background: url("../img/title_strength.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#title {
    background: url("../img/title_strength_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#strength section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#strength section#title::before {
    padding-top: 51.162%;
  }
}
html body main#strength section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#strength section#title .inner {
    justify-content: flex-start;
  }
}
html body main#strength section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#strength section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#strength section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#title .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#strength section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#strength section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#strength section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#strength section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#strength section:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#workon section#title {
  background: url("../img/title_workon.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#workon section#title {
    background: url("../img/title_workon_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#workon section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#workon section#title::before {
    padding-top: 51.162%;
  }
}
html body main#workon section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#workon section#title .inner {
    justify-content: flex-start;
  }
}
html body main#workon section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#workon section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#workon section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#workon section#title .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#workon section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#workon section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#workon section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#workon section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#workon section:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#privacy section#title {
  background: url("../img/title_privacy.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title {
    background: url("../img/title_privacy_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#privacy section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title::before {
    padding-top: 51.162%;
  }
}
html body main#privacy section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner {
    justify-content: flex-start;
  }
}
html body main#privacy section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#privacy section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  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: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#privacy section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#privacy section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#privacy section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  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:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#contact section#title {
  background: url("../img/title_contact.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#title {
    background: url("../img/title_contact_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#contact section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title::before {
    padding-top: 51.162%;
  }
}
html body main#contact section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner {
    justify-content: flex-start;
  }
}
html body main#contact section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#contact section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  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: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#contact section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#contact section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contact section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#contact section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  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:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#complete section#title {
  background: url("../img/title_complete.jpg") no-repeat center/cover;
  position: relative;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#title {
    background: url("../img/title_complete_sp.jpg") no-repeat center/cover;
    margin-top: min(11.628vw, 50px);
  }
}
html body main#complete section#title::before {
  content: "";
  display: block;
  padding-top: 21.875%;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title::before {
    padding-top: 51.162%;
  }
}
html body main#complete section#title .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner {
    justify-content: flex-start;
  }
}
html body main#complete section#title .inner h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h2 {
    text-align: left;
    font-size: 2rem;
    margin-left: min(4.651vw, 20px);
  }
}
html body main#complete section#title .inner h2::after {
  content: attr(data-subtitle);
  white-space: pre;
  display: block;
  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: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#complete section:not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
html body main#complete section:not(#title) .inner h2 {
  text-align: left;
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section:not(#title) .inner h2 {
    font-size: 2rem;
    margin-bottom: min(9.302vw, 40px);
  }
}
html body main#complete section:not(#title) .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  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:not(#title) .inner h2::after {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#info section#contents .inner {
  align-items: flex-start;
  width: min(70.313vw, 1350px);
  padding: min(3.646vw, 70px) 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#info section#contents .inner h2 {
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner h2 {
    font-size: 24px;
  }
}
html body main#info section#contents .inner h2::after {
  content: none;
}
html body main#info section#contents .inner .list {
  display: block;
  width: 100%;
}
html body main#info section#contents .inner .list article {
  border-bottom: 1px #000 solid;
}
html body main#info section#contents .inner .list article:first-of-type {
  border-top: 1px #000 solid;
}
html body main#info section#contents .inner .list article a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner .list article a {
    padding: min(4.651vw, 20px) 0;
  }
}
html body main#info section#contents .inner .list article a div {
  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#info section#contents .inner .list article a div {
    gap: min(4.651vw, 20px);
  }
}
html body main#info section#contents .inner .list article a div time {
  flex-shrink: 0;
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner .list article a div time {
    font-size: 1rem;
  }
}
html body main#info section#contents .inner .list article a div .category {
  display: block;
  color: #fff;
  font-size: min(0.75rem, 12px);
  font-weight: 700;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  background: #747374;
  border-radius: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner .list article a div .category {
    font-size: 0.857rem;
    padding: min(2.326vw, 10px) min(4.651vw, 20px);
    border-radius: min(4.651vw, 20px);
  }
}
html body main#info section#contents .inner .list article a div .new {
  display: none;
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner .list article a div .new {
    display: block;
    color: #d4000e;
    font-size: 14px;
    font-weight: 700;
  }
}
html body main#info section#contents .inner .list article a h1 {
  width: 100%;
  font-size: min(0.875rem, 14px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner .list article a h1 {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#info section#contents .inner nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  margin-top: min(3.646vw, 70px);
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner nav {
    position: initial;
    width: 100%;
    margin-top: min(13.953vw, 60px);
  }
}
html body main#info section#contents .inner nav h3 {
  display: none;
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner nav h3 {
    background-image: linear-gradient(90deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: min(4.651vw, 20px);
  }
  html body main#info section#contents .inner nav h3::after {
    content: "";
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
    display: block;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#info section#contents .inner nav ul {
  display: flex;
  justify-content: center;
  align-self: center;
  flex-wrap: wrap;
  gap: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner nav ul {
    gap: min(4.651vw, 20px);
  }
}
html body main#info section#contents .inner nav ul li a {
  display: block;
  color: #fff;
  font-size: min(0.75rem, 12px);
  font-weight: 700;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  background: #747374;
  border-radius: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info section#contents .inner nav ul li a {
    font-size: 0.857rem;
    padding: min(2.326vw, 10px) min(4.651vw, 20px);
    border-radius: min(4.651vw, 20px);
  }
}
html body main#info_detail section#contents {
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents {
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#info_detail section#contents .inner {
  background: #dfdfe0 url("../img/bg_info_detail.jpg") no-repeat center top/100% auto;
  width: min(57.292vw, 1100px);
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner {
    background: none;
    width: 100%;
  }
}
html body main#info_detail section#contents .inner .inner_bottom {
  background: url("../img/bg_info_detail_bottom.jpg") no-repeat center bottom/100% auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner .inner_bottom {
    background: none;
    padding: 0;
  }
}
html body main#info_detail section#contents .inner .inner_bottom article {
  width: 100%;
}
html body main#info_detail section#contents .inner .inner_bottom article .head {
  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#info_detail section#contents .inner .inner_bottom article .head {
    gap: min(4.651vw, 20px);
  }
}
html body main#info_detail section#contents .inner .inner_bottom article .head time {
  flex-shrink: 0;
  color: #727171;
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner .inner_bottom article .head time {
    font-size: 1rem;
  }
}
html body main#info_detail section#contents .inner .inner_bottom article .head .category {
  display: block;
  color: #fff;
  font-size: min(0.75rem, 12px);
  font-weight: 700;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  background: linear-gradient(to right, rgb(0, 113, 255), rgb(0, 211, 157));
  border-radius: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner .inner_bottom article .head .category {
    font-size: 0.857rem;
    padding: min(2.326vw, 10px) min(4.651vw, 20px);
    border-radius: min(4.651vw, 20px);
  }
}
html body main#info_detail section#contents .inner .inner_bottom article .head .new {
  display: none;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner .inner_bottom article .head .new {
    display: block;
    color: #d4000e;
    font-size: 14px;
    font-weight: 700;
  }
}
html body main#info_detail section#contents .inner .inner_bottom article h1 {
  width: 100%;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  line-height: 1.25;
  padding-bottom: min(1.042vw, 20px);
  margin: min(1.042vw, 20px) 0 min(2.083vw, 40px);
  border-bottom: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner .inner_bottom article h1 {
    font-size: 28px;
    padding-bottom: min(4.651vw, 20px);
    margin: min(4.651vw, 20px) 0 min(9.302vw, 40px);
  }
}
html body main#info_detail section#contents .inner .inner_bottom article figure {
  width: min(29.688vw, 570px);
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner .inner_bottom article figure {
    width: 100%;
  }
}
html body main#info_detail section#contents .inner .inner_bottom article figure::before {
  content: "";
  display: block;
  padding-top: 75%;
}
html body main#info_detail section#contents .inner .inner_bottom article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#info_detail section#contents .inner .inner_bottom article .comment {
  margin-top: min(2.083vw, 40px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner .inner_bottom article .comment {
    margin-top: min(9.302vw, 40px);
  }
}
html body main#info_detail section#contents .inner .inner_bottom article .comment p {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .inner .inner_bottom article .comment p {
    font-size: 1rem;
  }
}
html body main#info_detail section#contents .btn {
  width: min(12.24vw, 235px);
  margin: min(1.563vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#info_detail section#contents .btn {
    width: min(34.884vw, 150px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
html body main#works section#contents .inner {
  align-items: flex-start;
  width: min(70.313vw, 1350px);
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
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: min(4.651vw, 20px);
  }
}
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%;
  position: relative;
}
html body main#works section#contents .inner div article a figure::before {
  content: "";
  display: block;
  padding-top: 64.375%;
}
html body main#works section#contents .inner div article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#works section#contents .inner div article a figure figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner div article a figure figcaption {
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
  }
}
html body main#works section#contents .inner div article a figure figcaption h1 {
  background: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  display: block;
  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: 1rem;
  }
}
html body main#works section#contents .inner div article a figure figcaption h1 span {
  font-size: min(0.875rem, 14px);
  margin-left: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner div article a figure figcaption h1 span {
    font-size: 1rem;
  }
}
html body main#works section#contents .inner div article a figure figcaption ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: min(0.26vw, 5px);
  margin-top: min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#works section#contents .inner div article a figure figcaption ul {
    gap: min(1.163vw, 5px);
    margin-top: min(1.163vw, 5px);
  }
}
html body main#works section#contents .inner div article a figure figcaption ul li {
  background: linear-gradient(to right, rgb(0, 113, 255), rgb(0, 211, 157));
  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#works section#contents .inner div article a figure figcaption ul li {
    font-size: 0.857rem;
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
  }
}
html body main#works_detail section#contents .inner {
  align-items: flex-start;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
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%;
  position: relative;
}
html body main#works_detail section#contents .inner article > .swiper-container .swiper-wrapper .swiper-slide figure::before {
  content: "";
  display: block;
  padding-top: 75%;
}
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;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#works_detail section#contents .inner article > .thumbnail-list {
  margin-top: min(1.042vw, 20px);
}
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%;
}
html body main#works_detail section#contents .inner article > .thumbnail-list ul li {
  width: 100%;
  position: relative;
}
html body main#works_detail section#contents .inner article > .thumbnail-list ul li::before {
  content: "";
  display: block;
  padding-top: 100%;
}
html body main#works_detail section#contents .inner article > .thumbnail-list ul li a {
  display: block;
}
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;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#works_detail section#contents .inner article > ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: min(1.042vw, 20px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > ul {
    gap: min(1.163vw, 5px);
    margin-top: min(1.163vw, 5px);
  }
}
html body main#works_detail section#contents .inner article > ul li {
  background: linear-gradient(to right, rgb(0, 113, 255), rgb(0, 211, 157));
  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#works_detail section#contents .inner article > ul li {
    font-size: 0.857rem;
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
  }
}
html body main#works_detail section#contents .inner article > time {
  display: block;
  font-size: min(0.875rem, 14px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > time {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#works_detail section#contents .inner article > h1 {
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.25;
  margin: min(1.042vw, 20px) 0 min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > h1 {
    font-size: 18px;
    margin: min(4.651vw, 20px) 0 min(4.651vw, 20px);
  }
}
html body main#works_detail section#contents .inner article > h1 span {
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner article > h1 span {
    font-size: 18px;
  }
}
html body main#works_detail section#contents .inner article .comment h2,
html body main#works_detail section#contents .inner article .comment h3,
html body main#works_detail section#contents .inner article .comment h4,
html body main#works_detail section#contents .inner article .comment h5,
html body main#works_detail section#contents .inner article .comment h6,
html body main#works_detail section#contents .inner article .comment strong,
html body main#works_detail section#contents .inner article .comment em,
html body main#works_detail section#contents .inner article .comment p,
html body main#works_detail section#contents .inner article .comment blockquote {
  all: revert;
}
html body main#works_detail section#contents .inner article .comment ul,
html body main#works_detail section#contents .inner article .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#works_detail section#contents .inner article .comment ul li,
html body main#works_detail section#contents .inner article .comment ol li {
  font-size: revert;
}
html body main#works_detail section#contents .inner .btn {
  width: min(12.24vw, 235px);
  margin: min(3.125vw, 60px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#works_detail section#contents .inner .btn {
    width: min(34.884vw, 150px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
html body main#solution section#project {
  background: url("../img/bg_solution.png") no-repeat center bottom/contain;
}
html body main#solution section#project .inner {
  width: min(85.417vw, 1640px);
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#solution section#project .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#solution section#project .inner .heading {
  position: relative;
}
html body main#solution section#project .inner .heading::after {
  content: "";
  width: 100%;
  height: min(0.26vw, 5px);
  background-image: linear-gradient(90deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
  display: block;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#solution section#project .inner .heading::after {
    height: min(1.163vw, 5px);
    margin-top: min(4.651vw, 20px);
  }
}
html body main#solution section#project .inner .heading strong {
  display: inline-block;
  text-align: center;
  font-size: min(1.375rem, 22px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#solution section#project .inner .heading strong {
    font-size: 22px;
  }
}
html body main#solution section#project .inner .heading strong em {
  background-image: linear-gradient(90deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: min(1.375rem, 22px);
  font-weight: 700;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#solution section#project .inner .heading strong em {
    font-size: 22px;
  }
}
html body main#solution section#project .inner .comment {
  text-align: center;
  font-size: min(1.25rem, 20px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#solution section#project .inner .comment {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#solution section#project .inner .comment a {
  color: #000;
}
html body main#solution section#project .inner ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: min(2.083vw, 40px);
  width: 100%;
  margin-top: min(3.646vw, 70px);
}
@media screen and (max-width: 768px) {
  html body main#solution section#project .inner ul {
    gap: min(4.651vw, 20px);
    flex-direction: column;
    margin-top: min(13.953vw, 60px);
  }
}
html body main#solution section#project .inner ul li {
  width: min(27.083vw, 520px);
}
@media screen and (max-width: 768px) {
  html body main#solution section#project .inner ul li {
    width: 100%;
  }
}
html body main#solution section#img {
  background: url("../img/bg_img_solution.jpg") no-repeat center top/cover;
  width: 100%;
  height: min(13.021vw, 250px);
  aspect-ratio: 192/25;
}
@media screen and (max-width: 768px) {
  html body main#solution section#img {
    height: min(23.256vw, 100px);
  }
}
html body main#solution section#works_block {
  background: none;
}
html body main#solution section#works_block .inner {
  background: none;
}
html body main#solution section#works_block .inner > .title {
  height: min(12.917vw, 248px);
}
html body main#solution section#works_block .inner > .list_sp .swiper-container .swiper-button-next {
  background: url("../img/btn_slider_next_bk.png") no-repeat center/cover;
}
html body main#solution section#works_block .inner > .list_sp .swiper-button-prev {
  background: url("../img/btn_slider_prev_bk.png") no-repeat center/cover;
  width: min(6.977vw, 30px);
}
html body main#solution_detail section#title .inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body main#solution_detail section#title .inner h2 {
  text-align: left;
  color: #000;
  margin-left: min(11.719vw, 225px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#title .inner h2 {
    margin-left: min(4.651vw, 20px);
  }
}
html body main#solution_detail section#title .inner h2::after {
  content: none;
}
html body main#solution_detail section#title .inner p {
  text-align: left;
  color: #000;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin: min(1.042vw, 20px) min(11.719vw, 225px) 0 min(11.719vw, 225px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#title .inner p {
    font-size: 1rem;
    margin: min(2.326vw, 10px) min(4.651vw, 20px) 0;
  }
}
html body main#solution_detail section#solution1 {
  background: url("../img/bg_img_solution1.jpg") no-repeat center top/cover;
  width: 100%;
  aspect-ratio: 64/9;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#solution1 {
    height: min(62.791vw, 140px);
  }
}
html body main#solution_detail section#solution2 {
  background: url("../img/bg_img_solution2.jpg") no-repeat center top/cover;
  width: 100%;
  aspect-ratio: 64/9;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#solution2 {
    height: min(62.791vw, 140px);
  }
}
html body main#solution_detail section#solution3 {
  background: url("../img/bg_img_solution3.jpg") no-repeat center top/cover;
  width: 100%;
  aspect-ratio: 64/9;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#solution3 {
    height: min(62.791vw, 140px);
  }
}
html body main#solution_detail section#solution4 {
  background: url("../img/bg_img_solution4.jpg") no-repeat center top/cover;
  width: 100%;
  aspect-ratio: 64/9;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#solution4 {
    height: min(62.791vw, 140px);
  }
}
html body main#solution_detail section#solution5 {
  background: url("../img/bg_img_solution5.jpg") no-repeat center top/cover;
  width: 100%;
  aspect-ratio: 64/9;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#solution5 {
    height: min(62.791vw, 140px);
  }
}
html body main#solution_detail section#business {
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business {
    padding: min(13.953vw, 60px) 0;
  }
}
html body main#solution_detail section#business .inner {
  background: url("../img/bg_solution2.jpg") no-repeat center top/100% auto;
  width: min(64.063vw, 1230px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner {
    background: url("../img/bg_solution2_sp.jpg") no-repeat center top/100% auto;
    width: 100%;
  }
}
html body main#solution_detail section#business .inner .inner_bottom {
  background: url("../img/bg_solution2_bottom.jpg") no-repeat center bottom/100% auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  padding-left: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom {
    background: url("../img/bg_solution2_bottom_sp.jpg") no-repeat center bottom/100% auto;
    padding-left: 6.977vw;
  }
}
html body main#solution_detail section#business .inner .inner_bottom h2 {
  color: #fff;
  line-height: 1.25;
  width: 100%;
  margin: min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom h2 {
    font-size: 24px;
    width: 100%;
    margin: min(4.651vw, 20px) 0;
  }
}
html body main#solution_detail section#business .inner .inner_bottom h2::after {
  content: none;
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper {
  background: #000;
  padding: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper {
    width: 100%;
    padding: min(6.977vw, 30px) min(11.628vw, 50px) min(6.977vw, 30px) min(4.651vw, 20px);
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work {
    flex-direction: column;
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work:nth-of-type(n+2) {
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work:nth-of-type(n+2) {
    margin-top: min(18.605vw, 80px);
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work figure {
  flex-shrink: 0;
  width: min(25vw, 480px);
  margin: 0 min(1.563vw, 30px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work figure {
    width: 100%;
    margin: 0 0 min(4.651vw, 20px);
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail h3 {
  background-image: linear-gradient(90deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail h3 {
    font-size: 24px;
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail h3::before {
  content: "";
  background-image: linear-gradient(0deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
  display: block;
  width: min(0.26vw, 5px);
  height: min(1.979vw, 38px);
  margin: min(0.208vw, 4px) min(0.521vw, 10px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail h3::before {
    width: min(1.163vw, 5px);
    height: min(5.116vw, 22px);
    margin: min(0.93vw, 4px) min(2.326vw, 10px) 0 0;
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .comment {
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .comment {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples {
  border: 1px #fff solid;
  border-radius: min(0.26vw, 5px);
  width: 75%;
  padding: min(1.042vw, 20px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples {
    border-radius: min(1.163vw, 5px);
    width: 100%;
    padding: min(2.326vw, 10px);
    margin-top: min(4.651vw, 20px);
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples h4 {
  color: #fff;
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples h4 {
    font-size: 1rem;
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples ul {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.521vw, 10px);
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples ul {
    gap: min(2.326vw, 10px);
    margin-top: min(2.326vw, 10px);
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples ul li {
  color: #fff;
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples ul li {
    font-size: 1rem;
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .work .detail .examples ul li::before {
  content: "・";
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .measures {
  display: block;
  width: 100%;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .measures {
    margin-top: min(18.605vw, 80px);
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .measures h3 {
  background: #fff;
  text-align: center;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  padding: min(0.521vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#business .inner .inner_bottom .wrapper .measures h3 {
    font-size: 28px;
    padding: min(2.326vw, 10px) 0;
  }
}
html body main#solution_detail section#business .inner .inner_bottom .wrapper .measures .comment {
  color: #fff;
  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#solution_detail section#business .inner .inner_bottom .wrapper .measures .comment {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#solution_detail section#img {
  background: url("../img/bg_img_solution.jpg") no-repeat center top/cover;
  width: 100%;
  height: min(13.021vw, 250px);
  aspect-ratio: 192/25;
}
@media screen and (max-width: 768px) {
  html body main#solution_detail section#img {
    height: min(23.256vw, 100px);
  }
}
html body main#solution_detail section#works_block {
  background: none;
}
html body main#solution_detail section#works_block .inner {
  background: none;
}
html body main#solution_detail section#works_block .inner > .title {
  height: min(12.917vw, 248px);
}
html body main#solution_detail section#works_block .inner > .list_sp .swiper-container .swiper-button-next {
  background: url("../img/btn_slider_next_bk.png") no-repeat center/cover;
}
html body main#solution_detail section#works_block .inner > .list_sp .swiper-button-prev {
  background: url("../img/btn_slider_prev_bk.png") no-repeat center/cover;
  width: min(6.977vw, 30px);
}
html body main#recruit section#title h2 {
  display: none;
}
html body main#recruit section#message .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#message .inner {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#recruit section#message .inner div {
  width: 100%;
}
html body main#recruit section#message .inner div .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#message .inner div .comment {
    font-size: 1rem;
  }
}
html body main#recruit section#message .inner div .signature {
  text-align: right;
  font-size: min(1.25rem, 20px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#message .inner div .signature {
    font-size: 21px;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#recruit section#message .inner 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#recruit section#message .inner figure {
    width: min(100%, 1000px);
    margin: min(9.302vw, 40px) auto 0;
  }
}
html body main#recruit section#img .inner ul {
  display: flex;
  align-items: center;
  width: 100%;
}
html body main#recruit section#desired {
  background: linear-gradient(to right, #182954 0%, #182987 71.5%);
  padding-bottom: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired {
    padding-bottom: min(6.977vw, 30px);
  }
}
html body main#recruit section#desired .inner {
  background: #000 url("../img/bg_contact.jpg") no-repeat center top/cover;
  position: initial;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner {
    background: #000 url("../img/bg_contact.jpg") no-repeat right top/260% auto;
  }
}
html body main#recruit section#desired .inner div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(43.229vw, 830px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner div {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#recruit section#desired .inner div h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner div h2 {
    font-size: 1.8rem;
  }
}
html body main#recruit section#desired .inner div ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.563vw, 30px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner div ul {
    grid-template-columns: repeat(1, 1fr);
    gap: min(6.977vw, 30px);
  }
}
html body main#recruit section#desired .inner div ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  height: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner div ul li {
    font-size: 1.285rem;
    height: min(18.605vw, 80px);
  }
}
html body main#recruit section#desired .inner div ul li span {
  font-size: min(0.875rem, 14px);
  font-weight: 700;
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner div ul li span {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#recruit section#desired .inner div strong {
  color: #fff;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner div strong {
    font-size: 1.142rem;
    margin-top: min(6.977vw, 30px);
  }
}
html body main#recruit section#desired .inner div .comment {
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#desired .inner div .comment {
    font-size: 1rem;
    margin-top: min(6.977vw, 30px);
  }
}
html body main#recruit section#appeal {
  background: linear-gradient(to right, rgba(0, 113, 255, 0.5), rgba(0, 211, 157, 0.5));
}
html body main#recruit section#appeal .inner {
  width: 100%;
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner {
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#recruit section#appeal .inner .title {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner .title {
    justify-content: center;
  }
}
html body main#recruit section#appeal .inner .title h2 {
  width: min(31.771vw, 610px);
  padding: 0 0 0 min(1.042vw, 20px);
  position: relative;
  z-index: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner .title h2 {
    font-size: 1.8rem;
    width: auto;
    padding: 0 min(4.651vw, 20px);
  }
}
html body main#recruit section#appeal .inner .title h2::after {
  content: "";
  position: absolute;
  top: min(1.563vw, 30px);
  left: 0;
  width: 100%;
  height: min(2.083vw, 40px);
  background: #fff;
  z-index: -1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner .title h2::after {
    top: min(3.488vw, 15px);
    height: min(6.977vw, 30px);
  }
}
html body main#recruit section#appeal .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: min(75vw, 1440px);
  margin: min(5.208vw, 100px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul {
    display: block;
    width: 100%;
    margin: min(16.279vw, 70px) auto 0;
  }
}
html body main#recruit section#appeal .inner ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30.416%;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li {
    width: 100%;
  }
}
html body main#recruit section#appeal .inner ul li:nth-of-type(1) {
  margin-top: calc(-1 * min(6.25vw, 120px));
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li:nth-of-type(1) {
    margin-top: 0;
  }
}
html body main#recruit section#appeal .inner ul li:nth-of-type(2) {
  margin-top: calc(-1 * min(3.125vw, 60px));
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li:nth-of-type(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li:nth-of-type(n+2) {
    margin-top: min(6.977vw, 30px);
  }
}
html body main#recruit section#appeal .inner ul li figure {
  width: 100%;
}
html body main#recruit section#appeal .inner ul li figure figcaption {
  margin-top: calc(-1 * min(1.563vw, 30px));
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li figure figcaption {
    margin-top: calc(-1 * min(6.977vw, 30px));
  }
}
html body main#recruit section#appeal .inner ul li figure figcaption h3 {
  display: inline-block;
  padding: min(0.521vw, 10px) min(1.563vw, 30px) min(0.521vw, 10px) min(1.042vw, 20px);
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: min(1.375rem, 22px);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li figure figcaption h3 {
    font-size: 1.142rem;
    padding: min(2.326vw, 10px) min(6.977vw, 30px) min(2.326vw, 10px) min(4.651vw, 20px);
  }
}
html body main#recruit section#appeal .inner ul li figure figcaption h3 span {
  font-weight: 700;
  font-size: min(2.5rem, 40px);
  vertical-align: baseline;
  margin-left: min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li figure figcaption h3 span {
    font-size: 1.571rem;
    margin-left: min(1.163vw, 5px);
  }
}
html body main#recruit section#appeal .inner ul li figure figcaption strong {
  display: block;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  line-height: 1.5;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li figure figcaption strong {
    font-size: 1.285rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#recruit section#appeal .inner ul li figure figcaption .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#appeal .inner ul li figure figcaption .comment {
    font-size: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#recruit section#welfare {
  background: #000 url("../img/bg_welfare.jpg") no-repeat center top/cover;
}
html body main#recruit section#welfare .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#welfare .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#recruit section#welfare .inner h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#welfare .inner h2 {
    font-size: 1.8rem;
  }
}
html body main#recruit section#welfare .inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: min(2.604vw, 50px) 0;
  position: relative;
}
html body main#recruit section#welfare .inner ul::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#welfare .inner ul {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 min(6.977vw, 30px);
  }
}
html body main#recruit section#welfare .inner ul li {
  padding: 0 min(2.083vw, 40px) 0 min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#welfare .inner ul li {
    padding: min(6.977vw, 30px) 0;
  }
}
html body main#recruit section#welfare .inner ul li:nth-of-type(n+2) {
  border-left: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#welfare .inner ul li:nth-of-type(n+2) {
    border-left: none;
    border-top: 1px #000 solid;
  }
}
html body main#recruit section#welfare .inner ul li h3 {
  text-align: center;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#welfare .inner ul li h3 {
    font-size: 1.285rem;
    margin-bottom: min(4.651vw, 20px);
  }
}
html body main#recruit section#welfare .inner ul li .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#welfare .inner ul li .comment {
    font-size: 1rem;
  }
}
html body main#recruit section#welfare .inner ul li .indent::before {
  content: "・";
}
html body main#recruit section#welfare .inner ul li .tmgn {
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#welfare .inner ul li .tmgn {
    margin-top: min(4.651vw, 20px);
  }
}
html body main#recruit section#list .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#list .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  html body main#recruit section#list .inner h2 {
    font-size: 1.8rem;
  }
}
html body main#recruit section#list .inner table {
  width: 100%;
  border: 1px #000 solid;
}
html body main#recruit section#list .inner table thead tr {
  background: #dcdddd;
}
html body main#recruit section#list .inner table thead tr th {
  border: 1px #000 solid;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#list .inner table thead tr th {
    font-size: 0.857rem;
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
  }
}
html body main#recruit section#list .inner table tbody tr td {
  border: 1px #000 solid;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#list .inner table tbody tr td {
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
    font-size: 0.857rem;
  }
}
html body main#recruit section#list .inner table tbody tr td a {
  color: #000078;
}
html body main#recruitment section#title .inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body main#recruitment section#title .inner h2 {
  text-align: left;
  color: #000;
  margin-left: min(11.719vw, 225px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#title .inner h2 {
    margin-left: min(4.651vw, 20px);
  }
}
html body main#recruitment section#title .inner h2::after {
  content: none;
}
html body main#recruitment section#title .inner p {
  text-align: left;
  color: #000;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin: min(1.042vw, 20px) min(11.719vw, 225px) 0 min(11.719vw, 225px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#title .inner p {
    font-size: 1rem;
    margin: min(2.326vw, 10px) min(4.651vw, 20px) 0;
  }
}
html body main#recruitment section#img {
  background: url("../img/bg_img_recruitment.jpg") no-repeat center top/cover;
  width: 100%;
  aspect-ratio: 960/209;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#img {
    background: url("../img/bg_img_recruitment_sp.jpg") no-repeat center top/cover;
    width: 100%;
    aspect-ratio: 43/28;
  }
}
html body main#recruitment section#info .inner {
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#recruitment section#info .inner h2 {
  text-align: center;
}
html body main#recruitment section#info .inner > div {
  width: 100%;
}
html body main#recruitment section#info .inner > div:nth-of-type(n+2) {
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner > div:nth-of-type(n+2) {
    margin-top: min(9.302vw, 40px);
  }
}
html body main#recruitment section#info .inner > div h3 {
  text-align: center;
  color: #fff;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  line-height: 1.25;
  width: 100%;
  padding: min(1.042vw, 20px);
  background: linear-gradient(to right, rgb(0, 113, 255), rgb(0, 211, 157));
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner > div h3 {
    font-size: 1.428rem;
    padding: min(2.326vw, 20px);
  }
}
html body main#recruitment section#info .inner > div h3::before {
  content: attr(data-subtitle);
  display: block;
  font-size: min(0.875rem, 14px);
  margin-bottom: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner > div h3::before {
    font-size: 0.714rem;
    margin-bottom: min(1.163vw, 5px);
  }
}
html body main#recruitment section#info .inner > div dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: min(1.042vw, 20px) 0;
  border-bottom: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner > div dl {
    flex-direction: column;
    justify-content: center;
    padding: min(4.651vw, 20px) 0;
  }
}
html body main#recruitment section#info .inner > div dl dt {
  flex-shrink: 0;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  width: min(9.375vw, 180px);
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner > div dl dt {
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    margin-bottom: min(1.163vw, 5px);
  }
}
html body main#recruitment section#info .inner > div dl dd {
  width: 100%;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner > div dl dd {
    font-size: 1rem;
  }
}
html body main#recruitment section#info .inner > div dl dd ul li {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner > div dl dd ul li {
    font-size: 1rem;
  }
}
html body main#recruitment section#info .inner > div dl dd a {
  color: #000;
}
html body main#recruitment section#info .inner > div .btn {
  width: min(12.24vw, 235px);
  margin: min(1.563vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#recruitment section#info .inner > div .btn {
    width: min(34.884vw, 150px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
html body main#company section#message .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#company section#message .inner {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#company section#message .inner div {
  width: 100%;
}
html body main#company section#message .inner div .comment {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#company section#message .inner div .comment {
    font-size: 1rem;
  }
}
html body main#company section#message .inner div .signature {
  text-align: right;
  font-size: min(1.25rem, 20px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#message .inner div .signature {
    font-size: 21px;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#company section#message .inner 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#company section#message .inner figure {
    width: min(100%, 1000px);
    margin: min(9.302vw, 40px) auto 0;
  }
}
html body main#company section#overview {
  background: #000 url("../img/bg_overview.jpg") no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview {
    background: #000 url("../img/bg_overview_sp.jpg") no-repeat center top/100% auto;
  }
}
html body main#company section#overview .inner {
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px) 0;
  }
}
html body main#company section#overview .inner h2 {
  background-image: linear-gradient(90deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: min(1.042vw, 20px);
}
html body main#company section#overview .inner dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  width: 100%;
  padding: min(1.042vw, 20px) 0;
  border-bottom: 1px #808080 solid;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl {
    flex-direction: column;
    justify-content: center;
    padding: min(4.651vw, 20px) 0;
  }
}
html body main#company section#overview .inner dl dt {
  flex-shrink: 0;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  width: min(10.375vw, 200px);
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dt {
    font-size: 1rem;
    width: 100%;
    margin-bottom: min(2.326vw, 10px);
  }
}
html body main#company section#overview .inner dl dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dd {
    font-size: 1rem;
  }
}
html body main#company section#overview .inner dl dd em {
  display: flex;
  width: 100%;
  max-width: 320px;
  justify-content: space-between;
  align-items: center;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  border: solid 1px rgba(255, 255, 255, 0.5);
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dd em {
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
  }
}
html body main#company section#overview .inner dl dd em + em {
  margin-top: min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dd em + em {
    margin-top: min(1.163vw, 5px);
  }
}
html body main#company section#overview .inner dl dd em > span:first-child {
  position: relative;
  display: block;
  padding-left: 15px;
}
html body main#company section#overview .inner dl dd em > span:first-child:before, html body main#company section#overview .inner dl dd em > span:first-child:after {
  position: absolute;
  left: 0;
  display: block;
  width: 4px;
  height: 30%;
  background-color: #007ef2;
  content: "";
}
html body main#company section#overview .inner dl dd em > span:first-child:before {
  top: 20%;
  transform: skewX(25deg);
}
html body main#company section#overview .inner dl dd em > span:first-child:after {
  bottom: 20%;
  transform: skewX(-25deg);
}
html body main#company section#overview .inner dl dd em > span:last-child {
  position: relative;
  display: flex;
  flex-grow: 1;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
html body main#company section#overview .inner dl dd em > span:last-child:before {
  position: relative;
  display: block;
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
}
html body main#company section#overview .inner dl dd ul li {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dd ul li {
    font-size: 1rem;
  }
}
html body main#company section#overview .inner dl dd ul li::before {
  content: "・";
}
html body main#company section#overview .inner dl dd a {
  color: #fff;
}
html body main#company section#access {
  background: #000 url("../img/bg_common.jpg") no-repeat center bottom/cover;
}
@media screen and (max-width: 768px) {
  html body main#company section#access {
    background: #000 url("../img/bg_common.jpg") no-repeat right bottom/260% auto;
  }
}
html body main#company section#access .inner {
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#company section#access .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#company section#access .inner h2 {
  background-image: linear-gradient(90deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}
html body main#company section#access .inner .list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#company section#access .inner .list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
html body main#company section#access .inner .list div {
  width: min(28.646vw, 550px);
}
@media screen and (max-width: 768px) {
  html body main#company section#access .inner .list div {
    width: 100%;
  }
  html body main#company section#access .inner .list div:nth-of-type(n+2) {
    margin-top: min(9.302vw, 40px);
  }
}
html body main#company section#access .inner .list div h3 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  font-size: min(1.5rem, 24px);
  margin-bottom: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#access .inner .list div h3 {
    font-size: 1.3125rem;
    margin-bottom: min(4.651vw, 20px);
  }
}
html body main#company section#access .inner .list div h3::before {
  content: "";
  display: block;
  width: min(0.521vw, 10px);
  height: min(1.146vw, 22px);
  margin-right: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#company section#access .inner .list div h3::before {
    width: min(2.326vw, 10px);
    height: 18px;
    margin-right: min(2.326vw, 10px);
  }
}
html body main#company section#access .inner .list div:nth-of-type(1) h3::before {
  background: #0071ff;
}
html body main#company section#access .inner .list div:nth-of-type(2) h3::before {
  background: #00d29c;
}
html body main#company section#access .inner .list div iframe {
  width: min(28.646vw, 550px);
  height: min(17.969vw, 345px);
}
@media screen and (max-width: 768px) {
  html body main#company section#access .inner .list div iframe {
    width: 100%;
    height: 62.727vw;
  }
}
html body main#company section#access .inner .list div div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(1.042vw, 20px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#access .inner .list div div {
    gap: min(4.651vw, 20px);
    margin-top: min(4.651vw, 20px);
  }
}
html body main#company section#access .inner .list div div figure {
  width: 100%;
  position: relative;
}
html body main#company section#access .inner .list div div figure::before {
  content: "";
  display: block;
  padding-top: 64.375%;
}
html body main#company section#access .inner .list div div figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#company section#history .inner {
  width: min(70.313vw, 1350px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner {
    width: 100%;
    padding: min(13.953vw, 60px) 0;
  }
}
html body main#company section#history .inner h2 {
  text-align: center;
}
html body main#company section#history .inner .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #e5e5e5;
  clip-path: polygon(min(2.604vw, 50px) 0, 100% 0, 100% 100%, 0 100%, 0 min(2.604vw, 50px));
  width: 100%;
  padding: min(2.604vw, 50px) min(2.604vw, 50px) min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list {
    clip-path: none;
    padding: min(9.302vw, 40px) min(6.977vw, 30px) min(4.651vw, 20px);
  }
}
html body main#company section#history .inner .list > div {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: min(1.042vw, 20px);
  /*
  &:nth-of-type(n+2) {
  	.circle {
  		&::after {
  			top: calc(-1 * min($size30, 30px));

  			@include mobile {
  				top: calc(-1 * min($size30s, 30px));
  			}
  		}
  	}
  }
  */
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div {
    align-items: flex-start;
    padding-bottom: min(4.651vw, 20px);
  }
}
html body main#company section#history .inner .list > div:before, html body main#company section#history .inner .list > div:after {
  position: absolute;
  left: 0.65rem;
  width: 2px;
  background-color: #000;
  transform: translateX(-50%);
  content: "";
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div:before, html body main#company section#history .inner .list > div:after {
    left: min(2.3255vw, 10px);
  }
}
html body main#company section#history .inner .list > div:before {
  top: 0;
  height: 2.75rem;
}
html body main#company section#history .inner .list > div:after {
  top: 1.5rem;
  height: calc(100% - 1.5rem + 1px);
}
html body main#company section#history .inner .list > div .circle {
  flex-shrink: 0;
  width: min(1.042vw, 20px);
  height: min(1.042vw, 20px);
  background-color: #000;
  border-radius: 50%;
  margin-right: min(1.042vw, 20px);
  margin-top: 1.5rem;
  position: relative;
  transform: translateY(-50%);
  /*
  &::after {
  	content: "";
  	position: absolute;
  	top: min($size10, 10px);
  	left: 50%;
  	transform: translateX(-50%);
  	width: 2px;
  	height: min(8.333vw, 160px);
  	background: #000;

  	@include mobile {
  		top: min($size10s, 10px);
  		height: min(74.419vw, 320px);
  	}
  }
  */
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div .circle {
    width: min(4.651vw, 20px);
    height: min(4.651vw, 20px);
    margin-top: 18px;
    margin-right: min(4.651vw, 20px);
  }
}
html body main#company section#history .inner .list > div dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: min(1.042vw, 20px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div dl {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: min(2.326vw, 10px);
  }
}
html body main#company section#history .inner .list > div dl dt {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  width: min(9.375vw, 180px);
  padding: min(0.521vw, 10px) 0 min(0.521vw, 10px) min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div dl dt {
    font-size: 1rem;
    width: min(37.209vw, 160px);
    padding: min(1.163vw, 5px) 0 min(1.163vw, 5px) min(2.326vw, 10px);
  }
}
html body main#company section#history .inner .list > div dl dd {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  width: 100%;
  padding-top: 0.65rem;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div dl dd {
    font-size: 1rem;
  }
}
html body main#company section#history .inner .list > div dl dd ul li {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div dl dd ul li {
    font-size: 1rem;
  }
}
html body main#company section#history .inner .list > div dl dd ul li::before {
  content: "・";
}
html body main#company section#history .inner .list > div:first-child:before {
  display: none !important;
}
html body main#company section#history .inner .list > div:nth-of-type(n+2) {
  padding-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div:nth-of-type(n+2) {
    padding-top: min(4.651vw, 20px);
  }
}
html body main#company section#history .inner .list > div:nth-child(2) .circle::after, html body main#company section#history .inner .list > div:nth-child(3) .circle::after, html body main#company section#history .inner .list > div:nth-child(7) .circle::after, html body main#company section#history .inner .list > div:nth-child(8) .circle::after {
  height: min(8.333vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div:nth-child(2) .circle::after, html body main#company section#history .inner .list > div:nth-child(3) .circle::after, html body main#company section#history .inner .list > div:nth-child(7) .circle::after, html body main#company section#history .inner .list > div:nth-child(8) .circle::after {
    height: min(74.419vw, 320px);
  }
}
html body main#company section#history .inner .list > div:nth-last-child(2) {
  /*
  &:after {
  	display: none !important;
  }
  */
}
html body main#company section#history .inner .list > div:nth-last-child(2) .circle::after {
  height: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list > div:nth-last-child(2) .circle::after {
    height: auto;
  }
}
html body main#company section#history .inner .list .dotted {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(0.26vw, 5px);
  width: min(1.042vw, 20px);
  margin-top: min(0.26vw, 5px) !important;
  padding-top: 0 !important;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner .list .dotted {
    gap: min(1.163vw, 5px);
    width: min(4.651vw, 20px);
    margin-top: min(1.163vw, 5px) !important;
  }
}
html body main#company section#history .inner .list .dotted:before, html body main#company section#history .inner .list .dotted:after {
  display: none !important;
}
html body main#company section#history .inner .list .dotted .dot {
  width: 2px;
  height: 2px;
  background: #000;
  border-radius: 50%;
}
html body main#strength section#title .inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body main#strength section#title .inner h2 {
  color: #fff;
  text-align: left;
  margin-left: 65.104vw;
}
@media screen and (max-width: 768px) {
  html body main#strength section#title .inner h2 {
    margin: 0 min(4.651vw, 20px) 0 auto;
  }
}
html body main#strength section#motto .inner {
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#strength section#motto .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#strength section#motto .inner > h3 {
  font-size: min(3.75rem, 60px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#strength section#motto .inner > h3 {
    font-size: 2.142rem;
  }
}
html body main#strength section#motto .inner > h3 span {
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.75;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#strength section#motto .inner > h3 span {
    font-size: 1.3125rem;
  }
}
html body main#strength section#motto .inner > .comment {
  text-align: center;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  line-height: 1.75;
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#motto .inner > .comment {
    text-align: left;
    font-size: 1.125rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#strength section#motto .inner > blockquote {
  background: #000;
  padding: min(0.521vw, 10px) min(1.563vw, 30px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#motto .inner > blockquote {
    padding: min(2.326vw, 10px);
    margin-top: min(6.977vw, 30px);
  }
}
html body main#strength section#motto .inner > blockquote .comment {
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#strength section#motto .inner > blockquote .comment {
    font-size: 1rem;
  }
}
html body main#strength section#contents {
  padding-bottom: min(3.646vw, 70px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents {
    padding-bottom: min(13.953vw, 60px);
  }
}
html body main#strength section#contents .inner {
  background: #000 url("../img/bg_strength1.jpg") no-repeat center top/100% auto;
  width: min(70.313vw, 1350px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner {
    background: #000 url("../img/bg_strength1.jpg") no-repeat center top/260% auto;
    width: 100%;
  }
}
html body main#strength section#contents .inner .wrapper {
  background: url("../img/bg_strength2.jpg") no-repeat center bottom/100% auto;
  width: 100%;
  padding: min(4.688vw, 90px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper {
    background: url("../img/bg_strength2.jpg") no-repeat center bottom/260% auto;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#strength section#contents .inner .wrapper > div {
  width: 100%;
}
html body main#strength section#contents .inner .wrapper > div > div {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > div {
    display: block;
    position: initial;
  }
}
html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(1) {
  width: min(42.344vw, 813px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(1) {
    width: 100%;
  }
}
html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) {
    position: initial;
    margin-top: calc(-1 * min(17.209vw, 74px));
  }
}
html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) img {
  width: min(15.313vw, 294px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) img {
    width: min(23.256vw, 100px);
    margin: 0 0 0 min(2.326vw, 10px);
  }
}
html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) figcaption {
  width: 100%;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) figcaption {
    margin-top: min(2.326vw, 10px);
  }
}
html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) figcaption > div {
  display: block;
  background: #fff;
  width: 100%;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) figcaption > div {
    padding: min(2.326vw, 10px) min(2.326vw, 10px);
  }
}
html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) figcaption > div:nth-of-type(n+2) {
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) figcaption > div:nth-of-type(n+2) {
    margin-top: min(2.326vw, 10px);
  }
}
html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) figcaption > div p {
  background-image: linear-gradient(90deg, rgb(0, 113, 255) 0%, rgb(0, 211, 157) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > div figure:nth-of-type(2) figcaption > div p {
    font-size: 1.285rem;
  }
}
html body main#strength section#contents .inner .wrapper > div > .comment {
  color: #fff;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div > .comment {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#strength section#contents .inner .wrapper > div:nth-of-type(2) > div {
  justify-content: flex-start;
}
html body main#strength section#contents .inner .wrapper > div:nth-of-type(2) > div figure:nth-of-type(2) {
  left: initial;
  right: 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  html body main#strength section#contents .inner .wrapper > div:nth-of-type(2) > div figure:nth-of-type(2) img {
    margin: 0 min(2.326vw, 10px) 0 0;
  }
}
html body main#strength section#contents .inner .wrapper > div:nth-of-type(2) > div figure:nth-of-type(2) figcaption {
  text-align: left;
}
html body main#strength section#contents .inner .wrapper > div:nth-of-type(n+2) {
  margin-top: min(4.688vw, 90px);
}
html body main#workon section#title .inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body main#workon section#title .inner h2 {
  color: #000;
  text-align: left;
  margin-left: 65.104vw;
}
@media screen and (max-width: 768px) {
  html body main#workon section#title .inner h2 {
    margin: 0 min(4.651vw, 20px) 0 auto;
  }
}
html body main#workon section#iso .inner {
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#workon section#iso .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px) 0;
  }
}
html body main#workon section#iso .inner > div {
  background: linear-gradient(to right, rgba(93, 170, 81, 0.15), rgba(72, 170, 224, 0.15));
  padding: min(2.083vw, 40px) min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#workon section#iso .inner > div {
    padding: min(6.977vw, 30px);
  }
}
html body main#workon section#iso .inner > div h3 {
  text-align: center;
  color: #5ba350;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#workon section#iso .inner > div h3 {
    font-size: 1.428rem;
    line-height: 1.25;
  }
}
html body main#workon section#iso .inner > div div {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#workon section#iso .inner > div div {
    display: block;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#workon section#iso .inner > div div figure {
  flex-shrink: 0;
  width: min(10.417vw, 200px);
  margin: 0 min(0.781vw, 15px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#workon section#iso .inner > div div figure {
    width: 100%;
    margin: 0 0 min(3.488vw, 15px) 0;
  }
}
html body main#workon section#iso .inner > div div .comment {
  font-size: min(fs16, 16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#workon section#iso .inner > div div .comment {
    font-size: 1rem;
  }
}
html body main#workon section#attempt .inner {
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#workon section#attempt .inner h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  position: relative;
  margin-bottom: min(3.125vw, 60px);
}
html body main#workon section#attempt .inner h3::after {
  content: "";
  background: #000;
  width: min(1.563vw, 30px);
  height: 2px;
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner h3 {
    font-size: 1.428rem;
    margin-bottom: min(13.953vw, 60px);
  }
  html body main#workon section#attempt .inner h3::after {
    width: min(6.977vw, 30px);
    margin-top: min(2.326vw, 10px);
  }
}
html body main#workon section#attempt .inner > div {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner > div {
    display: block;
  }
}
html body main#workon section#attempt .inner > div > figure {
  flex-shrink: 0;
  width: min(22.396vw, 430px);
  margin: 0 min(0.781vw, 15px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner > div > figure {
    width: 100%;
    margin: 0 0 min(3.488vw, 15px) 0;
  }
}
html body main#workon section#attempt .inner > div div {
  display: block;
  width: 100%;
}
html body main#workon section#attempt .inner > div div h4 {
  color: #fff;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  padding: min(0.521vw, 10px);
  background: linear-gradient(to right, rgb(93, 170, 81), rgb(72, 170, 224));
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner > div div h4 {
    font-size: 1rem;
    padding: min(2.326vw, 10px);
  }
}
html body main#workon section#attempt .inner > div div div {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin-top: min(0.781vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner > div div div {
    display: block;
    margin-top: min(3.488vw, 15px);
  }
}
html body main#workon section#attempt .inner > div div div figure {
  flex-shrink: 0;
  width: min(9.896vw, 190px);
  margin: 0 min(0.781vw, 15px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner > div div div figure {
    width: 50%;
    margin: 0 auto min(3.488vw, 15px);
  }
}
html body main#workon section#attempt .inner > div div div .comment {
  font-size: min(fs16, 16px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner > div div div .comment {
    font-size: 1rem;
  }
}
html body main#workon section#attempt .inner > div:nth-of-type(2n) {
  flex-direction: row-reverse;
}
html body main#workon section#attempt .inner > div:nth-of-type(2n) > figure {
  margin: 0 0 0 min(0.781vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner > div:nth-of-type(2n) > figure {
    margin: 0 0 min(3.488vw, 15px) 0;
  }
}
html body main#workon section#attempt .inner hr {
  display: block;
  background: linear-gradient(to right, rgb(93, 170, 81), rgb(72, 170, 224));
  width: 100%;
  height: 1px;
  margin: min(1.563vw, 30px) auto;
  padding: 0;
  border: 0;
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner hr {
    margin: min(6.977vw, 30px) auto;
  }
}
html body main#workon section#attempt .inner > .comment {
  text-align: center;
  font-size: min(1.25rem, 20px);
  line-height: 1.75;
  margin-top: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#workon section#attempt .inner > .comment {
    text-align: left;
    font-size: 1.142rem;
    margin-top: min(13.953vw, 60px);
  }
}
html body main#privacy section#title .inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body main#privacy section#title .inner h2 {
  text-align: left;
  margin-left: 65.104vw;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h2 {
    margin: 0 min(4.651vw, 20px) 0 auto;
  }
}
html body main#privacy section#contents .inner {
  align-items: flex-start;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
html body main#privacy section#contents .inner strong {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner strong {
    font-size: 1rem;
  }
}
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: 1.142rem;
    padding-bottom: min(4.651vw, 20px);
    margin: min(13.953vw, 60px) 0 min(4.651vw, 20px);
  }
}
html body main#privacy section#contents .inner p {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner p {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner p:last-of-type {
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner p:last-of-type {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner p a {
  color: #000;
}
html body main#privacy section#contents .inner ul li {
  font-size: min(0.875rem, 14px);
  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: 1rem;
  }
}
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: 18px;
  }
}
html body main#contact > .step {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step {
    width: 100%;
    padding: min(13.953vw, 60px) 0 0;
  }
}
html body main#contact > .step li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 33.333%;
}
html body main#contact > .step li .txt {
  text-align: center;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .txt {
    font-size: 12px;
  }
}
html body main#contact > .step li .circle {
  flex-shrink: 0;
  width: min(1.563vw, 30px);
  height: min(1.563vw, 30px);
  background: #e5e5e5;
  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: min(4.651vw, 20px);
    height: min(4.651vw, 20px);
    margin-top: min(2.326vw, 10px);
  }
}
html body main#contact > .step li .circle::after {
  content: "";
  position: absolute;
  top: calc(min(0.781vw, 15px) - 1px);
  left: 50%;
  width: min(19.792vw, 380px);
  height: 2px;
  background: #e5e5e5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html body main#contact > .step li .circle::after {
    top: calc(min(2.326vw, 10px) - 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#title .inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body main#contact section#title .inner h2 {
  text-align: left;
  margin-left: 65.104vw;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h2 {
    margin: 0 min(4.651vw, 20px) 0 auto;
  }
}
html body main#contact section#inquiry .inner {
  width: min(69.792vw, 1340px);
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner {
    width: 100%;
    padding: min(13.953vw, 60px) 0;
  }
}
html body main#contact section#inquiry .inner form {
  width: 100%;
}
html body main#contact section#inquiry .inner form > .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 form > .note p {
    text-align: left;
    font-size: 1rem;
    padding: 0 min(6.977vw, 30px);
  }
}
html body main#contact section#inquiry .inner form > .note p:last-of-type {
  color: #ce000d;
}
html body main#contact section#inquiry .inner form .bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #e5e5e5;
  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: min(6.977vw, 30px);
    margin-top: min(6.977vw, 30px);
  }
}
html body main#contact section#inquiry .inner form .btn_area {
  display: flex;
  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: min(9.302vw, 40px);
  }
}
html body main#contact section#inquiry .inner form .btn_area p {
  text-align: center;
  line-height: 1.75;
}
html body main#contact section#inquiry .inner form .btn_area .btn_confirm {
  background: url("../img/btn_confirm.png") no-repeat center/contain;
  width: min(12.24vw, 235px);
  aspect-ratio: 235/48;
  color: transparent;
  font-size: 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 {
    width: min(34.884vw, 150px);
  }
}
html body main#contact section#inquiry .inner form .btn_area .btn_submit {
  background: url("../img/btn_submit.png") no-repeat center/contain;
  width: min(12.24vw, 235px);
  aspect-ratio: 235/48;
  color: transparent;
  font-size: 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 {
    width: min(34.884vw, 150px);
  }
}
html body main#contact section#inquiry .inner form .btn_area .btn_fixes {
  background: url("../img/btn_fixes.png") no-repeat center/contain;
  width: min(12.24vw, 235px);
  aspect-ratio: 235/48;
  color: transparent;
  font-size: 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 {
    width: min(34.884vw, 150px);
  }
}
html body main#contact section#inquiry .inner form .must {
  background: #ce000d;
  color: #fff;
  font-size: min(0.875rem, 14px);
  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: 1rem;
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
  }
}
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 span.error {
  display: block;
  text-align: left;
  margin-top: min(0.26vw, 5px);
  flex-basis: 100%;
}
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: min(4.651vw, 20px) 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 min(2.326vw, 10px) 0;
  }
}
html body main#contact section#inquiry .inner form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(1.5rem, 24px);
  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: 16px;
  }
}
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(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd .wrap {
    font-size: 1rem;
  }
}
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(0.875rem, 14px);
  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: 16px;
    height: min(13.953vw, 60px);
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
  }
}
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: min(46.512vw, 200px) !important;
  }
}
html body main#contact section#inquiry .inner form input[type=file] {
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form input[type=file] {
    font-size: 16px;
  }
}
html body main#contact section#inquiry .inner form .horizontal-item {
  padding: min(0.26vw, 5px) 0;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .horizontal-item {
    padding: min(1.163vw, 5px) 0;
  }
}
html body main#contact section#inquiry .inner form .horizontal-item + .horizontal-item {
  padding: min(0.26vw, 5px) 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .horizontal-item + .horizontal-item {
    padding: min(1.163vw, 5px) 0;
  }
}
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.521vw, 10px);
  height: min(0.521vw, 10px);
  border-width: 0 2px 2px 0;
  border-color: #000;
  border-style: solid;
  position: absolute;
  right: min(0.521vw, 10px);
  top: calc(50% - min(0.521vw, 10px));
  transform-origin: center;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .select::after {
    right: 20px;
    top: calc(50% - min(2.326vw, 10px));
  }
}
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(0.875rem, 14px);
  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: 1rem;
    margin: 0 min(4.651vw, 20px) 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 min(2.326vw, 10px) 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 {
  line-height: 1.25;
  position: relative;
}
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(1.125rem, 18px);
  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: 1rem;
    padding: 0 0 0 calc(20px + min(2.326vw, 10px));
  }
}
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% - min(0.698vw, 3px));
  }
}
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: flex;
  justify-content: space-between;
  align-items: stretch;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step {
    width: 100%;
    padding: min(13.953vw, 60px) 0 0;
  }
}
html body main#complete > .step li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 33.333%;
}
html body main#complete > .step li .txt {
  text-align: center;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .txt {
    font-size: 12px;
  }
}
html body main#complete > .step li .circle {
  flex-shrink: 0;
  width: min(1.563vw, 30px);
  height: min(1.563vw, 30px);
  background: #e5e5e5;
  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: min(4.651vw, 20px);
    height: min(4.651vw, 20px);
    margin-top: min(2.326vw, 10px);
  }
}
html body main#complete > .step li .circle::after {
  content: "";
  position: absolute;
  top: calc(min(0.781vw, 15px) - 1px);
  left: 50%;
  width: min(19.792vw, 380px);
  height: 2px;
  background: #e5e5e5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html body main#complete > .step li .circle::after {
    top: calc(min(2.326vw, 10px) - 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#title .inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
html body main#complete section#title .inner h2 {
  text-align: left;
  margin-left: 65.104vw;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h2 {
    font-size: 40px;
    margin: 0 min(4.651vw, 20px) 0 auto;
  }
}
html body main#complete section#contents .inner {
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner {
    width: 100%;
    padding: min(13.953vw, 60px) min(6.977vw, 30px);
  }
}
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: 1rem;
    line-height: 1.75;
  }
}
html body main#complete section#contents .inner > p {
  text-align: center;
  font-size: min(0.875rem, 14px);
  line-height: 2;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > p {
    font-size: 1rem;
    margin-top: min(6.977vw, 30px);
  }
}
html body main#complete section#contents .inner > div {
  border-radius: min(1.042vw, 20px);
  background: #e5e5e5;
  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: min(1.163vw, 5px);
    width: 100%;
    padding: min(3.125vw, 60px);
    margin-top: min(9.302vw, 40px);
  }
}
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: min(9.302vw, 40px);
    margin: 0 0 min(2.326vw, 10px) 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: 1rem;
  }
}
html body main#complete section#contents .inner > div > em {
  font-size: min(0.875rem, 14px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > em {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
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: 1rem;
    margin-top: min(2.326vw, 10px);
  }
}
html body main#complete section#contents .inner > div > p a {
  color: #000;
}
html body main#complete section#contents .inner > .btn {
  width: min(12.24vw, 235px);
  margin: min(1.563vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > .btn {
    width: min(34.884vw, 150px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
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(11.628vw, 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(4.651vw, 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 {
    font-size: 1rem;
    margin-top: min(4.651vw, 20px);
  }
}
html body main#page section#contents .inner p {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#page section#contents .inner p {
    font-size: 1rem;
  }
}
html body .breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #e5e5e5;
  width: 100%;
  padding: min(0.521vw, 10px) min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body .breadcrumbs {
    padding: min(2.326vw, 10px) min(4.651vw, 20px);
  }
}
html body .breadcrumbs li {
  display: flex;
  align-items: center;
}
html body .breadcrumbs li::after {
  content: "›";
  color: #000;
  font-size: min(0.75rem, 12px);
  margin: 0 min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body .breadcrumbs li::after {
    font-size: 0.857rem;
    margin: 0 min(1.163vw, 5px);
  }
}
html body .breadcrumbs li:last-child::after {
  content: normal;
}
html body .breadcrumbs li:last-child span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body .breadcrumbs li span {
  color: #000;
  font-size: min(0.75rem, 12px);
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body .breadcrumbs li span {
    font-size: 0.857rem;
  }
}
html body .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 .breadcrumbs li span::after {
    content: none;
  }
}
html body .breadcrumbs li a:hover span::after {
  background: #000;
  bottom: calc(-1 * min(0.26vw, 5px));
}
@media screen and (max-width: 768px) {
  html body .breadcrumbs li a:hover span::after {
    bottom: calc(-1 * min(1.163vw, 5px));
  }
}
html body #works_block {
  background: linear-gradient(to right, #182954 0%, #182987 71.5%);
  padding-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body #works_block {
    padding-top: min(6.977vw, 30px);
  }
}
html body #works_block .inner {
  background: url("../img/bg_works.jpg") no-repeat center top/contain;
}
@media screen and (max-width: 768px) {
  html body #works_block .inner {
    background: url("../img/bg_contact.jpg") no-repeat center top/400% auto;
    padding: min(20.93vw, 90px) min(6.977vw, 30px) min(13.953vw, 60px);
  }
}
html body #works_block .inner > .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: min(59.375vw, 1140px);
  height: min(12.917vw, 248px);
  padding-bottom: min(1.563vw, 30px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body #works_block .inner > .title {
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }
}
html body #works_block .inner > .title h2 {
  margin-bottom: 0 !important;
}
html body #works_block .inner > .title .btn {
  width: min(9.375vw, 180px);
}
@media screen and (max-width: 768px) {
  html body #works_block .inner > .title .btn {
    display: none;
  }
}
html body #works_block .inner > .list_pc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body #works_block .inner > .list_pc {
    display: none;
  }
}
html body #works_block .inner > .list_pc article {
  width: 100%;
  position: relative;
}
html body #works_block .inner > .list_pc article a {
  display: block;
}
html body #works_block .inner > .list_pc article a figure {
  width: 100%;
  position: relative;
}
html body #works_block .inner > .list_pc article a figure::before {
  content: "";
  display: block;
  padding-top: 64.375%;
}
html body #works_block .inner > .list_pc article a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body #works_block .inner > .list_pc article a figure figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
html body #works_block .inner > .list_pc article a figure figcaption h1 {
  background: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
html body #works_block .inner > .list_pc article a figure figcaption h1 span {
  font-size: min(0.875rem, 14px);
  margin-left: min(0.521vw, 10px);
}
html body #works_block .inner > .list_pc article a figure figcaption ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: min(0.26vw, 5px);
  margin-top: min(0.26vw, 5px);
}
html body #works_block .inner > .list_pc article a figure figcaption ul li {
  background: linear-gradient(to right, rgb(0, 113, 255), rgb(0, 211, 157));
  color: #fff;
  font-size: min(0.75rem, 12px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
}
html body #works_block .inner > .list_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  html body #works_block .inner > .list_sp {
    display: block;
    width: 100%;
    margin-top: min(9.302vw, 40px);
  }
  html body #works_block .inner > .list_sp .swiper-container {
    width: 100vw;
    padding: 0 min(4.651vw, 20px);
    margin: 0 calc(-1 * min(4.651vw, 20px));
    position: relative;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article {
    width: 100%;
    position: relative;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a {
    display: block;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure {
    width: 100%;
    position: relative;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure figcaption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: calc(-1 * min(6.977vw, 30px));
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure figcaption h1 {
    background: #fff;
    font-size: 1rem;
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure figcaption h1 span {
    font-size: 1rem;
    margin-left: min(2.326vw, 10px);
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure figcaption ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: min(1.163vw, 5px);
    margin-top: min(1.163vw, 5px);
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-wrapper .swiper-slide article a figure figcaption ul li {
    background: linear-gradient(to right, rgb(0, 113, 255), rgb(0, 211, 157));
    color: #fff;
    font-size: 0.857rem;
    padding: min(1.163vw, 5px) min(2.326vw, 10px);
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-button-next {
    background: url("../img/btn_slider_next.png") no-repeat center/cover;
    width: min(6.977vw, 30px);
    height: min(6.977vw, 30px);
    position: absolute;
    top: calc(-1 * min(11.628vw, 50px));
    right: min(4.651vw, 20px);
    left: auto;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-button-next::after {
    content: none;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-button-prev {
    background: url("../img/btn_slider_prev.png") no-repeat center/cover;
    width: min(6.977vw, 30px);
    height: min(6.977vw, 30px);
    position: absolute;
    top: calc(-1 * min(11.628vw, 50px));
    right: min(13.953vw, 60px);
    left: auto;
  }
  html body #works_block .inner > .list_sp .swiper-container .swiper-button-prev::after {
    content: none;
  }
}
html body #works_block .inner > .btn {
  display: none;
}
@media screen and (max-width: 768px) {
  html body #works_block .inner > .btn {
    display: block;
    width: min(34.884vw, 150px);
    margin: min(13.953vw, 60px) auto 0;
  }
}
html body #contact_block {
  background: #000 url("../img/bg_contact.jpg") no-repeat center top/cover;
  position: initial;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body #contact_block {
    background: #000 url("../img/bg_contact.jpg") no-repeat right top/260% auto;
  }
}
html body #contact_block .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(59.375vw, 1140px);
  padding: min(3.646vw, 70px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body #contact_block .inner {
    width: 100%;
    padding: min(13.953vw, 60px) 0;
  }
}
html body #contact_block .inner div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body #contact_block .inner div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
html body #contact_block .inner div h2 {
  color: #fff;
  font-size: min(3.125rem, 50px) !important;
  font-weight: 700;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  html body #contact_block .inner div h2 {
    text-align: center !important;
    font-size: 2rem !important;
    margin-bottom: min(9.302vw, 40px) !important;
  }
}
html body #contact_block .inner div h2::after {
  content: attr(data-subtitle);
  display: block;
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body #contact_block .inner div h2::after {
    font-size: 1rem !important;
    margin-top: min(2.326vw, 10px);
  }
}
html body #contact_block .inner div .comment {
  display: none;
}
@media screen and (max-width: 768px) {
  html body #contact_block .inner div .comment {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
  }
}
html body #contact_block .inner div ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body #contact_block .inner div ul {
    flex-direction: column;
    gap: min(4.651vw, 20px);
    margin-top: min(9.302vw, 40px);
  }
}
html body #contact_block .inner div ul li {
  width: min(15.573vw, 299px);
}
@media screen and (max-width: 768px) {
  html body #contact_block .inner div ul li {
    width: min(79.07vw, 340px);
  }
}
html body #contact_block .inner strong {
  text-align: center;
  color: #fff;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  width: 100%;
  padding: min(1.042vw, 20px) 0;
  border-top: 1px #fff solid;
  border-bottom: 1px #fff solid;
  margin-top: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body #contact_block .inner strong {
    font-size: 18px;
    display: none;
  }
}
html body .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(0.26vw, 5px);
  margin: min(3.125vw, 60px) auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body .pagination {
    gap: min(1.163vw, 5px);
    margin: min(6.977vw, 30px) auto 0;
  }
}
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: min(6.977vw, 30px);
  }
}
html body .pagination li span {
  font-size: min(0.875rem, 14px);
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  html body .pagination li span {
    font-size: 0.857rem;
  }
}
html body .pagination li .page-numbers {
  width: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body .pagination li .page-numbers {
    width: min(6.977vw, 30px);
  }
}
html body .pagination li .page-numbers.current {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: min(0.875rem, 14px);
  height: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body .pagination li .page-numbers.current {
    font-size: 0.857rem;
    height: min(6.977vw, 30px);
  }
}
html body footer .inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body footer .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
html body footer .inner div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  html body footer .inner div {
    width: 100%;
  }
}
html body footer .inner div:nth-of-type(1) {
  position: relative;
}
html body footer .inner div:nth-of-type(1) #map {
  width: 100%;
  height: min(31.25vw, 600px);
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(1) #map {
    height: min(65.116vw, 280px);
  }
}
html body footer .inner div:nth-of-type(1) #map iframe {
  width: 100%;
  height: calc(min(31.25vw, 600px) + min(36.458vw, 700px));
  margin-top: calc(-1 * min(18.229vw, 350px));
  filter: grayscale(100%);
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(1) #map iframe {
    height: calc(min(65.116vw, 280px) + min(88.372vw, 380px));
    margin-top: calc(-1 * min(44.186vw, 190px));
  }
}
html body footer .inner div:nth-of-type(1) .btn {
  width: min(19.792vw, 380px);
  position: absolute;
  right: min(1.042vw, 20px);
  bottom: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(1) .btn {
    display: none;
  }
}
html body footer .inner div:nth-of-type(2) {
  padding: 0 min(10.417vw, 200px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(2) {
    padding: min(9.302vw, 40px) min(6.977vw, 30px);
  }
}
html body footer .inner div:nth-of-type(2) h1 {
  width: min(21.563vw, 414px);
  margin-bottom: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(2) h1 {
    width: min(58.14vw, 250px);
    margin: 0 auto min(9.302vw, 40px);
  }
}
html body footer .inner div:nth-of-type(2) dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: min(0.521vw, 10px);
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(2) dl {
    gap: min(2.326vw, 10px);
    margin-top: min(4.651vw, 20px);
  }
}
html body footer .inner div:nth-of-type(2) dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, rgb(0, 113, 255), rgb(0, 211, 157));
  color: #fff;
  font-size: min(0.75rem, 12px);
  font-weight: 700;
  width: min(4.688vw, 90px);
  height: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(2) dl dt {
    font-size: 0.714rem;
    width: min(16.279vw, 70px);
    height: min(9.302vw, 40px);
  }
}
html body footer .inner div:nth-of-type(2) dl dd {
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(2) dl dd {
    font-size: 0.714rem;
  }
}
html body footer .inner div:nth-of-type(2) dl dd a {
  margin-right: 1em;
}
html body footer .inner div:nth-of-type(2) ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4em;
  border-top: 1px #e6e6e6 solid;
  border-bottom: 1px #e6e6e6 solid;
  padding: min(1.042vw, 20px) 0;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(2) ul {
    display: none;
  }
}
html body footer .inner div:nth-of-type(2) ul li {
  color: #444;
  font-size: min(0.75rem, 12px);
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(2) ul li {
    font-size: 0.857rem;
  }
}
html body footer .inner div:nth-of-type(2) small {
  display: block;
  font-size: min(0.75rem, 12px);
  margin-top: min(3.646vw, 70px);
}
@media screen and (max-width: 768px) {
  html body footer .inner div:nth-of-type(2) small {
    text-align: center;
    font-size: 0.714rem;
    margin-top: min(6.977vw, 30px);
  }
}/*# sourceMappingURL=style.css.map */