@charset "UTF-8";
.ipad {
  background: var(--black);
}
body {
  min-width: 1300px;
}

/* =====================
  共通
===================== */
a[href^='tel'] {
  pointer-events: none;
}
.sp-menu {
  display: none;
}

/* =====================
  変数
===================== */
:root {
  --inner-width: 1120px;
  --header-height: 100px;
}

/* =====================
  共通
===================== */
.inner {
  width: var(--inner-width);
  margin-inline: auto;
}
.sp {
  display: none;
}

/* =====================
  汎用ボタン
===================== */
.u-anchor {
  display: block;
  width: 72px;
  height: 72px;
  position: relative;
  background-color: rgba(257, 257, 257, 7%);
  border-radius: 50rem;
}
.u-anchor::after {
  content: '';
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid;
  border-color: var(--white) var(--white) transparent transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* =====================
  header
===================== */
.header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  min-width: 1300px;
}
.header-inner {
  height: inherit;
}

/* ==== ロゴ ==== */
.header-inner .logo {
  height: inherit;
  display: grid;
  place-content: center;
  /* width: 344px; */
  background-color: var(--white);
  position: absolute;
  left: 0;
}
.header-inner .logo h1 {
  text-align: center;
}
.header-inner .logo h1 a {
  display: block;
  width: 344px;
  height: 100%;
}
/* ==== nav ==== */
.header .nav {
  position: absolute;
  top: 0;
  right: 0;
  height: inherit;
}
.header .nav ul {
  display: flex;
  height: inherit;
  gap: 54px;
}
.header .nav ul li {
  position: relative;
  text-align: center;
  font-size: 15px;
  height: inherit;
  color: var(--white);
  font-family: var(--mincho);
}
.header .nav ul li a {
  display: grid;
  width: 100%;
  place-content: center;
  height: inherit;
}
.header .nav ul li:last-child {
  background-color: var(--red);
  width: 190px;
}
.header .nav ul li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.header .nav ul li:last-child a::before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/image/common/mail.png');
  width: 20px;
  height: 16px;
}
/* =====================
  小見出し
===================== */
.title-wrapper {
  color: var(--white);
  font-family: var(--mincho);
  display: flex;
  flex-direction: column-reverse;
  margin-left: 30px;
}
.title-wrapper h2 {
  color: var(--white);
  font-size: 17px;
}
.title-wrapper span {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 800;
  position: relative;
  white-space: nowrap;
}
.title-wrapper span::before {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  background: var(--red);
  position: absolute;
  left: -30px;
}

/* =====================
bread
===================== */
.bread {
  color: var(--white);
  tab-size: 15px;
  font-family: var(--mincho);
  padding-inline: 50px;
  position: relative;
  z-index: 2;
}
.bread ul li {
  display: inline;
}
.bread ul li + li::before {
  content: '›';
  display: inline-block;
  margin-inline: 1em;
  margin-inline: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 9px;
  height: 10px;
}

/* =====================
  aside
===================== */
.aside {
  padding-block: 3.3em 1.1em;
  position: relative;
  background-image: url('/assets/image/common/contact-bg.png');
  min-height: 473px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.bg3 {
  pointer-events: none;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  background-color: #f5f2f3;
  width: 100%;
  height: 638px;
  bottom: 0px;
  clip-path: polygon(0 79.7%, 100% 43.2%, 100% 100%, 0% 100%);
}
/* ==== インナー ==== */
.aside .inner {
  position: relative;
  z-index: 2;
}

/* ==== タイトル ==== */
.aside .title-wrap {
  display: flex;
  flex-direction: column-reverse;
  font-family: var(--mincho);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.aside .title-wrap h2 {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 1;
}
.aside .title-wrap span {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
}
.aside .title-wrap .deco {
  font-size: 47px;
  color: var(--red);
}

/* ==== コンテンツ ==== */
.aside .contact-wrapper {
  margin-inline: auto;
  padding: 51px 90px 62px;
}
.aside .contact-wrapper > p {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
}
.aside .contact-wrapper .form-wrapper {
  width: 530px;
  background-color: var(--red);
  color: var(--white);
  padding-block: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-inline: auto;
  margin-top: 36px;
  font-family: var(--mincho);
  font-size: 20px;
}

/* =====================
  footer
===================== */
.footer {
  background: #1a1517;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.footer .inner {
  padding-block: 48px 23px;
  display: flex;
  justify-content: space-between;
  align-items: top;
  position: relative;
  z-index: 2;
}

/* ==== names ==== */
.footer .names .body {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.footer .names .body h1 {
  font-family: var(--mincho);
  font-size: 40px;
  line-height: 1;
}
.footer .names .body p {
  margin-bottom: 0.5em;
  font-size: 14px;
  line-height: 1;
}

/* ==== address ==== */
.footer .address {
  margin-top: 23px;
  font-size: 12px;
  line-height: 1.8;
}

/* ==== menu ==== */
.footer .menu {
  font-size: 15px;
  font-family: var(--mincho);
}
.footer .menu .menu-1 {
  margin-top: 25px;
}
.footer .menu .menu-2 {
  opacity: 0.5;
  margin-top: 38px;
}
.footer .menu ul {
  display: flex;
  justify-content: flex-end;
  gap: 3.3em;
}

/* ==== copy ==== */
.footer .copy {
  text-align: right;
  font-size: 13px;
  opacity: 20%;
  position: relative;
  /* right: 93px; */
  bottom: 42px;
  width: var(--inner-width);
  margin-inline: auto;
  display: block;
  pointer-events: none;
}

/* =====================
  to-top
===================== */
.to-top {
  display: block;
  background-color: var(--grey);
  width: 100%;
  height: 76px;
  position: relative;
}
.to-top::after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-color: var(--white) var(--white) transparent transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
}

/* =====================
  main
===================== */
.main {
  /* min-height: 100vh; */
}

/* =====================
  フォームエラー
===================== */
.form-error {
  color: #d00;
  padding-top: 0.5em;
  font-size: 14px;
}
.form-error:empty {
  display: none;
}
