@charset "UTF-8";
/* ==================================================
 _mq.scss
 メディアクエリ 定義
================================================== */
/* ==================================================
 メディアクエリ 基本サイズ
================================================== */
/* ==================================================
 メディアクエリ mixin定義
 ※以下は定義方法
.class {
 width: 50%;
 @include tab {
		width: 100%
 }
}
================================================== */
/* ==================================================
 デバイス非表示・表示
================================================== */
.is-pc {
  display: none;
}

.is-tab {
  display: none;
}

.is-sp {
  display: none;
}

/* ==================================================
 _variables.scss
 変数 定義
================================================== */
/* ==================================================
 カラー変数定義
================================================== */
/* ==== サイト基本カラー定義 ==== */
/* ==== 白黒カラー定義 ==== */
/* ==== ボタンカラー定義 ==== */
/* ==== ボーダーカラー定義 ==== */
/* ==================================================
 background-imageディレクトリ 変数定義
================================================== */
/* ==================================================
 _font.scss
 フォント・文字サイズ 定義
================================================== */
/* ==================================================
 フォントウェイト
================================================== */
.font-w300 {
  font-weight: 300;
}

.font-w400 {
  font-weight: 400;
}

.font-w500 {
  font-weight: 500;
}

.font-w600 {
  font-weight: 600;
}

.font-w700 {
  font-weight: 700;
}

.font-w800 {
  font-weight: 800;
}

.font-w900 {
  font-weight: 900;
}

/* ==================================================
 フォントスタイル
================================================== */
.line-h1 {
  line-height: 1;
}

.line-h11 {
  line-height: 1.1;
}

.line-h12 {
  line-height: 1.2;
}

.line-h15 {
  line-height: 1.5;
}

.letter-0 {
  letter-spacing: 0em;
}

.letter-s005 {
  letter-spacing: 0.05em;
}

.letter-s01 {
  letter-spacing: 0.1em;
}

.letter-s02 {
  letter-spacing: 0.2em;
}

.letter-s05 {
  letter-spacing: 0.5em;
}

/* ==================================================
 フォントカラー
================================================== */
.font-white {
  color: white;
}

.font-black {
  color: #2c2c2c;
}

.font-gray {
  color: #7d7d7d;
}

.font-main {
  color: #e3c991;
}

.font-accent {
  color: #ba4a56;
}

.font-sub {
  color: #68b947;
}

/* ==================================================
 テキストシャドウ
================================================== */
/* ベーシックな黒シャドウ（汎用） */
.text-shadow-base {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* くっきり目のシャドウ（強調したいとき） */
.text-shadow-strong {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* 柔らかく広がるシャドウ（上品） */
.text-shadow-soft {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* フチどり風（白文字に最適、強力） */
.text-shadow-outline {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* 明るいシャドウ（暗背景用に白い影） */
.text-shadow-light {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

/* ==================================================
 componentフォルダ
================================================== */
/* ==================================================
 _c-button.scss
 ボタンのスタイル定義
================================================== */
.button {
  position: relative;
  font-size: 1.2rem;
  font-weight: 700;
  height: 70px;
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 465px;
  min-width: 250px;
  width: 50%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2c2c2c;
  background-color: #e3c991;
  transition: color 0.4s, background-color 0.4s, border 0.4s;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .button {
    width: 80%;
  }
}
.button::after {
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  content: "";
  transition: border 0.4s;
}
.button:hover {
  background-color: #6dbcbc;
  color: white;
}
.button:hover::after {
  border-color: white;
}

.w-90 {
  width: 90%;
  max-width: 1190px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .w-90 {
    width: 95%;
  }
}

.w-80 {
  width: 80%;
  max-width: 1190px;
  margin: 0 auto;
}

.w-article {
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .w-article {
    width: 95%;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  max-height: 570px;
  background-image: url(../images/back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .hero {
    height: 60vh;
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    height: 75vh;
  }
}
.hero__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  padding-top: 100px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 90%;
  margin: 0 auto;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .hero__wrap {
    flex-direction: column;
    text-align: center;
  }
}
.hero__wrap-img {
  flex-shrink: 0;
}
.hero__wrap-img img {
  width: 100%;
  height: 120px;
}
.hero__wrap-txt {
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
}
.hero__wrap h1 {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .hero__wrap h1 {
    font-size: 1.5rem;
  }
}
.hero__wrap p {
  margin: auto;
}
.hero__copy {
  font-size: 3.5rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .hero__copy {
    font-size: 2.5rem;
  }
}

.about {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.about__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .about__wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.about__head {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .about__head {
    width: 100%;
  }
}
.about__head p {
  margin-bottom: 0;
}
.about__head h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.about__head-title {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.about__head-txt {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.about__body {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .about__body {
    width: 100%;
  }
}
.about__body img {
  border-radius: 1rem;
}
@media screen and (max-width: 1024px) {
  .about__button a {
    margin: 0 auto;
  }
}

.service {
  background-color: #f9f6f0;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.service__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .service__wrap {
    flex-direction: column;
  }
}
.service__head {
  width: 20%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .service__head {
    width: 100%;
  }
}
.service__head p {
  margin-bottom: 0;
}
.service__head h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.service__head-title {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.service__head-txt {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.service__body {
  width: 80%;
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .service__body {
    width: 100%;
  }
}
.service__list {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .service__list {
    flex-direction: column;
    gap: 2rem;
  }
}
.service__list h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.service__list p {
  margin-bottom: 0;
}
.service__list-img {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .service__list-img {
    width: 100%;
  }
}
.service__list-img img {
  border-radius: 1rem;
}
.service__list-txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .service__list-txt {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .service__list-button a {
    margin: 0 auto;
  }
}

.memberList {
  background-color: #f9f6f0;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .memberList {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.memberList__head {
  text-align: center;
  margin-bottom: 3rem;
}
.memberList__head h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.memberList__head p {
  margin-bottom: 0;
}
.memberList__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  justify-items: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .memberList__wrap {
    grid-template-columns: repeat(6, 1fr);
  }
}
.memberList__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.memberList__item a:hover img {
  opacity: 0.8;
}

.columnblock {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .columnblock {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.columnblock__headding {
  text-align: center;
  margin-bottom: 3rem;
}
.columnblock__headding h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.columnblock__headding p {
  margin-bottom: 0;
}
.columnblock__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .columnblock__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.columnblock__item-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  transition: all 0.3s;
  text-decoration: none !important;
}
.columnblock__item-wrap:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}
.columnblock__item-wrap h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.columnblock__item-wrap time {
  text-align: right;
}
.columnblock__item span {
  background-color: #2c2c2c;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
}
.columnblock__button {
  padding-top: 2rem;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .columnblock__button {
    width: 100%;
  }
}
.columnblock__button a {
  margin: 0 auto;
}

.member__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #b3b3b3;
  padding: 30px 0;
}
.member__item:last-child {
  border-bottom: none;
}
.member__logo {
  width: 40%;
  text-align: center;
}
.member__logo img {
  width: 150px;
}
.member__group {
  width: 60%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.member__group h2 {
  font-size: 1.5em;
  margin-bottom: 0;
  margin-top: 0;
}
.member__group p {
  margin: auto;
}
.member__group a {
  color: #444;
  font-weight: 700;
  text-decoration: none;
}
.member__table {
  margin-bottom: 2rem;
}
.member__table ul {
  margin: 0 0 0 1.2em;
}/*# sourceMappingURL=jpeac.css.map */