/* =============================================
共通部分
============================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", serif;
  line-height: 2;
}

@font-face {
  font-family: "Butler Reg";
  src: url(/fonts/Butler-Free-Med.ttf) format(truetype);
}

/* .noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

@keyframes Grad {
  0% {
    /* background-position: 0% 0% */
    background-position: 0% 50%/
  }

  50% {
    background-position: 100% 50%
      /* background-position: 50% 50% */
      /* background-position: 50% 75% */
  }

  100% {
    background-position: 0% 50%
      /* background-position: 0% 100% */
      /* background-position: 100% 100% */
  }
}

.bg-color {
  /* width: 100%;
    height: 100vh; */
  /* background: linear-gradient(270deg, #713694, #0cb1c1); */
  /* background: linear-gradient(to right top, #0cb4d8, #7036bf);
  background-size: 200% 200%;
  animation: Grad 20s ease infinite; */
  /* background-attachment: fixed; */
  background-image: url(../images/home/home-BG_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.main-title {
  font-size: 32px;
  font-weight: normal;
  color: #fff;
  text-align: center;
}

.sub-title {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
}

.btn {
  margin: 0 auto;
  text-align: center;
}

.btn a {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #333;
  border-radius: 0.5rem;
}

a {
  color: #333;
}

/* =============================================
header
ロゴ部分
============================================= */

.header-container {
  padding: 30px 0;
  border-bottom: 1px solid #fff;
}

.header-container a {
  text-align: center;
}

.header-container a h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 250px;
  height: auto;
}

/* =============================================
info
インフォメーション部分
============================================= */

.info {
  margin-top: 150px;
  color: #fff;
}

.info-container {
  position: relative;
  width: 60%;
  margin: 0 auto;
  margin-top: 150px;
  /* border-top: 1px solid #fff; */
}

/* .info-container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #fff;
} */

.info-wrapper {
  /* width: 90%; */
  width: 100%;
  margin: 0 auto;
  margin-top: 70px;
  margin-bottom: 70px;
}

.info-item {
  padding: 80px 0;
  border-top: 1px solid #fff;
}

.info-item:last-child {
  padding-top: 70px;
  border-bottom: 1px solid #fff;
}

.info-date {
  display: block;
  text-align: center;
  color: #fff;
}

.info-title {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  color: #fff;
  line-height: 36px;
}

.info-content {
  width: 90%;
  margin: 0 auto;
  margin-top: 70px;
  color: #fff;
}

.info-content p {
  font-feature-settings: "palt";
}

.info-content br {
  display: block;
  content: "";
  margin-bottom: 1em;
  /* 行間の調整 */
}

.info-img__box {
  text-align: center;
  margin: 40px 0;
}

.info-img__box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  vertical-align: bottom;
}



/* =============================================
pagination
ページネーション部分
============================================= */

.pagination {
  text-align: center;
  margin: 40px 0;
}

.pagination ul {
  display: inline-flex;
  list-style: none;
  gap: 8px;
  padding: 0;
}

.pagination li {
  /* border: 1px solid #ccc; */
  padding: 8px 12px;
}

.pagination li a {
  color: #fff;
}

.pagination .current {
  /* background-color: #333; */
  color: white;
  opacity: 0.5;
}



/* =============================================
footer
フッター部分
============================================= */

.footer-container {
  text-align: center;
  background-color: #4D4D4D;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 20px;
}

.footer-container a {
  display: block;
  padding-bottom: 100px;
}

.footer-wrapper {
  position: relative;
  color: #fff;
  font-weight: 100;
}

.footer-wrapper br {
  display: none;
}

.footer-wrapper span {
  display: block;
}

.footer-company__address {
  font-family: "Noto Serif JP", serif;
  font-weight: lighter;
  font-size: 14px;
}

.footer-compnay__right {
  font-family: "Noto Serif JP", serif;
  font-weight: lighter;
  font-size: 12px;
}

.footer-wrapper span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  width: 100%;
  border-bottom: 1px solid #fff;
}

.footer-wrapper span:last-child {
  margin-top: 20px;
}

/* =============================================
wordpress
wordpress追加部分
============================================= */

.wp-block-image {
  width: 100%;
  /* height: 600px; */
  object-fit: cover;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

/* =============================================



ここからレスポンシブ対応です。

タブレット

スマホ



============================================= */

@media screen and (max-width: 1200px) {

  /* =============================================
共通部分
============================================= */

  .btn a {
    padding: 20px 40px;
  }

  /* =============================================
  info
  インフォメーション部分
  ============================================= */

  .info {
    margin-top: 75px;
  }

  .info-container {
    width: 90%;
    margin-top: 75px;
  }

  .info-wrapper {
    width: 95%;
    margin-top: 35px;
  }

  .info-content {
    margin-top: 35px;
  }

  /* =============================================
  footer
  フッター部分
  ============================================= */
  .footer-container {
    padding-top: 150px;
  }

  .footer-container a {
    padding-bottom: 150px;
  }

  .footer-wrapper {
    line-height: 1.5;
  }

  .footer-wrapper br {
    display: block;
  }

  .footer-wrapper span:first-child::before {
    bottom: 27%;
  }
}


/* =============================================



スマホ



============================================= */

@media screen and (max-width: 490px) {

  /* =============================================
共通
============================================= */

  .header-container {
    padding: 20px 0;
  }

  .logo {
    width: 150px;
  }

}