@charset "utf-8";

/* *{
  outline: 1px solid red;
} */

/*==========================
common
==========================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "yu-gothic-pr6n",
        "Montserrat",
        sans-serif;
    font-style: normal;
    font-weight: bold;
    line-height: 1.5;
}

.spBr {
  display: block;
}
.pcBr {
  display: none;
}

/* PC */
@media screen and (min-width: 1024px) {
  .spBr {
    display: none;
  }
  .pcBr {
    display: block;
  }
}
/* PC 1921px以上 */

/* ==================
header
================== */

.header {
  width: 100%;
  position: relative;
}

.header__logo img {
  width: 5rem;
}

.header__logo {
  position: absolute;
  top: 2.6rem;
  left: 2.6rem;
}

.menu__btn{
  position:fixed;
  top:2.6rem;
  right:2rem;
  width:40px;
  height:33px;
  border:none;
  background:none;
  cursor:pointer;
  z-index:10;
}

.menu__btn span{
  display:block;
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:4px;
  background:#fff;
  transform:translateY(-50%);
  transition:0.3s;
}

.menu__btn span::before,
.menu__btn span::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:4px;
  background:#fff;
  transition:0.3s;
}

.menu__btn span::before{
  top:-14px;
}

.menu__btn span::after{
  top:14px;
}

.menu__btn.active span{
  background:transparent !important;
}

.menu__btn.active span::before{
  top:0;
  transform:rotate(45deg);
}

.menu__btn.active span::after{
  top:0;
  transform:rotate(-45deg);
}

.nav{
  position:fixed;
  top:0;
  right:-100%;
  width:48%;
  height:100vh;
  background:#303030;
  /* background:#382b14; */
  transition:right 0.4s;
  opacity: 0.9;
  z-index:10;
}

.nav.active{
  right:0;
}

.nav__item {
  font-size: 4vw;
  line-height: 0;
  margin-top: 14vw;
  margin-left: 5vw;
  color: #FFF;
}

.nav__item:first-of-type {
  padding-top: 16vw;
}

.nav__item a:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.menu__btn span,
.menu__btn span::before,
.menu__btn span::after{
  background:white;
  transition: 0.3s;
}

.menu__btn.black span,
.menu__btn.black span::before,
.menu__btn.black span::after{
  background:black;
}

.menu__btn.active span{
  background:transparent;
}

.menu__btn.active span::before,
.menu__btn.active span::after{
  background:white;
}

.header__group02 {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__ttl img {
  width:90vw;
  filter: drop-shadow(0 0 8rem rgba(33, 16, 12, 0.6));
}

.header__txt {
    color: #FFF;
    font-size: 3.7vw;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(69, 28, 20, 0.2);
    position: absolute;
    top: 45vw;
    left: 2vw;
  }

.header__bg img {
  width: 100%;
}


/* Header PC */
@media screen and (min-width: 1024px) {
  .header__group01 {
    color: #FFF;
  }
  
  .header__logo img,
  .nav__logo img {
    width: 5rem;
  }
  
  .nav {
    margin-top: 1.6rem;
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    transform: translate(0);
    position: absolute;
    top: 2.4rem;
    right: 2.4rem;
  }
  
  .nav__item:first-of-type {
    padding-top: 0;
  }
  
  .nav__item a:hover {
    opacity: inherit;
  }

  .nav__list {
    display: flex;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .nav__list a {
    transition: 0.3s ease;
  }
  
  .nav__list a:hover {
    color: #193245;
  }
  
  .nav__item {
    font-weight: 600;
    margin-top: 0;
    font-size: 1.8rem;
    margin-left: 2.1rem;
    text-shadow: 0 2px 6px rgba(69, 28, 20, 0.4);
  }

  .nav__item img {
    display: none;
    margin-right: 0;
  }
  
  .menu__btn {
    display: none;
  }
  
  .header__group02 {
    position: absolute;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%);
  }
  
  .header__ttl img {
    width: calc(1189 * 100vw / 1920);
  }
  
  .header__txt {
    font-size: min(24px, calc(24 * 100vw / 1920));
    /* font-size: 1.2vw; */
    width: calc(600 * 100vw / 1920);
    line-height: 1.8;
    position: absolute;
    top: 91%;
    left: 65%;
    font-feature-settings: "palt";
    margin-left: 1.5rem;
    letter-spacing: 0.05em;
  }

  .header__bg img {
    width: 100%;
    object-fit: cover;
  }
}
/* PC 1921px以上 */


/* ==================
info
================== */
.info {
  margin: 0 auto;
  padding: 7.5vw 0;
  background-color: #FFF;
  text-align: center;
}
.info p {
  font-size: 3.7vw;
  line-height: 1.8;
}
.info p:last-of-type {
  margin-top: 4vw;
}

/* info PC */
@media screen and (min-width: 1024px) {
  .info {
    padding: 3.5vw 0;
  }
  .info p {
    font-size: min(24px, calc(24 * 100vw / 1920));
    font-weight: 500;
  }
  .info p:last-of-type {
    margin-top: 1.4vw;
  }
}

/* ==================
projects
================== */
.projects__topic {
  display: none;
}

.section--projects {
  padding-top: 4vw;
  position: relative;
  z-index: 1;
}

.bg__wrapper--projects {
  position: relative;
  padding-bottom: 39vw;
  z-index: 0;
}

.bg__wrapper--projects::before {
  content: "";
  position: absolute;
  inset:0;
  background-color: #dcdcdc;
  clip-path: polygon(0 0, 100% 0, 100% 48%, 0 100%);
  z-index: -1;
}

.projects__list {
  margin:0 -1.5rem;
}

.projects__item img {
  width: 100%;
  border-radius: 1vw;
  display: block;
}

.projects__content {
  margin-top: 2vw;
  font-size: 2.4vw;
  line-height: 1.2;
}

.projects__txt {
  margin-top: 2vw;
}

.projects__item {
  width: 48%;
  position: relative;
}

.projects__item::before {
  content: none;
}

.projects__item.new-on::before {
  content: 'NEW';
  position: absolute;
  top: -6.4vw;
  right: 1.4vw;
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  background: #ffd600;
  display: grid;
  place-items: center;
  font-size: 2.5vw;
  font-family: 'Montserrat';
  font-weight: bold;
  line-height: 1;
}

/* .projects__btn {
  text-align: center;
}
.btn--projects {
  display: inline-block;
  margin-top: 6vw;
  padding: 1.5vw 6vw;
  font-size: 3.5vw;
  line-height: 1;
  color: #FFF;
  background-color: #000;
  border-radius: 999.9rem;
} */


/* ==================
slick
================== */
.projects__slider {
  overflow: hidden;
}

.slick-list {
  padding: 0 3%;
}

.slick-slide {
  box-sizing:border-box;
  padding: 7rem 1.2rem 0;
}

.projects__slider{
  position:relative;
}

.slider-arrow{
  position:absolute;
  top:54%;
  transform:translateY(-50%);
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  z-index:10;
}

.slider-arrow img{
  width:2rem;
  display:block;
  opacity: 0.4;
}

.slider-prev{
  left:3rem;
}

.slider-next{
  right:3rem;
}

/* SE */
@media screen and (max-width: 380px) {
  .section--projects {
    padding-top: 0;
  }
  .slick-slide {
    box-sizing:border-box;
    padding: 5rem 1.2rem 0;
  }
  
}

/* Project PC */
@media screen and (min-width: 1024px) {

  .bg__wrapper--projects {
    padding-bottom: 8vw;
  }

  .bg__wrapper--projects::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #dcdcdc;
    clip-path: polygon(0 0, 100% 0, 100% 52%, 0 100%);
    z-index: -1;
  }

  .section--projects {
    padding-top: 0;
  }

  .projects__topic {
    width: 100%;
    display: block;
    padding: 5rem 0 0 7.8rem;
  }

  .projects__topic img {
    width: 34.9vw;
  }

  .projects__item img {
    border-radius: 0.4vw;
    display: block;
  }

  .projects__item::before {
    content: none;
  }
  
  .projects__item.new-on::before {
    content: 'NEW';
    position: absolute;
    top: -5rem;
    right: 0.5rem;
    width: 7.6rem;
    height: 7.6rem;
    font-size: 2rem;
  }

  .projects__content {
    margin-top: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  
  .projects__txt {
    margin-top: 2rem;
    font-size: 1.4rem;
  }

  /* .projects__btn {
    text-align: right;
    margin-right: 3.3rem;
  }
  .btn--projects {
    margin-top: 3rem;
    padding: 1.2rem 3.1rem;
    font-size: 2rem;
  } */

  /* ==================
  slick
  ================== */
  .slick-slide {
    padding: 5.6rem 1.4rem 0;
  }

  .slider-arrow{
    top:50%;
    z-index:10;
  }

}/* PC 1920px */


/* ==================
Service
================== */

.section--service {
  position: relative;
  margin-bottom: 4vw;
}

.service__bg {
  position: absolute;
  top:-102vw;
  left:0;
  z-index: -1;
}

.service__bg img {
  width:100%;
}

.service__group01--flex {
  display: flex;
  align-items: flex-start;
  justify-content: end;
  position: relative;
}

.service__ttl {
  flex-shrink:0;
}

.service__ttl {
  order: 2;
  margin-top: -22vw;
}

.service__ttl img{
  width:18.6vw;
}

.service__maintxt {
  order: 1;
  margin-right: 17vw;
  margin-top: -6vw;
  width: 20vw;
  min-width: 0;
}

.service__maintxt p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3.4vw;
  flex-shrink:0;
}

.service__group02 {
  padding-bottom: 96vw;
}

.service__list {
  position: relative;
}

.service__item {
  width: 100%;
}

.service__item img {
  width: 55.8vw;
}

.service__item:last-of-type img {
  width: 42vw;
}

.service__content01 {
  position: absolute;
  top: -31vw;
  left: 0;
}

.service__content02 {
  position: absolute;
  top: 6vw;
  right: 0;
}

.service__content03 {
  position: absolute;
  top: 42vw;
  left: 0;
}

.service__content04 {
  position: absolute;
  top: 71vw;
  right: 7vw;
}

.service__content-pc {
  display: none;
}

.service__group03 {
  position: relative;
}

.service__lead01,
.service__lead02 {
  display: flex;
  align-items: flex-start;
}

.service__lead01--catch,
.service__lead02--catch {
  flex-shrink: 0;
}

.service__lead01--catch {
  margin-top: 5vw;
  margin-left: 4vw;
}

.service__lead01--catch img {
  width: 31vw;
}

.service__lead01--txt {
  width: 57vw;
  font-size: 3.2vw;
  line-height: 1.8;
  margin: 10vw 5vw 0;
}

.service__lead02--catch {
  order: 2;
  margin-top: 6.2vw;
  margin-left: 4vw;
}

.service__lead02--catch img {
  width: 22vw;
}

.service__lead02--txt {
  order: 1;
}

.service__lead02--txt {
  width: 64vw;
  font-size: 3.2vw;
  line-height: 1.8;
  margin: 8.4vw 0 0 5vw;
}

.service__movie {
  width: 85.3vw;
  margin: 4vw auto 1vw;
}

.service__movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio:16/9;
  display: block;
}

@media screen and (min-width: 1024px) {
  .service__bg {
    width: 100%;
    top: -29vw;
  }

  .service__list {
    display: none;
  }

  .service__content-pc {
    display: block;
    width: 100%;
  }

  .service__content-pc img {
    display: block;
    margin: -28.4vw auto 0;
    width: 59.16vw;
  }

  .service__group01--flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
  }
  
  .service__ttl {
    flex-shrink:0;
  }
  
  .service__ttl {
    order: 2;
    margin-top: 0.8vw;
  }

  .service__ttl img{
    width: 7.5vw;
    margin-right: 10.5vw;
    margin-top: -6.5vw;
  }

  .service__maintxt {
    order: 1;
    margin-right: 1.4vw;
    margin-top: 3.5vw;
    line-height: 1.8;
    width: auto;
  }
  
  .service__maintxt p {
    font-size: 1.1vw;
  }

  .service__group02 {
    padding-bottom: 0;
  }

  .service__lead01,
  .service__lead02 {
    justify-content: center;
  }

  .service__lead01--catch {
    margin-top: -0.4vw;
    margin-left: 6vw;
  }
  
  .service__lead01--catch img {
    width: 18.5vw;
  }
  
  .service__lead01--txt {
    width: 34vw;
    font-size: 1.1vw;
    line-height: 1.8;
    margin: 3.8vw 3vw 0 5vw;
  }
  
  .service__lead02--catch {
    order: 2;
    margin-top: -17.7vw;
    margin-left: 3vw;
  }
  
  .service__lead02--catch img {
    width: 12.5vw;
  }
  
  .service__lead02--txt {
    order: 1;
  }
  
  .service__lead02--txt {
    width: 43vw;
    font-size: 1.1vw;
    line-height: 1.8;
    margin: 4.8vw 0 0 2vw;
  }
  
  .service__movie {
    width: 33.33vw;
    margin: 2.5vw auto;
  }
  
  .service__movie iframe {
    width: 100%;
    height: auto;
    aspect-ratio:16/9;
    display: block;
  }
}


/* ==================
Client
================== */
.bg__wrapper--client{
  width: 100%;
}

.client {
  position: relative;
  padding-top: 48.56vw;
}

.client__photo--item01 {
  position: absolute;
  top: 1rem;
  right: 0;
  z-index: -1;
}

.client__photo--item01 img {
  width: 100%;
}

.client__photo--item02 img {
  width: 100%;
}

.client__group02 {
  display: flex;
  justify-content: space-between;
  background-color: #313131;
}

.client__ttl {
  margin-top: -33.98vw;
  z-index: 1;
}

.client__ttl img {
  width: 18.26vw;
}

.client__box {
  margin-top: -17.85vw;
  width: 73.2vw;
  padding: 6vw;
  box-sizing: border-box;
  background-color: #d2d2d2;
}

.client__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2.4vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

.client__item {
  width: 100%;
  text-align: left;
  font-size: 3.2vw;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .client {
    width: 100%;
    padding-top: 12vw;
  }

  .client__photo--item01 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  .client__photo--item01 img {
    width: calc(1582 * 100vw / 1920);
  }

  .client__ttl {
    margin-left: 12.23%;
    margin-top: -26vw;
  }

  .client__ttl img {
    width: calc(140 * 100vw / 1920);
    margin-right: -0.5vw;
  }

  .client__box {
    width: calc(1560 * 100vw / 1920);
    margin-bottom: 3.8vw;
    padding: 2vw 8vw 2vw 4vw;
  }
  
  .client__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem 3.2rem;
  }
  
  .client__item {
    width: auto;
    font-size: min(24px, calc(24 * 100vw / 1920));
    white-space: nowrap;
  }

  .client__note {
    flex-basis: 100%;
    width: 100%;
    white-space: normal;
    text-align: left;
  }

}/* PC 1920px */


/* ==================
Contact
================== */

/* ==================
Contact
================== */

.bg__wrapper--contact {
  background-color: #313131;
  padding-bottom: 15vw;
}

.section--contact {
  padding-top: 14vw;
}

.contact__topic {
  text-align: center;
}

.contact__topic img,
.contact__topic span {
  display: block;
  margin: 0 auto;
}

.contact__topic img {
  width: 58vw;
}

.contact__topic span {
  color: #FFF;
  font-size: 3vw;
  margin-top: 3.5vw;
  line-height: 1;
}

.contact-form-box {
  position: relative;
}

.contact-form-wrap {
  max-width: 90%;
  margin: 4.5vw auto 0;
  position: relative;
}

.contact-form {
  max-width: none;
  margin: 0;
  padding: 4vw 3vw 7vw;
  background-color: #fff;
}

.form__category {
  display: flex;
  align-items: flex-start;
  font-size: 2.5vw;
  line-height: 1;
}

.form__category::after {
  content: '必須';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e84549;
  color: #FFF;
  font-size: 1.3vw;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-left: 1.5vw;
  padding: 0.5vw 1vw;
}

input[type="text"],
input[type="tel"],
input[type="email"],
.group__textArea {
  display: block;
  width: 100%;
  padding: 1vw;
  background-color: #eee;
  font-size: 1.4rem;
  margin-top: 1vw;
}

.group__textArea {
  min-height: 47vw;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
.group__textArea:focus {
  outline: none;
}

.btn--form:focus {
  outline: none;
}

.form__parts {
  margin-top: 2vw;
}

.form__submit {
  width: 45vw;
  margin: 5.5vw auto 0;
  position: relative;
  z-index: 10;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 3.2vw 5vw;
  background-color: #019fbb;
  color: #fff;
  border: none;
  font-size: 3.2vw;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 11;
}

.btn-submit:hover {
  opacity: 0.6;
}

.contact__teltxt {
  font-size: 2.5vw;
  line-height: 1;
  text-align: center;
  margin-top: 4vw;
}

/* error */
.msg-error {
  width: 90%;
  margin: 4.5vw auto 0;
  padding: 3vw;
  background-color: #fff;
  color: #e84549;
  list-style: none;
  box-sizing: border-box;
}

.msg-error li + li {
  margin-top: 0.6em;
}

/* success popup */
.contact-popup {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  background: rgba(49, 49, 49, 0.45);
}

.contact-popup.is-hidden {
  display: none;
}

.contact-popup__inner {
  width: 100%;
  padding: 6vw 5vw;
  background-color: #fff;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.18);
}

.contact-popup__text {
  font-size: 3vw;
  line-height: 1.8;
  white-space: pre-line;
}

.contact-popup__close {
  display: inline-block;
  min-width: 36vw;
  margin-top: 4vw;
  padding: 2.6vw 4vw;
  background-color: #303030;
  color: #fff;
  border: none;
  font-size: 2.8vw;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact-popup__close:hover {
  opacity: 0.6;
}

@media screen and (min-width: 1024px) {
  .bg__wrapper--contact {
    margin: 0 auto;
    padding-bottom: 12vw;
  }

  .section--contact {
    width: 100%;
    padding-top: 3vw;
  }
  
  .contact__topic img {
    width: calc(437 * 100vw / 1920);
  }
  
  .contact__topic span {
    margin-top: 1.5vw;
    font-size: min(20px, calc(20 * 100vw / 1920));
    line-height: 1;
  }

  .contact-form-wrap {
    width: calc(1000 * 100vw / 1920);
    max-width: none;
    margin: 1.2vw auto 0;
  }

  .contact-form {
    width: 100%;
    margin: 0;
    padding: 2.8vw 0 4vw;
    box-sizing: border-box;
  }

  .form__category {
    width: calc(200 * 100vw / 1920);
    font-size: min(16px, calc(16 * 100vw / 1920));
  }

  .form__category::after {
    content: '必須';
    width: calc(39 * 100vw / 1920);
    font-size: min(10px, calc(10 * 100vw / 1920));
    height: 0.85vw;
    color: #FFF;
    letter-spacing: 0.1em;
    margin-left: 0.5vw;
    padding: 0;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  .group__textArea {
    display: block;
    width: calc(544 * 100vw / 1920);
    font-size: min(14px, calc(14 * 100vw / 1920));
    min-height: 0;
    margin-top: 0;
    margin-left: 1.5vw;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    height: 1vw;
  }

  .group__textArea {
    height: 14vw;
  }

  .form__parts {
    width: calc(780 * 100vw / 1920);
    margin: 1.3vw auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form__parts:last-of-type {
    align-items: baseline;
  }

  .form__submit {
    width: calc(340 * 100vw / 1920);
    margin: 2.8vw auto 0;
    position: relative;
    z-index: 10;
  }

  .btn-submit {
    height: 3.8vw;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(20px, calc(20 * 100vw / 1920));
    position: relative;
    z-index: 11;
  }

  .contact__teltxt {
    font-size: min(18px, calc(18 * 100vw / 1920));
    line-height: 1;
    margin-top: 2.2vw;
  }

  .msg-error {
    width: calc(1000 * 100vw / 1920);
    margin: 1.2vw auto 0;
    padding: 1.2rem 1.5rem;
  }

  .contact-popup {
    padding: 2vw;
  }

  .contact-popup__inner {
    max-width: 560px;
    padding: 40px 32px;
  }

  .contact-popup__text {
    font-size: 16px;
  }

  .contact-popup__close {
    min-width: 180px;
    margin-top: 24px;
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* ==================
Company
================== */

.company {
  margin-top: -28vw;
  margin-bottom: 8vw;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .company {
    margin-top: -26.2vw;
    margin-bottom: 4vw;
  }
}

@media screen and (min-width: 1440px) {
  .company {
    margin-top: -26.25vw;
  }
}

@media screen and (min-width: 1680px) {
  .company {
    margin-top: -26.3vw;
  }
}

@media screen and (min-width: 1920px) {
  .company {
    margin-top: -26.33vw;
  }
}


.bg__wrapper--company{
  width: 100%;
}

.company__area {
  background-color: #FFF;
}

.company--item img {
  width: 100%;
}

.company__topic {
  position: absolute;
  top: 16vw;
  right: 0;
}

.company__topic img {
  width: 18vw;
}

.company__content {
  padding: 1.2rem 0;
  position: relative;
}

.company__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 0.5rem;
  background-image: radial-gradient(#888 0.1rem, transparent 0.1rem);
  background-size: 0.6rem 0.6rem;
  background-repeat: repeat-x;
}

.company__ttl,
.company__txt {
  font-size: 2.8vw;
  margin-left: 4vw;
}

.company__txt {
  max-width: 75%;
}

@media screen and (min-width: 1024px) {
  .company__area {
    position: relative;
    background-color: inherit;
  }
  
  .company__inner {
    width: calc(998 * 100vw / 1920);
    margin: -5vw auto 0;
  }
  
  .company__topic {
    width: calc(140 * 100vw / 1920);
    position: absolute;
    top: -10vw;
    right: calc(270 * 100vw / 1920);
  }
  
  .company__topic img {
    width: 100%;
  }

  .company__ttl,
  .company__txt {
    font-size: min(16px, calc(16 * 100vw / 1920));
    letter-spacing: 0.1em;
  }

  .company__ttl {
    width: 25%;
    margin-left: 3.2rem; 
  }
  
  .company__txt {
    width: 70%;
    max-width: 100%;
    margin-left: 0;
  }

  .company__content {
    padding: 1.6rem 0;
    position: relative;
    display: flex;
    width: 100%;
    background-color: inherit;
  }

  .company__content::after {
    width: 100%;
  }

}/* PC 1920px */


/* modal trigger */
.company__content .privacy-link {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2.4px;
}

.company__content .privacy-link:hover {
  text-decoration: none;
}

/* modal trigger */
.company__content .privacy-link {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2.4px;
}

.company__content .privacy-link:hover {
  text-decoration: none;
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
}

.modal.is-open {
  display: block;
}

.modal-inner {
  background: #fff;
  width: 90%;
  max-width: 750px;
  max-height: 85vh;
  overflow-y: auto;
  margin: 10vh auto;
  padding: 24px;
  position: relative;
}

.close {
  position: absolute;
  top: 2.4vw;
  right: 2.4vw;
  font-size: 8vw;
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.modal-inner h3 {
  font-size: 3.6vw;
}

.modal-inner h4 {
  font-size: 3vw;
  margin-top: 0.8em;
  margin-bottom: 0.5em;
}

.modal-policy__txt,
.modal-policy__lead,
.signature,
.privacy-modal__definition dt,
.privacy-modal__definition dd {
  font-weight: normal;
}

.modal-policy__txt,
.modal-policy__lead {
  font-size: 2.8vw;
  font-weight: normal;
  margin: 0;
}

.modal-policy__txt + .modal-policy__txt {
  margin-top: 0.8em;
}

.signature {
  font-size: 2.8vw;
  text-align: right;
  margin-top: 1em;
}

.privacy-modal__definition {
  margin-top: 1.5em;
}

.privacy-modal__definition > div {
  display: flex;
  margin-bottom: 1em;
}

.privacy-modal__definition dt {
  width: 40%;
  font-size: 2.8vw;
}

.privacy-modal__definition dd {
  width: 60%;
  margin: 0;
  line-height: 1.5;
  font-size: 2.8vw;
}

.privacy-modal__definition dd br {
  line-height: 1.4em;
}

.modal-logo {
  margin-top: 3em;
}

.modal-logo img {
  width: 40%;
  max-width: 200px;
}

@media screen and (min-width: 1024px) {
  .modal-inner {
    width: 724px;
    padding: 40px;
  }

  .modal-inner h3 {
    font-size: 20px;
  }

  .modal-inner h4 {
    font-size: 16px;
  }

  .modal-policy__txt,
  .modal-policy__lead,
  .signature,
  .privacy-modal__definition dt,
  .privacy-modal__definition dd {
    font-size: 14px;
  }

  .privacy-modal__definition {
    margin-top: 18px;
  }

  .privacy-modal__definition dt {
    width: 20%;
  }

  .privacy-modal__definition dd {
    width: 80%;
  }

  .close {
    top: 18px;
    right: 18px;
    font-size: 56px;
  }
}/* PC 1920px */

/* floating banner */
.floating-contact {
  position: fixed;
  top: 104vw;
  right: 0;
  transform: translateY(-50%);
  background-color: #000;
  border-radius: 0.4rem 0 0 0.4rem;
  color: white;
  padding: 4vw 5vw;
  font-size: 3.5vw;
  width: 7vw;
  height: auto;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 10;
}

.floating-contact img {
  width: 4vw;
  padding-bottom: 3vw;
  vertical-align: baseline;
}

.floating-contact a:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .floating-contact {
    top: 48rem;
    right: 0;
    border-radius: 0.6rem 0 0 0.6rem;
    padding: 2.2rem 1.8rem;
    font-size: 2rem;
    width: 5.7rem;
    height: auto;
  }
  
  .floating-contact img {
    width: 2rem;
    padding-bottom: 1.3rem;
    vertical-align: baseline;
  }
  
}/* PC 1920px */

/* map */
.company__access {
  display: block;
  margin-top: 16vw;
}

.map {
  width: 100%;
  height: 70vw;
}

/* map PC */
@media screen and (min-width: 1024px) {
  .company__access {
    margin-top: 6vw;
  }

  .map {
    height: 52.6rem;
  }
}/* PC 1920px */

/* ==================
Footer
================== */
.footer {
  padding-bottom: 5vw;
  font-weight: normal;
  position: relative;
}

.footer__topic {
  position: absolute;
  top: 60.6vw;
  left: 2.4vw;
}

.footer__topic img {
  width: 14vw;
}

.footer__bg img {
  width: 100%;
}

.footer__address {
  margin: 3.5vw 0 0 2vw;
  font-size: 2.5vw;
  line-height: 1.7;
}

.footer__address span {
  text-decoration: underline;
  text-underline-offset: 0.4vw;
}

.footer__address img {
  width: 2.8vw;
  margin-left: 0.6vw;
  vertical-align: sub;
}

.footer__flex {
  display: flex;
  align-items: flex-end;
}

.footer__flex p {
  font-size: 3vw;
  margin-left: 2vw;
}

.footer__flex img {
  width: 24vw;
  margin-left: 4vw;
}

.footer__pagetop {
  position: absolute;
  background-color: #000;
  padding: 3vw 2.5vw;
  bottom: 23vw;
  right: 2.083vw;
  line-height: 0;
}

.footer__pagetop img {
  width: 4vw;
}

#footer__pagetop:hover {
  opacity: 0.8;
}

.pagetop img {
  width: 5vw;
  padding: 2vw 1vw;
}


@media screen and (min-width: 1024px) {
  .footer {
    padding-bottom: 4vw; 
    font-weight: inherit;
    position: relative;
  }
  
  .footer__topic {
    position: absolute;
    top: 23.8vw;
    left: 2.7vw;
  }
  
  .footer__topic img {
    width: 5vw;
  }
  
  .footer__bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .footer__address {
    margin: 1.5vw 0 0 2.39583vw;
    font-size: 1vw;
    line-height: 1.5;
  }
  
  .footer__address span {
    text-decoration: underline;
    text-underline-offset: 0.2vw; 
  }
  
  .footer__address img {
    width: 0.9vw; 
    margin-left: 0.4vw; 
  }
  
  .footer__flex {
    display: flex;
    align-items: flex-start;
  }
  
  .footer__flex p {
    margin-left: 2.39583vw;
    line-height: 1;
    margin-top: 0.8vw;
  }

  small {
    font-size: 1vw;
  }
  
  .footer__flex img {
    width: 8vw;
    margin-left: 3.2vw;
  }
  
  .footer__pagetop {
    padding: 1.2vw 0.8vw;
    bottom: 13vw;
    right: 2.083vw;
  }
  
  .footer__pagetop img {
    width: 2vw; 
  }
}