@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

nav,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --vw: 1vw;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

section {
  overflow: hidden;
}

img {
  width: 100%;
  vertical-align: middle;
}

.btn {
  position: relative;
  width: 332px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border-radius: 50px;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .btn {
    width: 201px;
    height: 49px;
    font-size: 14px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15%;
  width: 12px;
  height: 12px;
  background: transparent url("../../assets/img/img08.png") center/cover no-repeat;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .btn::after {
    right: 7.5%;
  }
}
.btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.btn:hover::after {
  background-image: url("../../assets/img/img07.png");
}
.btn--bgw {
  background: #fff;
  color: #000;
  transition: 0.3s;
}
.btn--bgw::after {
  position: absolute;
  background-image: url("../../assets/img/img07.png");
}
.btn--bgw:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid white;
}
.btn--bgw:hover::after {
  background-image: url("../../assets/img/img08.png");
}

.ttl-contents {
  text-align: center;
}
.ttl-contents--txt-l {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .ttl-contents--txt-l {
    text-align: center;
  }
}
.ttl-contents__en {
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ff8913;
}
@media only screen and (max-width: 768px) {
  .ttl-contents__en {
    font-size: 16px;
  }
}
.ttl-contents__ja {
  position: relative;
  margin-top: 26px;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 768px) {
  .ttl-contents__ja {
    font-size: 22px;
    margin-top: 14px;
  }
}
.ttl-contents__ja::before {
  content: "";
  position: absolute;
  top: 67px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 83px;
  height: 1px;
  background-color: #222;
}
@media only screen and (max-width: 768px) {
  .ttl-contents__ja::before {
    top: 42px;
    width: 56px;
  }
}
.ttl-contents__ja--b-left::before {
  left: 0;
  transform: translateX(0);
}
@media only screen and (max-width: 768px) {
  .ttl-contents__ja--b-left::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.scroll-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 49px;
  height: 49px;
  background-color: #222;
  cursor: pointer;
  transition: 0.3s;
}
.scroll-btn:hover {
  opacity: 0.7;
}
.scroll-btn::before {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent url("../img/img18.png") center/cover no-repeat;
}

.anchor-underline {
  border-bottom: solid 1px #000;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.sec1 {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 80px;
  z-index: 1000;
  box-shadow: 0 0 3px #ccc;
}
@media only screen and (max-width: 768px) {
  .sec1 {
    height: 50px;
  }
}
.sec1__inner {
  height: 100%;
  padding: 0 0 0 29px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
}
@media only screen and (max-width: 1330px) {
  .sec1__inner {
    padding-left: 22px;
  }
}
.sec1__logo-img {
  display: block;
  max-width: 305px;
}
@media only screen and (max-width: 768px) {
  .sec1__logo-img {
    max-width: 200px;
  }
}
.sec1__nav {
  height: 100%;
  margin-left: auto;
}
@media only screen and (max-width: 960px) {
  .sec1__nav {
    display: none;
  }
}
.sec1__nav-list {
  height: 100%;
  align-items: center;
  gap: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1330px) {
  .sec1__nav-list {
    gap: 10px;
  }
}
.sec1__nav-link {
  display: block;
  font-size: 14px;
  transition: 0.3s;
}
.sec1__nav-link:hover {
  opacity: 0.7;
}
.sec1__contact-list {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .sec1__contact-list {
    margin-right: 50px;
  }
}
.sec1__contact-mail {
  width: 112px;
  height: 100%;
  margin-left: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  background-color: #000;
}
@media only screen and (max-width: 1330px) {
  .sec1__contact-mail {
    width: 90px;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .sec1__contact-mail {
    width: 50px;
  }
}
.sec1__mail-link {
  color: #fff;
  display: block;
}
.sec1__mail-img {
  width: 21px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .sec1__mail-img {
    width: 20px;
  }
}
.sec1__mail-txt {
  font-size: 14px;
}
@media only screen and (max-width: 1330px) {
  .sec1__mail-txt {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .sec1__mail-txt {
    display: none;
  }
}
.sec1__tel-link {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column-reverse;
  align-items: center;
  height: 100%;
}
.sec1__tel-txt {
  font-size: 12px;
}
.sec1__tel-number {
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 1330px) {
  .sec1__tel-number {
    font-size: 16px;
  }
}
.sec1__tel-number::before {
  content: "";
  display: inline-block;
  background-image: url("../img/img03.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 18px;
  height: 18px;
  margin-right: 1px;
}
.sec1__work-time {
  font-size: 8px;
}

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 1000;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
.hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 19px;
  height: 2px;
  background-color: #222222;
  transition: 0.3s;
}
.hamburger__line:nth-of-type(1) {
  top: 36%;
}
.hamburger__line:nth-of-type(2) {
  top: 50%;
}
.hamburger__line:nth-of-type(3) {
  top: 65%;
}
.hamburger__line:nth-of-type(1).is-open {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.hamburger__line:nth-of-type(2).is-open {
  display: none;
}
.hamburger__line:nth-of-type(3).is-open {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.drawer {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100vw;
  height: 100vh;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  background: #000;
  transition: 0.3s;
}
.drawer__list {
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #222222;
}
.drawer__item {
  height: 47px;
  line-height: 47px;
  padding: 0 18px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.drawer__item:hover {
  opacity: 0.7;
}
.drawer__item:not(:first-of-type) {
  border-top: 1px solid #111111;
}
@media screen and (min-width: 401px) {
  .drawer__item br {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .drawer__item:has(br) {
    height: 60px;
    line-height: 2;
  }
}
.drawer__link {
  display: block;
  position: relative;
}
.drawer__link::after {
  position: absolute;
  display: block;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-image: url("../../assets/img/img08.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.drawer__link--ar-n::after {
  display: none;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.mask {
  position: fixed;
  top: 50px;
  width: 100vw;
  height: 100vh;
  background-color: #222222;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.mask.is-open {
  opacity: 1;
  visibility: visible;
}

.sec2 {
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .sec2 {
    margin-top: 50px;
    height: 482px;
  }
}
.sec2__text-container {
  position: absolute;
  top: 50%;
  left: 10.7%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .sec2__text-container {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.sec2__ttl {
  font-size: 40px;
  color: #fff;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 768px) {
  .sec2__ttl {
    font-size: 22px;
    text-align: center;
    white-space: nowrap;
  }
}
.sec2__txt {
  margin-top: 39px;
  font-size: 20px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .sec2__txt {
    margin-top: 11px;
    font-size: 13px;
    text-align: center;
  }
}
.sec2__btn-container {
  margin-top: 39px;
}
@media only screen and (max-width: 768px) {
  .sec2__btn-container {
    margin-top: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.swiper-conteiner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .swiper-conteiner {
    height: 482px;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-conteiner .swiper {
    height: 480px;
  }
}
.swiper-conteiner .swiper img {
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .swiper-conteiner .swiper img.left1 {
    object-position: 75% 50%;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-conteiner .swiper img.left2 {
    object-position: 42% 50%;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-conteiner .swiper img.left3 {
    object-position: 58% 50%;
  }
}

.sec3 {
  position: relative;
  width: 100%;
  padding: 186px 0 108px;
}
@media only screen and (max-width: 768px) {
  .sec3 {
    padding: 60px 0 68px;
    background-color: #F2F2F2;
  }
}
.sec3::before {
  content: "";
  position: absolute;
  top: 0%;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #F2F2F2;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .sec3::before {
    top: 19.5%;
  }
}
.sec3__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 20px;
}
.sec3__head {
  width: 100%;
}
.sec3__body {
  margin-top: 113px;
  padding: 0 35px;
}
@media only screen and (max-width: 768px) {
  .sec3__body {
    margin-top: 71px;
    padding: 0 20px;
  }
}
.sec3__card-list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .sec3__card-list {
    flex-direction: column;
    align-items: center;
    gap: 37px;
  }
}
.sec3__card-item {
  max-width: 32%;
}
@media only screen and (max-width: 768px) {
  .sec3__card-item {
    max-width: 100%;
  }
}
.sec3__img {
  width: 100%;
}
.sec3__txt-conteiner {
  padding: 45px 0 45px 37px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .sec3__txt-conteiner {
    padding: 32px 0 32px 30px;
  }
}
.sec3__card-txt {
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .sec3__card-txt {
    font-size: 14px;
    line-height: 1.7;
  }
}
.sec3__btn-conteiner {
  width: 100%;
  margin-top: 67px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .sec3__btn-conteiner {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sec3 .ttl-contents__ja::before {
    top: 56px;
  }
}

.sec6 {
  width: 100%;
  padding: 135px 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .sec6 {
    padding: 60px 20px 97px;
  }
}
.sec6__inner {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .sec6__inner {
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
}
.sec6__head {
  margin-top: 20px;
  min-width: 154px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .sec6__head {
    margin-top: 0;
    text-align: center;
  }
}
.sec6__head .ttl-contents__en {
  color: #0f3a7c;
}
.sec6__body {
  width: 74.1%;
  padding: 76px 89px 74px;
  margin-left: 13.8%;
  background-color: #F2F2F2;
}
@media only screen and (max-width: 768px) {
  .sec6__body {
    width: 100%;
    padding: 51px 0px 0px;
    margin-left: 0;
    background-color: transparent;
  }
}
.sec6__body dl {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .sec6__body dl {
    flex-direction: column;
  }
}
.sec6__body dl dt {
  width: 110px;
}
.sec6__body dl dd {
  flex: 1;
}
.sec6__news-list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}
.sec6__news-item {
  width: 100%;
  padding: 33px 0 26px;
}
@media only screen and (max-width: 768px) {
  .sec6__news-item {
    padding: 23px 0;
  }
}
.sec6__news-item:not(:first-of-type) {
  border-top: 1px solid #ccc;
}
.sec6__news-link {
  display: block;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.sec6__news-date {
  letter-spacing: 0.06em;
  font-size: 16px;
}
.sec6__news-ttl {
  letter-spacing: 0.06em;
}

.sec4 {
  margin-top: 80px;
  padding: 108px 0;
}
@media only screen and (max-width: 768px) {
  .sec4 {
    margin-top: 50px;
    padding: 54px 0;
    font-size: 14px;
  }
}
.sec4__head {
  width: 100%;
}
.sec4__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 20px;
}

#about .sec4__body {
  width: 100%;
  margin-top: 113px;
  border-collapse: collapse;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  #about .sec4__body {
    margin-top: 71px;
  }
}
#about .sec4__body th {
  padding: 15px 25px;
  border: 1px solid #ddd;
  background-color: #f3f4f6;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
  word-break: keep-all;
}
@media only screen and (max-width: 768px) {
  #about .sec4__body th {
    padding: 7px 12px;
  }
}
#about .sec4__body td {
  padding: 15px 25px;
  border: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  #about .sec4__body td {
    padding: 7px 12px;
  }
}
#about .sec4 .ttl-contents__ja br {
  display: none;
}
@media screen and (max-width: 560px) {
  #about .sec4 .ttl-contents__ja::before {
    top: 64px;
  }
  #about .sec4 .ttl-contents__ja br {
    display: inline;
  }
}

@media only screen and (min-width: 769px) {
  #business .sec4__business-list {
    margin-top: 113px;
  }
}
@media only screen and (max-width: 768px) {
  #business .sec4__business-list {
    margin-top: 71px;
  }
}
#business .sec4__business-item {
  display: flex;
}
@media only screen and (min-width: 769px) {
  #business .sec4__business-item {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  #business .sec4__business-item {
    flex-direction: column;
    row-gap: calc(2.6666666667 * var(--vw));
  }
}
#business .sec4__business-item + div {
  margin-top: calc(6.6666666667 * var(--vw));
}
@media only screen and (max-width: 768px) {
  #business .sec4__business-item + div {
    margin-top: calc(10.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  #business .sec4__business-txt {
    width: 47%;
  }
}
@media only screen and (max-width: 768px) {
  #business .sec4__business-txt {
    width: 100%;
    order: 1;
  }
}
#business .sec4__business-txt h3 {
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 700;
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  #business .sec4__business-txt h3 {
    margin-bottom: calc(2.6666666667 * var(--vw));
    font-size: 18px;
  }
}
@media only screen and (min-width: 769px) {
  #business .sec4__business-img {
    width: 47%;
  }
}
@media only screen and (max-width: 768px) {
  #business .sec4__business-img {
    width: 100%;
  }
}

#access .sec4__access {
  margin-top: 113px;
}
@media only screen and (max-width: 768px) {
  #access .sec4__access {
    margin-top: 71px;
  }
}
#access .sec4__access figure {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  #access .sec4__access figure {
    margin-top: 20px;
  }
}
#access .sec4__access figure iframe {
  display: block;
  width: 100%;
  border: none;
  aspect-ratio: 16/7;
}
@media only screen and (max-width: 768px) {
  #access .sec4__access figure iframe {
    aspect-ratio: 16/9;
  }
}

#inquiry .sec4__inquiry {
  margin: 113px 0 30px;
}
@media only screen and (max-width: 768px) {
  #inquiry .sec4__inquiry {
    margin-top: 71px;
  }
}
#inquiry .sec4__inquiry__box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
@media only screen and (min-width: 769px) {
  #inquiry .sec4__inquiry__box + dl {
    margin-top: -1px;
  }
}
@media only screen and (max-width: 768px) {
  #inquiry .sec4__inquiry__box {
    display: block;
    border: none;
  }
}
#inquiry .sec4__inquiry__item {
  display: flex;
  align-items: center;
  width: 220px;
  padding: 15px 25px;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #f3f4f6;
}
@media only screen and (max-width: 768px) {
  #inquiry .sec4__inquiry__item {
    width: 100%;
    border: 1px solid #ccc;
    padding: 7px 12px;
  }
}
#inquiry .sec4__inquiry__item label {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
#inquiry .sec4__inquiry__item span {
  color: #f00;
}
#inquiry .sec4__inquiry__field {
  width: calc(100% - 220px);
  padding: 15px 25px;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
  #inquiry .sec4__inquiry__field {
    width: 100%;
    margin: -1px 0 20px;
    padding: 7px 12px;
    border: 1px solid #ccc;
  }
}
#inquiry .sec4__inquiry__field input,
#inquiry .sec4__inquiry__field textarea {
  outline: none;
  width: 100%;
  border: 1px solid #d4d4d7;
  padding: 3px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
}
#inquiry .sec4__inquiry__field textarea {
  resize: vertical;
  min-height: 180px;
}
#inquiry .sec4__inquiry__field .error {
  font-weight: 700;
  color: #f00;
}
#inquiry .sec4__inquiry .btn-column {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  margin-top: 30px;
}
#inquiry .sec4__inquiry .btn-column .btn {
  width: 100px;
  padding: 5px;
  border: 3px solid #000;
  border-radius: 5px;
  background-color: #000;
  font-family: inherit;
  font-size: inherit;
  color: #fff;
  transition: background-color 0.3s;
}
#inquiry .sec4__inquiry .btn-column .btn::after {
  display: none;
}
#inquiry .sec4__inquiry .btn-column .btn[type=button] {
  background-color: #fff;
  color: #000;
}
#inquiry .sec4__inquiry .btn-column .btn[type=button]:hover, #inquiry .sec4__inquiry .btn-column .btn[type=button]:active {
  background-color: #000;
  color: #fff;
}
#inquiry .sec4__inquiry .btn-column .btn:hover, #inquiry .sec4__inquiry .btn-column .btn:active {
  background-color: #fff;
  color: #000;
  cursor: pointer;
}
#inquiry .sec4__inquiry > p {
  margin-bottom: 30px;
}
#inquiry .sec4__inquiry > p span {
  color: #f00;
}

.sec7 {
  width: 100%;
  padding: 55px 20px 47px;
  background-color: #222222;
}
@media only screen and (max-width: 768px) {
  .sec7 {
    padding: 51px 20px;
  }
}
.sec7__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .sec7__inner {
    justify-content: center;
  }
}
.sec7__logo {
  display: block;
  max-width: 440px;
}
@media only screen and (max-width: 768px) {
  .sec7__logo {
    max-width: 240px;
  }
}
.sec7__address-list {
  margin-top: 5px;
}
.sec7__address__item {
  font-weight: 400;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .sec7__address__item {
    font-size: 13px;
    text-align: center;
  }
}
.sec7__right-area {
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .sec7__right-area {
    display: none;
  }
}
.sec7__first-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px 28px;
}
@media only screen and (min-width: 769px) {
  .sec7__first-nav-item:first-of-type {
    margin-right: -12px;
  }
}
.sec7__first-nav-link {
  font-size: 14px;
  display: block;
  text-align: right;
}
@media screen and (min-width: 1150px) {
  .sec7__first-nav-link br {
    display: none;
  }
}
.sec7__second-nav {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 15px;
}
.sec7__second-nav-link {
  text-align: right;
  font-size: 12px;
  color: #888888;
  display: block;
}
.sec7__bottom-area {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .sec7__bottom-area {
    margin-top: 65px;
  }
}
.sec7__copy-write {
  display: block;
  text-align: right;
  color: #fff;
  font-size: 11px;
}
@media only screen and (max-width: 768px) {
  .sec7__copy-write {
    text-align: center;
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */