@charset "UTF-8";

/* CSS Document */
/*------------------------------

  標準レイアウト・基本カラー

------------------------------*/
:root {
  --main_color: #035cb3;
}

body {
  font-family: 'Noto Sans JP', sans-serif, 游ゴシック体, 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@media screen and (max-width: 1024px) {}

@media screen and (max-width: 896px) {}

@media screen and (max-width: 480px) {}

/*---------------------------------

	フッター

---------------------------------*/

footer .wrap {
  max-width: 100rem;
  margin: 100px auto 0;
}

footer .wrap .footer_inner {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: auto;
  padding: 70px 0 50px;
}

footer .wrap .copylight {
  text-align: center;
  padding-bottom: 1.5rem;
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 896px) {
  footer .wrap .footer_inner {
    flex-direction: column;
  }

  footer .wrap .footer_inner figure {
    width: 50%;
    padding-bottom: 10px;
  }

}

@media screen and (max-width: 480px) {}

/*------------------------------

	pagetop

------------------------------*/
.page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

.page_top a {
  background: #06c755;
  border-radius: 50%;
  color: #fff;
  display: block;
  position: relative;
  text-decoration: none;
  text-align: center;
  width: 50px;
  height: 50px;
}

.page_top a .arrow {
  display: block;
}

.page_top a .arrow::before {
  background: url("../images/arrow_pagetop.svg") no-repeat;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all .3s;
  width: 26px;
  height: 26px;
  margin: auto;
}

.page_top a:hover {
  opacity: 1;
  text-decoration: none;
}

.page_top a:hover .arrow::before {
  background: url("../images/arrow_pagetop.svg") no-repeat;
  top: -10px;
}

/*---------------------------------

  メインビジュアル

---------------------------------*/
.catch_wrap .catch {
  align-items: flex-end;
  background-color: #06c755;
  display: flex;
  height: 250px;
  padding-bottom: 50px;
}

.catch_wrap .catch h1 {
  color: #ffffff;
  font-size: 50px;
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  line-height: 1.3;
}

.catch_wrap p {
  display: block;
  max-width: 1200px;
  width: 80%;
  margin: 30px auto;
}

.btn {
  display: flex;
  flex-direction: column; 
  align-items: center;
}

.btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #06c755;
  border: 2px solid #06c755;
  max-width: 1200px;
  width: 80%;
  height: 56px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;

  transition: all 0.2s ease;
}

.btn a:hover {
  background-color: #06c755;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.35);
  transform: translateY(-2px);
}

.btn a:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(6, 199, 85, 0.25);
}

@media screen and (max-width: 1024px) {
  .catch_wrap .catch {
    height: 200px;
    padding-bottom: 40px;
  }

  .catch_wrap .catch h1 {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .catch_wrap .catch {
    height: auto;
    padding: 40px 0;
  }

  .catch_wrap .catch h1 {
    font-size: 26px;
    text-align: center;
  }
}

@media screen and (max-width: 375px) {
  .catch_wrap .catch h1 {
    font-size: 22px;
  }
}


/*---------------------------------

  共通

---------------------------------*/

img {
  vertical-align: bottom;
  width: 100%;
}

p {
  color: #333333;
}



@media screen and (max-width: 896px) {}

/*---------------------------------

  LINEスタンプ

---------------------------------*/

section .stamp_wrap {
  width: 80%;
  max-width: 1000px;
  margin: 100px auto;
}

.stamp_title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.stamp_title h2 {
display: block;
width: 80%;
max-width: 400px;
}

.stamp_box {
  width: 100%;
  max-width: 400px;
  padding: 0 10px;
}

.stamp_box .stamp_title figure {
  width: 30%;
  max-width: 200px;
}

.stamp_box figure {
  width: 100%;
  max-width: 500px;
}

.stamp_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px 0;
}



@media screen and (max-width: 1014px) {
  .stamp_box {
  max-width: 400px;
  padding: 0 0;
  margin: auto;
}
}