@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Shippori+Mincho:wght@500;700&display=swap');

/*===================================================

// HIGOLD 20230614
// style.css

===================================================*/
:root {
  --black: #363636;
  --gray: #777;
  --orange: #d3832f;
  --beige: #F5E8DD;
  --light-beige: #FAF3EE;
  --base-font: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --base-font-bold: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --mincho: 'Shippori Mincho', serif;
  --en: 'Montserrat', sans-serif;
}

/*===================================================

 reset

===================================================*/
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button {
  margin: 0;
  border: none;
  outline: none;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  box-shadow: none;
}

button {
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

html {
  box-sizing: border-box;
}

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

img,
video {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
}

header,
footer,
main {
  display: block;
}

/*===================================================

 base

===================================================*/
body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--black);
  font-family: var(--base-font);
}

@media print,
screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

a {
  color: var(--orange);
  text-underline-offset: 3px;
}

@media print,
screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

em {
  font-style: normal;
}

/*===================================================

 layout

===================================================*/
.l-wrapper {
  position: relative;
}

/*===================================================

 animation

===================================================*/
@media print,
screen and (min-width: 768px) {
  .anime-bottom {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .anime-bottom.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .anime-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .anime-left.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }

  .anime--right {
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .anime-right.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }

  .anime-fadein {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
  }

  .anime-fadein.visible {
    opacity: 1;
    visibility: visible;
  }
}

@media print {

  .anime-bottom,
  .anime-top,
  .anime-right,
  .anime-left {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .anime-fadein {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/*===================================================

 header

===================================================*/
.l-header {
  position: relative;
  z-index: 20;
}

.l-header__inner {
  padding: 24px 4vw;
  height: 180px;
  display: flex;
  align-items: center;
}

.header-logo {
  width: 180px;
}

.header-logo>a {
  display: flex;
}

@media print,
screen and (max-width: 767px) {
  .l-header {}

  .l-header__inner {
    padding: 16px 24px;
    height: 72px;
    display: flex;
    align-items: center;
  }

  .header-logo {
    width: 100px;
  }
}

/* nav
------------------- */
@media print,
screen and (min-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.nav-global {
  margin-left: auto;
  padding-left: 4vw;
}

.nav-global__list {
  display: flex;
  align-items: center;
  gap: 16px 4vw;
}

.nav-global__list>li {}

.nav-global__list>li>a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  padding: 20px 0;
  position: relative;
}

.nav-global__list>li>a:before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--black);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width .2s;
}

.nav-global__list>li.is-current>a:before,
.nav-global__list>li>a:hover:before {
  width: 100%;
}

.nav-global__btn-close {
  display: none;
}

@media print,
screen and (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #212121;
  }

  .nav-menu span {
    display: block;
    background: #fff;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-menu span:nth-child(1) {
    top: 13px;
  }

  .nav-menu span:nth-child(2) {
    top: 21px;
  }

  .nav-menu span:nth-child(3) {
    top: 29px;
  }

  .nav-global {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nav-global[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }

  .nav-global[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    z-index: 30;
    transition: all .4s;
  }

  .nav-global__btn-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    height: 72px;
  }

  .nav-global__btn-close span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -14px;
  }

  .nav-global__btn-close span:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav-global__btn-close span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .nav-global__logo {
    width: 100px;
    margin-bottom: 40px;
    /*opacity: .6;*/
  }

  .nav-global__list {
    display: block;
    text-align: center;
  }

  .nav-global__list>li {
    transition: all .5s ease;
  }

  .nav-global__list>li {
    opacity: 0;
    transform: translateY(1em);
  }

  .nav-global[aria-hidden="false"] .nav-global__list>li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-global[aria-hidden="false"] .nav-global__list>li:nth-child(1) {
    transition-delay: .4s;
  }

  .nav-global[aria-hidden="false"] .nav-global__list>li:nth-child(2) {
    transition-delay: .5s;
  }

  .nav-global[aria-hidden="false"] .nav-global__list>li:nth-child(3) {
    transition-delay: .6s;
  }

  .nav-global[aria-hidden="false"] .nav-global__list>li:nth-child(4) {
    transition-delay: .7s;
  }

  .nav-global[aria-hidden="false"] .nav-global__list>li:nth-child(5) {
    transition-delay: .8s;
  }

  .nav-global[aria-hidden="false"] .nav-global__list>li:nth-child(6) {
    transition-delay: .9s;
  }

  .nav-global__list>li>a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
  }

  .nav-global__list>li>a:before {
    display: none;
  }
}

/*===================================================

 footer

===================================================*/
.l-footer {
  background: var(--black);
  color: #fff;
  font-size: 14px;
  padding: 80px 4vw;
}

.l-footer a {
  color: #fff;
}

.l-footer__inner {
  text-align: center;
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
}

.footer-address {
  margin-top: 40px;
}

.footer-menu {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 3em;
}

.footer-menu>li>a {
  text-decoration: none;
}

.footer-copyright {
  margin-top: 80px;
  font-size: 12px;
  letter-spacing: .1em;
}

@media print,
screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 16px;
    font-size: 12px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-address {
    margin-top: 32px;
  }

  .footer-menu {
    margin-top: 24px;
    gap: 8px 16px;
  }

  .footer-copyright {
    margin-top: 40px;
    font-size: 11px;
  }
}

/*===================================================

 local-header

===================================================*/
.local-header {
  padding: 0 4vw;
}

.local-header__inner {
  max-height: calc(100vh - 180px);
  height: 560px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.local-header__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .2);
}

.local-header__content {
  color: #fff;
  position: relative;
  text-align: center;
  line-height: 1;
}

.local-header__en {
  font-size: 60px;
  font-family: var(--en);
  letter-spacing: .2em;
}

.local-header__ttl {
  margin-top: 1em;
  font-size: 24px;
  font-family: var(--mincho);
  font-weight: 700;
  letter-spacing: .2em;
}

.local-header__logo {
  position: absolute;
  bottom: -130px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.local-header__logo-box {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 100px;
}

.local-header__logo-box img {
  max-width: 160px;
  width: 100%;
}

@media print,
screen and (max-width: 767px) {
  .local-header {
    padding: 0 16px;
  }

  .local-header__inner {
    max-height: calc(100vh - 72px);
    min-height: 240px;
    height: 50vh;
  }

  .local-header__en {
    font-size: 30px;
  }

  .local-header__ttl {
    font-size: 18px;
    margin-top: .5em;
  }

  .local-header__logo {
    bottom: -60px;
    gap: 16px;
  }

  .local-header__logo-box {
    width: 120px;
    height: 120px;
    padding: 20px 20px 50px;
  }

  .local-header__logo-box img {
    max-width: 90px;
  }
}

/*===================================================

 common parts

===================================================*/
.section {
  padding: 100px 4vw;
  position: relative;
}

.section .container {
  max-width: 1080px;
  margin: 0 auto;
}

.section .container-s {
  max-width: 880px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.section-heading__ttl {
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: .15em;
  padding-bottom: 40px;
  position: relative;
}

.section-heading__ttl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--orange);
}

@media print,
screen and (max-width: 767px) {
  .section {
    padding: 40px 16px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading__ttl {
    font-size: 20px;
    padding-bottom: 20px;
  }

  .section-heading__ttl::after {
    width: 32px;
  }
}

.txt-message {
  text-align: center;
  font-family: var(--mincho);
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 2.8;
  margin-bottom: 80px;
}

@media print,
screen and (max-width: 767px) {
  .txt-message {
    text-align: left;
    letter-spacing: .1em;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 40px;
  }
}

.table-info {
  width: 100%;
  font-size: 16px;
  border-top: 1px solid var(--black);
}

.table-info tbody th {
  border-bottom: 1px solid var(--black);
  padding: 1.5em 1em;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}

.table-info tbody td {
  border-bottom: 1px solid var(--black);
  padding: 1.5em 0;
  vertical-align: top;
}

@media print,
screen and (max-width: 767px) {
  .table-info {
    font-size: 14px;
  }

  .table-info tbody th {
    padding: 16px 16px 16px 0;
    width: 7em;
    font-size: 12px;
  }

  .table-info tbody td {
    padding: 16px 0;
  }
}

.btn-wrap {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: center;
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  background: #fff;
  border: 1px solid var(--black);
  color: var(--black);
  font-family: var(--base-font-bold);
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  min-width: 400px;
  padding: 20px 80px;
  position: relative;
  transition: background .4s ease-in-out;
}

.btn-primary span {
  position: relative;
}

.btn-primary::before {
  content: "";
  display: block;
  background: var(--black);
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  transition: height .2s ease-in-out;
}

.btn-primary::after {
  content: "";
  display: block;
  background: url(../img/icon-arrow_black.svg) no-repeat center;
  background-size: contain;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  transition: right .4s ease-in-out;
}

@media print,
screen and (min-width: 768px) {
  .btn-primary:hover span {
    color: #fff;
  }

  .btn-primary:hover::before {
    height: 100%;
  }

  .btn-primary:hover::after {
    right: 24px;
    background: url(../img/icon-arrow_white.svg) no-repeat center;
    background-size: contain;
  }
}

@media print,
screen and (max-width: 767px) {
  .btn-wrap {
    margin-top: 40px;
    gap: 16px;
  }

  .btn-primary {
    min-height: 60px;
    font-size: 14px;
    line-height: 1.4;
    min-width: initial;
    padding: 16px 40px 16px 24px;
  }

  .btn-primary::after {
    width: 20px;
    height: 20px;
    right: 12px;
  }
}

.link-btn {
  display: inline-block;
  padding: 16px 40px 16px 24px;
  border-bottom: 2px solid var(--orange);
  position: relative;
}

.link-btn::after {
  content: "";
  display: block;
  background: url(../img/icon-arrow_orange.svg) no-repeat center;
  background-size: contain;
  width: 28px;
  height: 28px;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  transition: right .4s ease-in-out;
}

.link-btn img {
  display: block;
}

@media print,
screen and (min-width: 768px) {
  .link-btn:hover::after {
    right: -16px;
  }
}

@media print,
screen and (max-width: 767px) {
  .link-btn {
    padding: 10px 24px 10px 16px;
  }

  .link-btn::after {
    width: 20px;
    height: 20px;
    right: -8px;
  }
}

.bnr-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4vw;
}

.bnr-card {
  width: calc((100% - 4.1vw) / 2);
}

.bnr-card__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.bnr-card__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: transform .4s;
}

.bnr-card__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: .4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.bnr-card--petfood .bnr-card__link::before {
  background: url(../img/bnr-pet.jpg) no-repeat center;
  background-size: cover;
}

.bnr-card--restaurant .bnr-card__link::before {
  background: url(../img/bnr-restaurant.jpg) no-repeat center;
  background-size: cover;
}

.bnr-card__content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.bnr-card__ttl {
  font-size: 36px;
  font-family: var(--mincho);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .2em;
}

.bnr-card__btn {
  margin: 32px auto 0;
  border: 2px solid #fff;
  padding: 16px;
  width: 240px;
  font-size: 15px;
  line-height: 1;
  font-family: var(--mincho);
  font-weight: 700;
  letter-spacing: .2em;
  position: relative;
  overflow: hidden;
}

.bnr-card__btn::before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  transition: height .2s ease-in-out;
}

.bnr-card__btn span {
  position: relative;
}

@media print,
screen and (min-width: 768px) {
  .bnr-card__link:hover::before {
    transform: scale(1.08);
  }

  .bnr-card__link:hover .bnr-card__btn {
    color: var(--black);
  }

  .bnr-card__link:hover .bnr-card__btn::before {
    height: 100%;
  }
}

@media print,
screen and (max-width: 767px) {
  .bnr-card-list {
    justify-content: center;
    gap: 24px;
  }

  .bnr-card {
    width: 85%;
  }

  .bnr-card__content {
    width: 100%;
    padding: 24px;
  }

  .bnr-card__ttl {
    font-size: 20px;
  }

  .bnr-card__btn {
    margin-top: 16px;
    display: inline-block;
    padding: 10px 16px;
    width: auto;
    font-size: 12px;
  }
}

.txt-copy {
  font-size: 36px;
  font-family: var(--mincho);
  font-weight: 700;
  letter-spacing: .05em;
}

.txt-copy-2 {
  font-size: 30px;
  font-family: var(--mincho);
  font-weight: 700;
  letter-spacing: .05em;
}

.txt-mincho {
  font-family: var(--mincho);
  font-weight: 500;
  line-height: 2;
}

@media print,
screen and (max-width: 767px) {
  .txt-copy {
    font-size: 20px;
  }

  .txt-copy-2 {
    font-size: 18px;
  }
}

/*===================================================

 TOP トップページ

===================================================*/
.top-wrap {
  background: var(--black);
}

.top-wrap .nav-global__list>li>a {
  color: #fff;
}

.top-wrap .nav-global__list>li>a:before {
  background: #fff;
}

.top-mv {
  padding: 0 4vw 4vw;
}

.top-mv__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.top-mv__copy {
  position: absolute;
  top: 50%;
  left: 4vw;
  color: #fff;
  transform: translateY(-50%);
  font-size: 40px;
  font-family: var(--mincho);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .4em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.top-mv__slider {
  width: 64%;
}

.top-mv__slide {
  overflow: hidden;
}

.swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

@media print,
screen and (max-width: 767px) {
  .top-mv {
    padding: 0 0 100px 16px;
  }

  .top-mv__inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
  }

  .top-mv__copy {
    font-size: 20px;
    top: auto;
    bottom: -60px;
    transform: none;
  }

  .top-mv__slider {
    width: 85vw;
  }

  .top-mv__slide img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

/* business */
.top-business {
  position: relative;
  padding: 0 4vw 180px;
  margin-top: 40px;
}

.top-business::before {
  content: "";
  display: block;
  background: var(--beige);
  width: 100%;
  height: 65%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.top-business::after {
  content: "";
  display: block;
  width: 1px;
  height: 120px;
  background: var(--black);
  position: absolute;
  bottom: calc(100% + 40px);
  left: 50%;
}

@media print,
screen and (max-width: 767px) {
  .top-business {
    padding: 0 16px 80px;
    margin-top: 40px;
  }

  .top-business::after {
    height: 60px;
    bottom: calc(100% + 30px);
  }
}

/*===================================================

 PET FOOD ペットフード事業

===================================================*/
.pet-about {
  margin: 60px 0 0;
  padding: 100px 4vw 160px;
  display: flex;
  position: relative;
  background: var(--light-beige);
}

.pet-about__img {
  width: 50%;
  position: relative;
}

.pet-about__desc {
  width: 50%;
  padding-left: 4vw;
  position: relative;
}

.pet-img-wrap {
  display: flex;
  gap: 24px 4vw;
}

.pet-img-wrap .pet-img {
  flex: 1;
  aspect-ratio: 2/3;
}

.pet-img-wrap .pet-img:nth-child(1) {
  position: relative;
  top: -160px;
}

.pet-img-wrap .pet-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media print,
screen and (max-width: 767px) {
  .page--pet-food .local-header {
    margin-bottom: 10px;
  }

  .pet-about {
    margin: 40px 0 0;
    padding: 40px 16px 80px;
    display: block;
  }

  .pet-about__img {
    width: auto;
  }

  .pet-about__desc {
    width: auto;
    padding: 40px 0 0;
  }

  .pet-img-wrap {
    gap: 16px;
  }

  .pet-img-wrap .pet-img:nth-child(1) {
    top: -80px;
  }

  .action-area {
    text-align: center;
  }
}

/*===================================================

 RESTAURANT 飲食事業

===================================================*/
/*.page--restaurant .local-header {
  margin-bottom: 10px;
}*/
.restaurant-img-wrap {
  display: flex;
  gap: 24px 2vw;
  margin-top: 120px;
}

.restaurant-img-wrap .restaurant-img {
  flex: 1;
  aspect-ratio: 2/3;
}

.restaurant-img-wrap .restaurant-img:nth-child(even) {
  position: relative;
  top: -40px;
}

.restaurant-img-wrap .restaurant-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media print,
screen and (max-width: 767px) {
  .restaurant-img-wrap {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
  }

  .restaurant-img-wrap .restaurant-img {
    flex: auto;
    width: calc((100% - 8px) / 2);
  }

  .restaurant-img-wrap .restaurant-img:nth-child(even) {
    top: 0;
  }
}

/*===================================================

 ABOUT 企業情報

===================================================*/
.access-map {
  margin-top: 1em;
}

@media print,
screen and (max-width: 767px) {
  .access-map iframe {
    height: 200px;
  }
}

/*===================================================

 snippet

===================================================*/
.is-hide {
  display: none !important;
}

/*
 font
---------------------------------------------------*/
.en {
  font-family: var(--en);
}

/*
 PC/SP出し分け
---------------------------------------------------*/
@media print,
screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}

@media print,
screen and (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

/*
 フォント太さ weight
---------------------------------------------------*/
.fw--normal {
  font-weight: 400 !important;
}

.fw--bold,
b {
  font-weight: bold !important;
}

/*
 寄せ aligh
---------------------------------------------------*/
.align--c {
  text-align: center !important;
}

.align--l {
  text-align: left !important;
}

.align--r {
  text-align: right !important;
}

@media print,
screen and (min-width: 768px) {
  .pc-align--c {
    text-align: center !important;
  }

  .pc-align--l {
    text-align: left !important;
  }

  .pc-align--r {
    text-align: right !important;
  }
}

@media print,
screen and (max-width: 767px) {
  .sp-align--c {
    text-align: center !important;
  }

  .sp-align--l {
    text-align: left !important;
  }

  .sp-align--r {
    text-align: right !important;
  }
}

/*
 margin
---------------------------------------------------*/
.mt--0 {
  margin-top: 0 !important;
}

.mt--0-5em {
  margin-top: .5em !important;
}

.mt--1em {
  margin-top: 1em !important;
}

.mt--1-5em {
  margin-top: 1.5em !important;
}

.mt--2em {
  margin-top: 2em !important;
}

.mt--2-5em {
  margin-top: 2.5em !important;
}

.mt--3em {
  margin-top: 3em !important;
}

.mt--4em {
  margin-top: 4em !important;
}

@media print,
screen and (max-width: 767px) {
  .sp-mt--0 {
    margin-top: 0 !important;
  }

  .sp-mt--0-5em {
    margin-top: .5em !important;
  }

  .sp-mt--1em {
    margin-top: 1em !important;
  }

  .sp-mt--1-5em {
    margin-top: 1.5em !important;
  }

  .sp-mt--2em {
    margin-top: 2em !important;
  }

  .sp-mt--2-5em {
    margin-top: 2.5em !important;
  }

  .sp-mt--3em {
    margin-top: 3em !important;
  }

  .sp-mt--4em {
    margin-top: 4em !important;
  }
}

@media print,
screen and (min-width: 768px) {
  .pc-mt--0 {
    margin-top: 0 !important;
  }

  .pc-mt--0-5em {
    margin-top: .5em !important;
  }

  .pc-mt--1em {
    margin-top: 1em !important;
  }

  .pc-mt--1-5em {
    margin-top: 1.5em !important;
  }

  .pc-mt--2em {
    margin-top: 2em !important;
  }

  .pc-mt--2-5em {
    margin-top: 2.5em !important;
  }

  .pc-mt--3em {
    margin-top: 3em !important;
  }

  .pc-mt--4em {
    margin-top: 4em !important;
  }
}

.ml--0-5em {
  margin-left: 0.5em !important;
}

.ml--1em {
  margin-left: 1em !important;
}

.ml--1-5em {
  margin-left: 1.5em !important;
}

.ml--2em {
  margin-left: 2em !important;
}

.ml--2-5em {
  margin-left: 2.5em !important;
}

.ml--3em {
  margin-left: 3em !important;
}

@media print,
screen and (max-width: 767px) {
  .sp-ml--0-5em {
    margin-left: 0.5em !important;
  }

  .sp-ml--1em {
    margin-left: 1em !important;
  }

  .sp-ml--1-5em {
    margin-left: 1.5em !important;
  }

  .sp-ml--2em {
    margin-left: 2em !important;
  }

  .sp-ml--2-5em {
    margin-left: 2.5em !important;
  }

  .sp-ml--3em {
    margin-left: 3em !important;
  }
}

@media print,
screen and (min-width: 768px) {
  .pc-ml--0-5em {
    margin-left: 0.5em !important;
  }

  .pc-ml--1em {
    margin-left: 1em !important;
  }

  .pc-ml--1-5em {
    margin-left: 1.5em !important;
  }

  .pc-ml--2em {
    margin-left: 2em !important;
  }

  .pc-ml--2-5em {
    margin-left: 2.5em !important;
  }

  .pc-ml--3em {
    margin-left: 3em !important;
  }
}