@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

:root {
  --color-primary: #a6192e;
  --color-text-main: #000000;
  --color-text-light: #555553;
  --color-divider: #c0c0c0;
  --color-bg-menu: #eae8e3;
  --color-bg-beige: #f5f3ef;
  --header-width: 1440px;
  --header-height-total: 95px;
  --header-height-top: 58px;
  --header-height-bot: 37px;
  --padding-x: 40px;
  --font-base: "Noto Sans JP", sans-serif;
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-base);
  color: var(--color-text-main);
  line-height: 1.6;
  background-color: #f4f4f4;
  -webkit-font-smoothing: antialiased;
}

.f-policy--mobile {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.l-header {
  width: var(--header-width);
  max-width: 100%;
  height: var(--header-height-total);
  background-color: #ffffff;
  margin: 0 auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.l-header__inner {
  width: 100%;
  height: 100%;
  padding: 0 var(--padding-x);
  display: flex;
  flex-direction: column;
}

.l-header__top {
  height: var(--header-height-top);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 6px;
}

.p-brand-main {
  transform: translateY(25px);
}

.p-brand-main__tagline,
.p-brand-main__subtext {
  display: none;
}

.p-brand-main__img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: -2px;
}

.p-header-actions {
  display: flex;
  align-items: center;
  padding-bottom: 3px;
}

.p-utility-nav__list {
  display: flex;
  gap: 18px;
  margin-right: 22px;
}

.p-utility-nav__list a {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.p-cta-group {
  display: flex;
  gap: 8px;
  margin-right: 24px;
}

.c-btn-pill {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  height: 26px;
  padding: 0 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.03em;
}

.p-brand-sub {
  margin-right: 12px;
}

.p-brand-sub__img {
  height: 26px;
  width: auto;
  display: block;
}

.c-menu-trigger {
  width: 42px;
  height: 42px;
  background-color: var(--color-bg-menu);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translate(-10px, 5px);
  align-items: center;
  gap: 4.5px;
}

.c-menu-trigger__bar {
  width: 20px;
  height: 1.2px;
  background-color: #444;
  display: block;
}

.l-header__bottom {
  height: var(--header-height-bot);
  border-top: 1px solid transparent;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.p-global-nav__list {
  display: flex;
  align-items: center;
}

.p-global-nav__list li {
  position: relative;
  display: flex;
  align-items: center;
}

.p-global-nav__list li::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: var(--color-divider);
}

.p-global-nav__list li:last-child::after {
  display: none;
}

.p-global-nav__list a {
  font-size: 12px;
  color: var(--color-text-main);
  font-weight: 500;
  padding: 0 26px;
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-global-nav__list a:hover {
  color: var(--color-primary);
}

.p-mobile-toolbar {
  display: none;
}

.l-hero {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.l-hero__inner {
  margin-top: 116px;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.l-hero__text {
  width: 520px;
  flex-shrink: 0;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  min-height: 370px;
}

.l-hero__title {
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: Noto Sans JP, sans-serif;
}

.l-hero__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  font-family: Noto Sans JP, sans-serif;
}

.l-hero__image {
  flex: 1;
  height: 370px;
}

.l-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.l-hero__image--desktop {
  display: block;
}

.l-hero__image--mobile {
  display: none;
}

.sec-boshu-m {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 10px 80px;
  background-color: #ffffff;
}

.sec-boshu {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 10px 80px;
  background-color: #ffffff;
}

.sec-boshu__header {
  text-align: center;
  margin-bottom: 50px;
}

.sec-boshu__title {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}

.sec-boshu__subtitle {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 50px;
}

.sec-boshu__content {
  width: 100%;
}

.boshu-item {
  display: flex;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-divider);
}


.boshu-item__label {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.boshu-item__bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.boshu-item__text {
  font-size: 20px;
  font-weight: 700;
  font-style: bold;
  margin-top: -7px;
  color: var(--color-text-main);
}

.boshu-item__value {
  flex: 1;
  padding-left: 110px;
  /* margin-bottom: 40px; */
}

.boshu-item__value p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--color-text-main);
}

.boshu-item__value p.mt {
  margin-top: 16px;
}

.sec-entry {
  background-color: var(--color-bg-beige);
  padding: 60px 20px 80px;
}

.sec-entry__header {
  text-align: center;
  margin-bottom: 20px;
}

.sec-entry__title {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}

.sec-entry__subtitle {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 500;
}

.sec-entry__desc {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 32px;
  color: var(--color-text-main);
  margin-bottom: 40px;
  margin-top: 80px;
}

.fileupload-desc {
  font-size: 16px;
  line-height: 32px;
  margin-top: 17px;
}

.flex-columm {
  flex-direction: column;
}

.sec-entry__form-wrap {
  max-width: 1120px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 80px 100px;
}

.entry-form {
  width: 100%;
}

.form-row {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}

.form-row:first-child {
  padding-top: 0;
}

.form-row--file-info {
  flex-direction: column;
  border-bottom: none;
  padding-bottom: 10px;
}

.form-label {
  width: 230px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 500;
  padding-top: 8px;
  line-height: 32px;
}

.form-label .required {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  margin-left: 6px;
}

.fileupload-desc {
  font-size: 16px;
  line-height: 32px;
  margin-top: 17px;
}

.flex-columm {
  flex-direction: column;
}

.form-field {
  flex: 1;
  margin-left: 90px;
}

.form-input {
  width: 100%;
  max-width: 900px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0 12px;
  font-size: 14px;
  font-family: var(--font-base);
  background-color: #ffffff;
}

.form-textarea {
  width: 100%;
  max-width: 900px;
  height: 180px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px;
  font-size: 14px;
  font-family: var(--font-base);
  resize: vertical;
  background-color: #ffffff;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

.field-sublabel {
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 20px;
}

#st {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 20px;
  display: flex;
  margin-left: -90px;
}

#st2 {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: 0px;
  margin-left: -90px;
}

#file-selected {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 0px;
}

.field-note {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  margin-top: 6px;
  margin-bottom: 16px;
}

.field-note:last-child {
  margin-bottom: 0;
}

.fileselect {
  margin-bottom: 24px;
}

.form-row--file-info .form-field p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-main);
}

.file-upload {
  display: inline-block;
  cursor: pointer;
}

.file-upload input[type="file"] {
  display: none;
}

.file-btn {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.form-submit {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 344px;
  height: 72px;
  background-color: #9c0020;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 100px;
  padding: 0;
  /* margin-left: 450px; */
}

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

.submit-btn__icon {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  color: #9c0020;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

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

.submit-arrow {
  font-size: 16px;
}

.l-footer {
  width: 100%;
  background-color: #e9e4dc;
}

.footer-deco-line {
  display: none;
}

.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.f-col--brand {
  width: 200px;
  flex-shrink: 0;
}

.f-brand-logo__img {
  width: 130px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.f-brand-text {
  font-size: 10px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

.f-brand-text p {
  margin: 0 0 2px 0;
}

.f-brand-text p:first-child {
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 6px;
}

.f-brand-license {
  display: none;
}

.f-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.f-social__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.f-social__icon--ig {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #4f5bd5);
}

.f-social__icon--fb {
  background-color: #1877f2;
}

.f-social__icon--yt {
  background-color: #ff0000;
}

.f-col--nav {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex: 1;
  justify-content: flex-start;
  padding-left: 20px;
}

.f-nav-group {
  min-width: 120px;
}

.f-nav-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-nav-group ul li {
  margin-bottom: 12px;
}

.f-nav-group ul li:last-child {
  margin-bottom: 0;
}

.f-nav-group a {
  text-decoration: none;
  color: #333;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  display: block;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.f-nav-group a:hover {
  opacity: 0.6;
}

.f-col--cta {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.f-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  width: 100%;
}

.f-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  color: #9c0020;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #d4cfc4;
  transition: opacity 0.3s;
}

.f-btn:hover {
  opacity: 0.8;
}

.f-btn--logo {
  background-color: #ffffff;
  height: 44px;
}

.f-btn--logo img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.f-policy {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

.f-policy li {
  margin-bottom: 5px;
}

.f-policy li:last-child {
  margin-bottom: 0;
}

.f-policy li a {
  font-size: 9px;
  color: #666;
  text-decoration: none;
  display: block;
}

.f-policy li a:hover {
  text-decoration: underline;
}

.l-footer__bottom {
  width: 100%;
  background-color: #333333;
  padding: 12px 0;
  text-align: center;
}

.l-footer__bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 10px;
}

@media (max-width: 768px) {
  .l-footer {
    background-color: #e9e4dc;
    position: relative;
  }

  .l-footer__inner {
    max-width: 420px;
    margin: 0 auto;
    padding: 40px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .f-col--brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .f-brand-logo__img {
    height: 60px;
    width: auto;
    margin-left: 10px;
    margin-bottom: 16px;
    display: block;
  }

  .f-brand-text {
    margin-bottom: -10px;
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }

  .f-brand-text p {
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
    color: #333333;
    text-align: center;
  }

  .f-brand-text p + p {
    margin-top: 4px;
  }

  .f-brand-license {
    display: none;
  }

  .f-col--nav,
  .f-col--cta {
    display: none;
  }

  .f-social {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .f-social__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
  }

  .l-footer__bottom {
    width: 100%;
    background-color: #333333;
    color: #ffffff;
    font-size: 11px;
    padding: 14px 0;
    text-align: center;
    margin-top: 32px;
  }

  .f-backtotop {
    position: absolute;
    right: 16px;
    bottom: 90px;
    width: 48px;
    height: 48px;
    background-color: #333333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    cursor: pointer;
  }

  .f-backtotop__arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #ffffff;
  }
  .f-policy--mobile {
    display: block;
    margin-top: 18px;
    padding: 0;
    list-style: none;
    text-align: center;
    width: 100%;
  }

  .f-policy--mobile li {
    margin: 0;
    text-align: center;
  }

  .f-policy--mobile li + li {
    margin-top: 8px;
  }

  .f-policy--mobile li a {
    font-size: 15px;
    color: #888888;
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height-total: auto;
  }

  .l-header {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 0;
  }

  .l-header__inner {
    padding: 0 15px;
    height: auto;
  }

  .l-header__top {
    height: auto;
    padding: 12px 0 10px;
    align-items: center;
  }

  .p-brand-main {
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .p-brand-main__tagline {
    display: block;
    font-size: 10px;
    color: #888;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
  }

  .p-brand-main__img {
    height: 28px;
    margin: 0;
  }

  .p-brand-main__subtext {
    display: block;
    font-size: 10px;
    color: #333;
    font-weight: 700;
    margin-top: 3px;
  }

  .p-utility-nav,
  .p-cta-group,
  .p-brand-sub,
  .l-header__bottom {
    display: none;
  }

  .p-header-actions {
    padding-bottom: 0;
    margin-left: auto;
    align-self: center;
  }

  .c-menu-trigger {
    transform: none;
    width: 40px;
    height: 40px;
    background-color: transparent;
    gap: 6px;
  }

  .c-menu-trigger__bar {
    width: 28px;
    height: 1.5px;
    background-color: #555;
  }

  .p-mobile-toolbar {
    display: flex;
    width: 100%;
    background-color: #e9e4dc;
    border-top: 1px solid #e0e0e0;
  }

  .p-mobile-toolbar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 0;
    color: #666;
    font-size: 11px;
    line-height: 1.4;
    position: relative;
    font-weight: 500;
  }

  .p-mobile-toolbar__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #ccc;
  }

  .p-mobile-toolbar__item span {
    display: block;
  }

 .l-hero {
  margin: 0;
}

.l-hero__inner {
  flex-direction: column;
  position: relative;
}

.l-hero__text {
  width: 70%;
  min-height: auto;
  padding: 20px 20px 20px 20px;
  position: relative;
  margin-top: -50px;
  margin-left: 0;
  z-index: 2;
  order: 2;
}

.l-hero__text::before {
  display: none;
}

.l-hero__title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: Noto Sans JP, sans-serif;
}

.l-hero__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  font-family: Noto Sans JP, sans-serif;
}

.l-hero__image {
  width: 100%;
  height: auto;
  flex: none;
  order: 1;
}

.l-hero__image img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  display: block;
}

.l-hero__image--desktop {
  display: none;
}

.l-hero__image--mobile {
  display: block;
}
  .sec-boshu {
    padding: 40px 15px 60px;
    background-color: #ffffff;
  }

  .sec-boshu__title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
  }

  .boshu-item {
    flex-direction: column;
    padding: 20px 0;
  }

  .boshu-item__label {
    width: 100%;
    margin-bottom: 12px;
  }

  .boshu-item__value {
    padding-left: 24px;
  }

  .boshu-item__value p {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    color: var(--color-text-main);
  }

.boshu-item__value {
  flex: 1;
  padding-left: 40px;
}

  .sec-entry {
    padding: 40px 15px 60px;
  }

  .sec-entry__title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
  }

  .sec-entry__desc {
    font-size: 16px;
    line-height: 32px;
    text-align: left;
    margin: 0 auto 0px;
  }

  .sec-entry__form-wrap {
    padding: 25px 20px;
    border-radius: 6px;
    margin: 40px 0 0;
  }

  #st {
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 20px;
    margin-left: -1px;
  }

  #st2 {
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    color: var(--color-text-main);
    margin-bottom: 0px;
    margin-left: -1px;
  }

  

  .form-row {
    flex-direction: column;
    padding: 16px 0;
  }

  .form-row {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

  .form-label {
    width: 100%;
    padding-top: 0;
    margin-bottom: 10px;
  }

  .form-input,
  .form-textarea {
    max-width: 100%;
  }

.form-input {
  height: 65px;
}

.form-field {
  flex: 1;
  margin-left: -5px;
}

  .form-textarea {
    height: 360px;
  }

  .submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 284px;
    height: 55px;
    background-color: #9c0020;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 40px;
    padding: 0;
    /* margin-left: 70px; */
    /* margin-bottom: 140px; */
  }

  .submit-btn__icon {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    color: #9c0020;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
  }
}


.file-input {
  display: none;
}

.file-label {
  padding: 8px 16px;
  background-color: #9c0020;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 15px;
}


/*# PC�p���j���[�@�S�� */

.pc-nav-w {
  width: 100%;
background-color: #fff;
position:fixed;
z-index: 1000;
top: 0;
}

.pc-nav {
  width: 100%;
height: 116px;
background-color: #fff;
position:relative;
}

@media screen and (max-width:1300px) {

.pc-nav {
height: 95px;
}

}

@media screen and (max-width:1100px) {

.pc-nav {
height: 70px;
}

}

/*# PC�p���j���[�A�ׂ����ݒ� */

.pc-nav01 {
font-size: 0;
position:absolute;
left: 35px;
top: 50%;
transform: translateY(-50%);
-webkit- transform: translateY(-50%);
}

.pc-nav01 h1.p-h-logo1 {
  width: 136px;
display: inline-block;
vertical-align:middle;
}

@media screen and (max-width:1200px) {

.pc-nav01 {
left: 20px;
}

.pc-nav01 h1.p-h-logo1 {
  width: 100px;
}

}

@media screen and (max-width:992px) {

.pc-nav01 {
left: 20px;
top: 12px;
transform: none;
-webkit- transform: none;
}

}

ul.pc-nav02 {
position:absolute;
top: 25px;
right: 600px;
}

ul.pc-nav02 li {
display: inline-block;
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.4rem;
letter-spacing: 1px;
font-weight: 300;
}

ul.pc-nav02 li a {
padding: 10px 20px;
}

ul.pc-nav02 li a span {
position:relative;
}

ul.pc-nav03 {
position:absolute;
top: 70px;
right: 10px;
}

ul.pc-nav03 li {
display: inline-block;
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.6rem;
letter-spacing: 2px;
font-weight: 400;
}

ul.pc-nav03 li a {
padding: 10px 30px;
}

ul.pc-nav03 li a span {
position:relative;
}

.pc-nav04 {
position:absolute;
top: 20px;
right: 260px;
}

.pc-nav05 {
position:absolute;
top: 22px;
right: 107px;
}

@media screen and (max-width:1500px) {

ul.pc-nav02 {
top: 25px;
right: 600px;
}

ul.pc-nav02 li {
font-size: 1.3rem;
}

ul.pc-nav02 li a {
padding: 5px 10px;
}

ul.pc-nav03 {
top: 70px;
right: 10px;
}

ul.pc-nav03 li {
font-size: 1.4rem;
}

ul.pc-nav03 li a {
padding: 8px 20px;
}

}

@media screen and (max-width:1300px) {

ul.pc-nav02 {
top: 20px;
right: 550px;
}

ul.pc-nav02 li a {
padding: 5px 7px;
}

ul.pc-nav03 {
top: 58px;
right: 0px;
}

ul.pc-nav03 li a {
padding: 8px 15px;
}

.pc-nav04 {
top:13px;
right: 230px;
}

.pc-nav05 {
top: 17px;
right: 80px;
}

}

@media screen and (max-width:1100px) {

ul.pc-nav02 {
display: none;
}

ul.pc-nav03 {
display: none;
}

.pc-nav04 {
display: none;
}

.pc-nav05 {
display: none;
}

}

.pn-mod {
  width: 180px;
height: 30px;
display: inline-block;
position:relative;
transition: .7s;
background-color: #A6192E;
border-radius: 15px;
}

.pn-on {
  width: 140px;
height: 30px;
display: inline-block;
position:relative;
transition: .7s;
background-color: #A6192E;
border-radius: 15px;
margin-left: 10px;
}

.pn-mod .img,
.pn-on .img {
  /* �A�C�R���𔒂� */
  filter: invert(100%) sepia(0%) saturate(7492%) hue-rotate(120deg) brightness(107%) contrast(101%);
  width: 18px;
position:absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
-webkit- transform: translateY(-50%);
fill: #fff;
}

.pn-mod span,
.pn-on span {
position:absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
-webkit- transform: translateY(-50%);
color: #ffffff;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 700;
font-size: 1.2rem;
line-height: 1.2;
letter-spacing: 1px;
}

@media screen and (max-width:1300px) {

.pn-mod {
  width: 170px;
height: 25px;
}

.pn-on {
  width: 130px;
height: 25px;
margin-top: 5px;
}

.pn-mod .img,
.pn-on .img {
  width: 16px;
right: 8px;
}

.pn-mod span,
.pn-on span {
font-size: 1.1rem;
}

}

.pn-ref {
width: 117px;
text-align: center;
position:relative;
font-size: 0;
}

.pn-ref img {
display: block;
margin: 0px;
padding: 0px;
}

.pn-ref span {
display: inline-block;
line-height: 1;
font-size: 1.2rem;
color: #e5002c;
border : solid 1px #e5002c;
padding: 3px 13px;
border-radius: 10px;
margin-top: 10px;
}

@media screen and (max-width:1300px) {

.pn-ref {
width: 130px;
}

.pn-ref span {
font-size: 1.1rem;
padding: 3px 8px;
}

}

/* ���X�|���V�u���ߕs�v */

/* �}�E�X�X�N���[���ŉ����o�� */
ul.pc-nav02 li a span:after,
ul.pc-nav03 li a span:after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #999999;
bottom: -3px;               /*�A���_�[���C����a�^�O�̉��[���猻���*/
transform: scale(0, 1);     /*�A���_�[���C���̏k�ڔ䗦�B�z�o�[�O��x������0*/
transform-origin: left top; /*�ό`�i�A���_�[���C���̐L���j�̌��_��a�^�O�i�e���j���[�j�̍��[*/
transition: transform 0.3s; /*�ό`�̎���*/
}

ul.pc-nav03 li + li {
border-left-width: 1px;
border-left-style: solid;
border-left-color: #E8E6DF;
}

ul.pc-nav02 a:link,
ul.pc-nav02 a:visited,
ul.pc-nav02 a:active,
ul.pc-nav03 a:link,
ul.pc-nav03 a:visited,
ul.pc-nav03 a:active {color: #595959; text-decoration: none;} 

ul.pc-nav02 a:hover,
ul.pc-nav03 a:hover {}

ul.pc-nav02 li a span:hover:after,
ul.pc-nav03 li a span:hover:after {
transform: scale(1, 1);     /*�z�o�[��Ax��������1�i���Βl�j�L��*/
}

.pn-mod a,
.pn-on a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* �K�v�ł���΃����N�v�f�̏d�Ȃ�̃x�[�X�����w�� */
}

.pn-mod:hover,
.pn-on:hover {
  opacity:0.7;
}

.pn-mod:hover span,
.pn-on:hover span {
color: #fff;
}

.pn-mod:hover .img,
.pn-on:hover .img {
  /* �A�C�R����Ԃ�
  filter: invert(14%) sepia(65%) saturate(3684%) hue-rotate(337deg) brightness(100%) contrast(96%); */
}

.pn-ref a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* �K�v�ł���΃����N�v�f�̏d�Ȃ�̃x�[�X�����w�� */
}

.pn-ref:hover span {
color: #fff;
background-color: #e5002c;
}


/*# �X�}�z�A�����j���[ */

.sp-nav {
display: none;
}

@media screen and (max-width:1100px) {

.sp-nav {
display: block;
  width: 100%;
font-size: 0;
}

.sp-nav01 a {
  width: 25%;
display: inline-block;
vertical-align:middle;
text-align: center;
padding: 10px 2px;
position:relative;
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.3rem;
line-height: 1.3;
font-weight: 300;
letter-spacing: 1px;
color: #595959;
background-color: #E8E6DF;
}

.sp-nav01 a:before {
content: "";
position:absolute;
top: 15px;
bottom: 15px;
left: 0px;
border-left-width: 1px;
border-left-style: solid;
border-left-color: #b2b2b2;
}

.sp-nav01 a:first-child:before {
border-left-width: 0px;
border-left-style: none;
}


.sp-nav01 a:link,
.sp-nav01 a:visited,
.sp-nav01 a:active {
color: #595959;
text-decoration: none;
} 

.sp-nav01 a:hover {opacity:0.7;}

}

@media screen and (max-width:768px) {

.sp-nav01 a {
padding: 10px 1px;
font-size: 1.2rem;
}

}

@media screen and (max-width:568px) {

.sp-nav01 a {
font-size: 1rem;
}

}




/*# �n���o�[�K�[�N���b�N��̃��j���[ */

body.is-fixed .nav--typeA {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
}

.fullscreenmenu{
  display: block;
margin-top: 0px;
margin-bottom: 0px;
}

.nav-erea{
position:relative;
  width: 100%;
background-color: #fff;
vertical-align:top;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #000000;
font-size: 0;
padding: 70px 70px;
}

.nav1{
position:relative;
  width: 70%;
display: inline-block;
vertical-align:top;
}

.nav2{
position:relative;
  width: 28%;
display: inline-block;
vertical-align:top;
margin-left: 2%;
}

@media screen and (max-width:1500px) {

.nav-erea{
padding: 30px 50px;
}

.nav1{
  width: 78%;
}

.nav2{
  width: 20%;
}

}

@media screen and (max-width:1100px) {

.nav-erea{
padding: 20px 30px 110px;
height:100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}

.nav1{
  width: 100%;
height: auto;
}

.nav2{
  width: 60%;
height: auto;
margin-top: 20px;
margin-bottom: 100px;
margin-left: 0;
}

}

@media screen and (max-width:768px) {

.nav2{
  width: 100%;
margin-top: 20px;
margin-bottom: 50px;
}

}

ul.hm-main1{
  width: 23%;
position:relative;
display: inline-block;
vertical-align:top;
}

ul.hm-main1 + ul.hm-main1 {
margin-left: 50px;
}

ul.hm-main1 li{
color: #000000;
font-size: 1.5rem;
line-height: 2.5;
position:relative;
letter-spacing: 1px;
font-weight: 300;
}

ul.hm-main1 li:after {
content: "";
display: inline-block;
width: 40px;
height: 6px;
background: url(../img/arrow-3.svg) no-repeat;
background-size: contain;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
-webkit- transform: translateY(-50%);
}

ul.hm-main1 li.logo {
padding-top: 0px;
padding-bottom: 20px;
}

ul.hm-main1 li .hm-sub1 li:after,
ul.hm-main1 li.logo:after,
ul.hm-main1 li.sub:after {
background: url(../img/non.png) no-repeat;
width: 0px;
height: 0px;
}

ul.hm-main1 li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* �K�v�ł���΃����N�v�f�̏d�Ȃ�̃x�[�X�����w�� */
}

ul.hm-main1 li a:hover {
  filter:alpha(opacity=70);/* IE 6,7*/
  -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
  -moz-opacity:0.7;/* FF , Netscape */
  -khtml-opacity: 0.7;/* Safari 1.x */
  opacity:0.7;
  zoom:1;/*IE*/
}

ul.hm-main1 li .hm-sub1 li{
color: #666666;
font-size: 1.4rem;
line-height: 2;
position:relative;
letter-spacing: 1px;
font-weight: 300;
}

.nav1 .l1,
.nav1 .l2{
display: inline-block;
  width: 1px;
height: 300px;
background-color: #000000;
margin-right: 50px;
margin-left: 50px;
}

@media screen and (max-width:1500px) {

ul.hm-main1{
  width: 23%;
}

ul.hm-main1 + ul.hm-main1 {
margin-left: 30px;
}

ul.hm-main1 li{
font-size: 1.4rem;
}

ul.hm-main1 li:after {
width: 27px;
height: 4px;
right: 0;
top: 50%;
transform: translateY(-50%);
-webkit- transform: translateY(-50%);
}

.nav1 .l1,
.nav1 .l2{
  width: 1px;
height: 300px;
background-color: #000000;
margin-right: 30px;
margin-left: 30px;
}

}

@media screen and (max-width:1100px) {

ul.hm-main1{
  width: 28%;
}

ul.hm-main1 li.logo {
  width: 80%;
}



.nav1 .l1{
  width: 1px;
height: 300px;
background-color: #000000;
margin-right: 30px;
margin-left: 30px;
}

.nav1 .l2{
display: none;
}

}

@media screen and (max-width:768px) {

ul.hm-main1{
  width: 100%;
}

ul.hm-main1 + ul.hm-main1 {
margin-top: 0px;
margin-left: 0px;
}

ul.hm-main1 li{
font-size: 1.5rem;
line-height: 1.2;
position:relative;
padding-top: 15px;
padding-bottom: 15px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #000000;
}

ul.hm-main1 li .hm-sub1 li,
ul.hm-main1 li.logo,
ul.hm-main1 li.sub {
border-bottom-width: 0;
border-bottom-style: none;
border-bottom-color: #000000;
}

ul.hm-main1 li.sub {
display: none;
}

ul.hm-main1 li.logo {
padding-top: 15px;
padding-bottom: 0px;
}

ul.hm-main1 li:after {
content: "";
display: inline-block;
width: 40px;
height: 6px;
background: url(../img/arrow-3.svg) no-repeat;
background-size: contain;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
-webkit- transform: translateY(-50%);
}

ul.hm-main1 li .hm-sub1 li{
color: #666666;
font-weight: 400;
font-size: 1.4rem;
line-height: 2;
position:relative;
}

ul.hm-main1 li.logo {
  width: 30%;
}

.nav1 .l1{
  width: 100%;
height: 1px;
background-color: #ffffff;
margin-top: 30px;
margin-right: 0px;
margin-left: 0px;
}

}

.hm-model-t{
font-size: 1.5rem;
letter-spacing: 1px;
font-weight: 300;
}

ul.hm-model1{
  width: 100%;
position:relative;
display: block;
vertical-align:top;
margin-top: 10px;
}

ul.hm-model1 li{
  width: 28%;
position:relative;
display: inline-block;
vertical-align:top;
}

ul.hm-model1 li:nth-child(2),
ul.hm-model1 li:nth-child(3){
margin-left: 8%;
}

ul.hm-model1 li:nth-child(4),
ul.hm-model1 li:nth-child(7){
margin-top: 10px;
}

ul.hm-model1 li:nth-child(5),
ul.hm-model1 li:nth-child(6),
ul.hm-model1 li:nth-child(8),
ul.hm-model1 li:nth-child(9){
margin-top: 10px;
margin-left: 8%;
}

ul.hm-model1 img.ph{
border-radius: 10px;
}

ul.hm-model1 img.logo{
width: 80%;
margin-right: auto;
margin-left: auto;
}

ul.hm-model1 li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* �K�v�ł���΃����N�v�f�̏d�Ȃ�̃x�[�X�����w�� */
}
ul.hm-model1 li:hover {
  filter:alpha(opacity=70);/* IE 6,7*/
  -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
  -moz-opacity:0.7;/* FF , Netscape */
  -khtml-opacity: 0.7;/* Safari 1.x */
  opacity:0.7;
  zoom:1;/*IE*/
}

@media screen and (max-width:1500px) {

ul.hm-model1 li{
  width: 32%;
position:relative;
display: inline-block;
vertical-align:top;
}

ul.hm-model1 li:nth-child(2),
ul.hm-model1 li:nth-child(3){
margin-left: 2%;
}

ul.hm-model1 li:nth-child(4),
ul.hm-model1 li:nth-child(7){
margin-top: 10px;
}

ul.hm-model1 li:nth-child(5),
ul.hm-model1 li:nth-child(6),
ul.hm-model1 li:nth-child(8),
ul.hm-model1 li:nth-child(9){
margin-top: 10px;
margin-left: 2%;
}

}

@media screen and (max-width:992px) {



}


/* �n���o�[�K�[�̃{�^�������ƊJ�A�j���[�V����*/

.navimenu,
  .navimenu span {
  display: inline-block;
  -webkit-transition:all .4s;
  transition: all .4s;
  }

  .navimenu {
    position: fixed;
    top: 12px;
    right:  30px;
    width: 43px;
    height: 43px;
    z-index: 15000;
cursor: pointer;
background-color: #E8E6DF;
border-radius: 5px;
  }

  .navimenu span {
  position: absolute;
  left: 8px;
  right: 8px;
  width: 27px;
  height: 1px;
  background-color: #595959;
  z-index: 1500;
  }

  .navimenu span:nth-of-type(1) {
  top: 12px;
  }

  .navimenu span:nth-of-type(2) {
  top: 21px;
  }

  .navimenu span:nth-of-type(3) {
  top: 30px;
  }

  .navimenu.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #595959;
  top: 21px;
  }

  .navimenu.active span:nth-of-type(2) {
  opacity: 0;
  background-color: #fff;
  }

  .navimenu.active span:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: #595959;
  top: 21px;
  }

@media screen and (max-width:1300px) {

  .navimenu {
    top: 11px;
    right:  10px;
    width: 43px;
    height: 43px;
  }

}

@media screen and (max-width:1100px) {

  .navimenu {
    width: 70px;
    height: 70px;
    top: 0px;
    right:  0px;
background-color: #fff;
  }

  .navimenu span {
  left: 21px;
  right: 21px;
  width: 28px;
  }

  .navimenu span:nth-of-type(1) {
  top: 25px;
  }

  .navimenu span:nth-of-type(2) {
  top: 34px;
  }

  .navimenu span:nth-of-type(3) {
  top: 43px;
  }

  .navimenu.active span:nth-of-type(1) {
  top: 34px;
  }

  .navimenu.active span:nth-of-type(3) {
  top: 34px;
  }

}

/* �n���o�[�K�[�N���b�N��A�J���铮�� */

  #nav {
  position: fixed;
  top: 116px;
  right: 0;
  z-index: 14000;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: rgba(0,0,0,0.5);
  transition: all 0.3s ease-in-out;
  visibility:hidden;
  }

  #nav.active{
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  }


@media screen and (max-width:1300px) {

  #nav {
  top: 95px;
  }

}

@media screen and (max-width:1100px) {

  #nav {
  top: 70px;
  }

}




.foo-wrap {
width: 100%;
background-color: #E8E6DF;
padding-top: 70px !important;
padding-bottom: 70px !important;
font-size: 0;
}

.foo-wrap2 {
width: 100%;
background-color: #333333;
padding-top: 5px !important;
padding-bottom: 5px !important;
font-size: 0;
}

@media screen and (max-width:1500px) {

.foo-wrap {
padding-top: 50px !important;
padding-bottom: 50px !important;
}

}

@media screen and (max-width:992px) {

.foo-wrap {
padding-top: 30px !important;
padding-bottom: 10px !important;
}

}

.foo-inner {
width: 1300px;
margin: 0 auto;
font-size: 0;
}

@media screen and (max-width:1350px) {

.foo-inner {
width: 100%;
padding-right: 20px;
padding-left: 20px;
}

}

.foo01 {
display: inline-block;
width: 24%;
vertical-align:top;
font-size: 0;
}

.foo02 {
display: inline-block;
width: 18%;
vertical-align:top;
font-size: 0;
}

.foo02 div {
display: block;
margin-bottom: 15px;
}

.foo03 {
display: inline-block;
width: 18%;
vertical-align:top;
font-size: 0;
}

.foo03 div {
display: block;
margin-bottom: 15px;
}

.foo04 {
display: inline-block;
width: 18%;
vertical-align:top;
font-size: 0;
}

.foo04 div {
display: block;
margin-bottom: 15px;
}

.foo05 {
display: inline-block;
width: 22%;
vertical-align:top;
font-size: 0;
}

.foo05 div {
display: block;
margin-bottom: 10px;
}

.foo05 div.mb20 {
margin-bottom: 20px;
}

@media screen and (max-width:1500px) {

.foo01 {
width: 28%;
}

.foo02 {
width: 16%;
}

.foo03 {
width: 16%;
}

.foo04 {
width: 18%;
}

.foo05 {
width: 22%;
}

.foo05 div {
display: block;
margin-bottom: 10px;
}

.foo05 div.mb20 {
margin-bottom: 20px;
}

}

@media screen and (max-width:992px) {

.foo01 {
width: 100%;
display: block;
text-align: center;
}

.foo02 {
display: none;
}

.foo03 {
display: none;
}

.foo04 {
display: none;
}	

.foo05 {
width: 100%;
display: block;
text-align: center;
}

.foo05 div {
width: 100%;
display: block;
margin-bottom: 10px;
text-align: center;
}

}

a.foo-bt1 {
display: inline-block;
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.4rem;
vertical-align:middle;
line-height: 1;
letter-spacing: 2px;
font-weight: 300;
color: #999999;
}

a.foo-bt1 i {
font-size: 1.4rem;
margin-left: 7px;
color: #999999;
vertical-align:middle;
}

a.foo-bt1 .foo-arrow {
display: none;
}

@media screen and (max-width:1500px) {

a.foo-bt1 {
font-size: 1.2rem;
letter-spacing: 1px;
}

a.foo-bt1 i {
font-size: 1.2rem;
margin-left: 7px;
}

}

@media screen and (max-width:992px) {



}

a.foo-bt2 {
position:relative;
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.2rem;
vertical-align:middle;
line-height: 1.5;
letter-spacing: 1px;
font-weight: 300;
padding-left: 20px;
color: #999999;
background-image: linear-gradient(90deg, #999, #999); /* 線の色 */
background-position: left bottom; /* 線の起点を左・下に設定 */
background-repeat: no-repeat;
background-size: 0 1px; /* 線の横幅を0、縦幅を2pxに */
padding-bottom: 2px; /* 下線を下にズラす */
transition: background-size .6s; /* 変形をアニメーション化 */
}

a.foo-bt2:hover {
background-size: 100% 1px; /* 線の横幅を100%にする */
}

a.foo-bt2:before {
content:"";
position: absolute;
top:9px;
left:0;
width:12px;
height: 1px;
background:#999999;
}

@media screen and (max-width:1500px) {

a.foo-bt2 {
font-size: 1.1rem;
padding-left: 20px;
}

}

a.foo-bt1:link,
a.foo-bt1:visited,
a.foo-bt1:active,
a.foo-bt2:link,
a.foo-bt2:visited,
a.foo-bt2:active{color: #595959; text-decoration: none;} 

a.foo-bt1:hover,
a.foo-bt2:hover {}

a.foo-bt1:hover i {
margin-left: 20px;
transition: .7s;
}

a.foo-bt3 {
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.1rem;
vertical-align:middle;
line-height: 1.5;
letter-spacing: 1px;
font-weight: 300;
position:relative;
color: #999999;
display: inline;
background-image: linear-gradient(90deg, #999, #999); /* 線の色 */
background-position: left bottom; /* 線の起点を左・下に設定 */
background-repeat: no-repeat;
background-size: 0 1px; /* 線の横幅を0、縦幅を2pxに */
padding-bottom: 2px; /* 下線を下にズラす */
transition: background-size .6s; /* 変形をアニメーション化 */
}

a.foo-bt3:hover {
background-size: 100% 1px; /* 線の横幅を100%にする */
}

@media screen and (max-width:992px) {

a.foo-bt3 {
font-size: 1rem;
}	

}

a.foo-bt4 {
width: 200px;
height: 50px;
background-color: #fff;
display: block;
position:relative;
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.6rem;
color:var(--thema-color01);
text-align: center;
line-height: 50px;
}

a.foo-bt4 img {
width: 150px;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
}

a.foo-bt4:hover {
  outline: 2px solid rgb(166, 25, 46);/*outlineでドットの線を追加*/
}

@media screen and (max-width:1500px) {

a.foo-bt4 {
width: 170px;
height: 45px;
font-size: 1.4rem;
line-height: 45px;
}

a.foo-bt4 img {
width: 100px;
}

}

@media screen and (max-width:992px) {

a.foo-bt4 {
display: none;
}

}

.foo-copy {
display: block;
font-size: 1.2rem;
letter-spacing: 1px;
color: #fff;
text-align: center;
}

@media screen and (max-width:1500px) {



}

@media screen and (max-width:992px) {



}

@media screen and (max-width:768px) {



}



.foo-logo {
width: 150px;
display: block;
vertical-align:middle;
}

@media screen and (max-width:1500px) {

.foo-logo {
width: 130px;
}

}

@media screen and (max-width:992px) {

.foo-logo {
width: 100px;
display: block;
margin-right: auto;
margin-left: auto;
margin-bottom: 10px;
}

}

.foo-logo-s {
display: block;
vertical-align:middle;
}

.foo-logo-s p {
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.1rem !important;
letter-spacing: 1px !important;
font-weight: 300 !important;
line-height: 1.8 !important;
}

.foo-logo-s p.com {
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.3rem !important;
letter-spacing: 1px !important;
font-weight: 500 !important;
margin-top: 10px;
}

.foo-logo-s p.com2 {
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.0rem !important;
letter-spacing: 1px !important;
font-weight: 300 !important;
margin-top: 10px;
}

.foo-sns {
display: block;
vertical-align:middle;
margin-top: 30px;
}

@media screen and (max-width:1200px) {



}

@media screen and (max-width:992px) {

.foo-sns {
display: block;
vertical-align:middle;
margin-top: 15px;
}

}

.snsicon {
width: 25px;
display: inline-block;
}

.snsicon + .snsicon {
margin-left: 15px;
}

/* common */


/*# �m�g */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,700&display=swap&subset=japanese');

/*# �A�C�R���t�H���g */
@import url(https://use.fontawesome.com/releases/v5.3.1/css/all.css);

/*# �^�C�g���p */
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');





/*# ���Z�b�g */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* 1.5 ���X�g�}�[�J�[��
-----------------------------------------*/
ol, ul {
	list-style: none;
}
/* 2�D�X�N���[���o�[����ɕ\��
-----------------------------------------*/
html{overflow-y:scroll;}

/* 6�D�摜�]��������
-----------------------------------------*/
img {
	font-size:0;
	line-height:0;	
} 

img{vertical-align:bottom;}

iframe {
  display: block;
  vertical-align: bottom;
}

/*# common */
/*# ����padding���ӂ�h�~���� */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

html {
	background-color: #ffffff;
  	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
  	max-width: 100%;
  	-webkit-text-size-adjust: 100%;
  	-ms-text-size-adjust: 100%;
  	text-size-adjust: 100%;
  	font-size: 62.5%;
  	overflow-x: hidden;
}

body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	color: #000000;
  	font-size: 1.3rem;
	line-height: 1.7;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6, p, td, th, a {
	font-family: 'Noto Sans JP', sans-serif;
  	font-weight: 400;
  	line-height: 1.7;
�@�@�@overflow-wrap: break-word;
�@�@�@word-wrap: break-word;
}

img {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

* {box-sizing:border-box}

/*# ���X�N���[���o�[�\���֎~ */
@media screen and (max-width:768px) {

html {
	overflow: auto;
}
body {
	overflow: hidden;
	min-width: 100%;
}

}

h1, h2, h3, h4, h5, h6, p, td, th, span {
  line-height: 1.3;
}


.cen {
	text-align: center;
}

.lef {
	text-align: left;
}

a {
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: none;
}


/* Top�֖߂�{�^�� */
#page-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 35px;
  height: 35px;
	z-index: 10000;
}

.arrow{
  position: relative;
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  width: 35px;
  height: 35px;
}

.arrow::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 35px;
  height: 35px;
  background: #000;
}

.arrow::after{
  content: '';
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -4px;
}

.arrow a{
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
}

.arrow:hover::before{
	background-color: #222222;
}

.arrow:hover::after{
  border-top: solid 1px #B4B4B4;
  border-left: solid 1px #B4B4B4;
}

.arrow a:hover{

}

@media screen and (max-width:1000px) {
	
#page-top {
  right: 10px;
}
	
}









