@charset "utf-8";
/* CSS Document */

/* ===============================
	header
 =============================== */
#header {
  position: sticky;
  top: 0;
  max-width: 1400px;
  margin: auto;
  z-index: 999;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}
.header_logo {
  width: 333px;
  margin-bottom: auto;
}
.header_logo img {
  width: auto;
}
.header-nav .nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 0;
}
.header-nav .nav_toggle {
  display: none;
}
.header-nav .sns_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header-nav .sns_menu li a {
  padding: 10px;
}
.header-nav .nav_menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 6px;
  margin-left: 10px;
}
.header-nav .nav_list {
  position: relative;
}
.header-nav .nav_list:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 15px;
  background: var(--C-black);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.header-nav .nav_list a {
  font-size: 15px;
  letter-spacing: 0.1em;
  display: block;
  padding: 10px 20px;
  transition: 0.4s;
}
.header-nav .nav_list a:hover {
  opacity: 1;
}
.header-nav .nav_list a::after {
  content: '';
  width: calc(100% - (20px * 2));
  height: 2px;
  background: var(--C-red);
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.4s;
  opacity: 0;
}
.header-nav .nav_list a:hover::after {
  opacity: 1;
}
.contact_btn {
  color: var(--C-white);
  background: var(--C-blue);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-align: center;
}
#header .nav_contact {
  font-size: 18px;
  font-weight: 700;
  color: var(--C-white);
  width: 138px;
  height: 32px;
  background: var(--C-red);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 12px;
  margin-right: 0;
  padding-bottom: 2px;
}
#header .nav_contact:hover {
  opacity: 1;
  background: var(--C-black);
}
.header_bg {
  display: none;
}
@media screen and (max-width: 640px) {
  #header {
    height: 13.125vw;
  }
  .header_inner {
    height: 100%;
    padding: 2.5vw 16.875vw 0 1.875vw;
  }
  .header_logo {
    height: 100%;
    width: auto;
  }
  .header-nav {
    margin-top: auto;
    margin-bottom: 0;
  }
  .header-nav .nav_toggle {
    display: block;
    position: fixed;
    top: 2.5vw;
    right: 4.0625vw;
    width: 10.625vw;
    height: 10.625vw;
  }
  .header-nav .nav_toggle span {
    background: var(--C-black);
    height: 2px;
    position: absolute;
    right: 0;
    margin: auto;
    transition: .5s;
  }
  .header-nav .nav_toggle span:first-child {
    width: 76.47058823529412%;
    top: 50%;
    bottom: 50%;
    left: 0;
  }
  .header-nav .nav_toggle span:last-child {
    width: 44.11764705882353%;
    bottom: 2.8125vw;
    right: 1.25vw;
  }
  .header-nav .nav_menu {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -44vw;
    background: var(--C-white);
    width: 44vw;
    margin: auto;
    padding: 22vw 4.0625vw 10vw;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transform: translateX(50vw);
    transition: .5s;
  }
  .header-nav .nav_list {
    text-align: center;
    width: 100%;
    margin: auto;
  }
  .header-nav .nav_list a {
    font-size: 4vw;
    display: inline-block;
    padding: 4vw;
  }
  .header-nav .sns_menu li a {
    display: block;
    padding: 2.1875vw;
  }
  .header-nav .sns_menu li a img {
    width: 4vw;
  }
  .header-nav .nav_list:not(:last-child)::after {
    content: none;
  }
  #header .nav_contact {
    display: none;
  }
  .header_bg {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    cursor: pointer;
    z-index: -2;
  }
  /* ナビオープン時 */
  .nav-open .header-nav .nav_menu {
    visibility: visible;
    opacity: 1;
    right: 0;
    transform: translateX(0);
  }
  .nav-open .header_contact {
    position: fixed;
  }
  .nav-open .header-nav .nav_toggle span:first-child {
    width: 70%;
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
  }
  .nav-open .header-nav .nav_toggle span:last-child {
    width: 70%;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .nav-open .header_bg {
    opacity: .2;
    visibility: visible;
  }
}

/* ===============================
	footer_contact
 =============================== */
#footer_contact {
  text-align: center;
  background: #FCFCFD;
  background: linear-gradient(135deg, rgba(252, 252, 253, 1) 0%, rgba(235, 235, 236, 1) 100%);
  padding-top: 96px;
  padding-bottom: 138px;
}
#footer_contact h2.title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
#footer_contact h3 {
  font-size: 15px;
  letter-spacing: 0.05em;
}
#footer_contact .btn_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 84px;
  margin-top: 50px;
}
#footer_contact .btn_area .btn {
  font-size: 38px;
  width: 458px;
  height: 146px;
  flex-direction: column;
  padding: 10px 34px 10px 18px;
}
#footer_contact .btn_area .btn:hover {
  color: var(--C-white);
  background: var(--C-red);
}
#footer_contact .btn_area .btn::after {
  width: 20px;
  height: 20px;
  right: 32px;
}
#footer_contact .btn_area .tel .btn p {
  font-size: 19px;
  margin-bottom: -4px;
}
#footer_contact .btn_area .tel .btn span {
  font-size: 46px;
  position: relative;
  padding-left: 34px;
}
#footer_contact .btn_area .tel .btn span::before {
  content: '';
  width: 28px;
  height: 29px;
  background: url(../img/home/icon_tel.svg) center no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  bottom: -16px;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 640px) {
  #footer_contact {
    padding-top: 15.625vw;
    padding-bottom: 15.9375vw;
  }
  #footer_contact h2.title {
    font-size: 6.25vw;
    margin-bottom: 3.125vw;
  }
  #footer_contact h3 {
    font-size: 3.125vw;
  }
  #footer_contact .btn_area {
    flex-direction: column;
    gap: 6.5625vw;
    margin-top: 8.75vw;
  }
  #footer_contact .btn_area .btn {
    font-size: 6.40625vw;
    width: 77.1875vw;
    height: 24.6875vw;
    padding: 2vw 10vw 2vw 9vw;
  }
  #footer_contact .btn_area .btn::after {
    width: 3.4375vw;
    height: 3.4375vw;
    right: 5.3125vw;
  }
  #footer_contact .btn_area .tel .btn p {
    font-size: 3.125vw;
    margin-bottom: -1vw;
  }
  #footer_contact .btn_area .tel .btn span {
    font-size: 7.8125vw;
    padding-left: 5.625vw;
  }
  #footer_contact .btn_area .tel .btn span::before {
    width: 4.84375vw;
    height: 5vw;
    bottom: -3vw;
  }
}

/* ===============================
	footer_company
 =============================== */
#footer_company {
  text-align: center;
}
#footer_company .wrap {
  display: flex;
  flex-direction: row;
}
#footer_company .txt_area {
  width: 50%;
  padding-top: 200px;
  padding-bottom: 138px;
}
#footer_company .txt_area strong {
  font-size: 25px;
  line-height: 1.2;
  position: relative;
  display: block;
  margin-bottom: 20px;
}
#footer_company .txt_area strong::before {
  content: '';
  width: 62px;
  height: 62px;
  background: url(../img/common/icon_mark.svg) center no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -78px;
  left: 0;
  right: 0;
  margin: auto;
}
#footer_company .txt_area  dl {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#footer_company .txt_area  dl * {
  font-size: 15px;
}
#footer_company .txt_area dt::after {
  content: '／';
}
#footer_company .img_area {
  width: 50%;
}
#footer_company .img_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#footer_company iframe {
  width: 100%;
  height: 516px;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  #footer_company .wrap {
    flex-direction: column;
  }
  #footer_company .txt_area {
    width: 100%;
    padding-top: 24.6875vw;
    padding-bottom: 16.875vw;
  }
  #footer_company .txt_area strong {
    font-size: 4.6875vw;
    letter-spacing: 0.05em;
    margin-bottom: 3.4375vw;
  }
  #footer_company .txt_area strong::before {
    width: 11.875vw;
    height: 11.875vw;
    top: -14.6875vw;
  }
  #footer_company .txt_area  dl * {
    font-size: 2.8125vw;
  }
  #footer_company .img_area {
    width: 100%;
  }
  #footer_company iframe {
    height: 87.1875vw;
  }
}

/* ===============================
	footer_menu
 =============================== */
#footer_menu {
  background: var(--C-black);
  padding-top: 52px;
  padding-bottom: 32px;
}
#footer_menu * {
  color: var(--C-white);
}
#footer_menu .wrap {
  width: calc(1338px + (30px * 2));
  max-width: 100%;
}
.footer_con {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_con .nav_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px 0;
}
.footer_con .footer_nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer_con .footer_nav li {
  display: flex;
  align-items: center;
}
.footer_con .footer_nav li:not(:last-child)::after {
  content: '｜';
}
.footer_con .footer_nav li a {
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 4px 2ch;
}
.footer_con .footer_nav li:hover a {
  opacity: 1;
  color: var(--C-red) !important;
}
.footer_con .footer_yoyaku {
  font-size: 17px;
  font-weight: 700;
  color: var(--C-black) !important;
  background: var(--C-white);
  border-radius: 100px;
  width: 138px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_con .footer_yoyaku:hover {
  opacity: 1;
  color: var(--C-white);
  background: var(--C-red);
}
.footer_con .sns_menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}
.footer_con .sns_menu li a {
  padding: 10px;
  display: block;
}
.footer_copyright {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: right;
  margin-top: 8px;
}
@media screen and (max-width: 640px) {
  #footer_menu {
    padding-top: 52px;
    padding-bottom: 32px;
  }
  .footer_con {
    flex-direction: column;
    gap: 5.625vw 0;
  }
  .footer_con .nav_area {
    justify-content: flex-start;
    gap: 4.6875vw 0;
  }
  .footer_con .footer_nav {
    justify-content: flex-start;
  }
  .footer_con .footer_nav li:nth-child(4)::after {
    content: none;
  }
  .footer_con .footer_nav li a {
    font-size: 3.125vw;
    padding: 1.875vw 1.3ch;
  }
  .footer_con .footer_yoyaku {
    font-size: 3.28125vw;
    width: 27.1875vw;
    height: 6.25vw;
  }
  .footer_con .sns_menu {
    gap: 7.5vw;
    width: auto;
    margin-left: 16.25vw;
  }
  .footer_con .sns_menu li a {
    padding: 1.5vw;
  }
  .footer_copyright {
    font-size: 2.34375vw;
    text-align: left;
    margin-top: 6.5625vw;
  }
}