@charset "UTF-8";

/*
z-indexのメモ
ドロワーボタン → 111
ドロワーメニュー → 110
ヘッダー → 100
*/

/*初期設定*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  /*iPhoneのバウンススクロール無効*/
  height: 100%;
  overflow: auto;
}

a {
  cursor: pointer;
  text-decoration: none;
}

img {
  vertical-align: top;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  background-color: #fff;
  font-size: 14px;
  /*
  font-weightのメモ
  400 → Regular
  500 → Medium
  700 → Bold
  */
  font-weight: 400;
  /*
  line-heightのメモ
  60 ÷ 48 → 1.25
  40 ÷ 28 → 1.429（スマホbodyのデフォルトにしました）
  48 ÷ 32 → 1.5
  54 ÷ 32 → 1.688
  54 ÷ 28 → 1.929
  */
  line-height: 1.429;
  /*iPhoneのバウンススクロール無効*/
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: auto;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 18px;
    /*
    line-heightのメモ
    24 ÷ 18 → 1.333
    30 ÷ 20 → 1.5
    30 ÷ 18 → 1.667（パソコンbodyのデフォルトにしました）
    48 ÷ 16 → 3
    */
    line-height: 1.667;
  }
}

/*共通で使用できるクラス名*/
/*PCの時に非表示にする*/
@media screen and (min-width: 769px) {
  .hidden__pc {
    display: none !important;
  }
}

/*スマホとタブレットの時に非表示にする*/
@media screen and (max-width: 768px) {
  .hidden__sp {
    display: none !important;
  }
}

/*スクリーンリーダー読み上げ用*/
.screen__reader__only {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
}

/*各セクションの上下padding*/
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .section {
    padding-top: 100px;
  }
}

/*各セクションの横幅インナー*/
.inner {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 769px) {
  .inner {
    max-width: 1060px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*ヘッダー*/
.header {
	box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.2);
  background-color: #fff;
	width: 100%;
  height: 48px;
  position: fixed;
	z-index: 100;
}
@media screen and (min-width: 769px) {
  .header {
    height: 100px;
  }
}

.header__inner {
	padding-left: 20px;
  padding-right: 12px;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
@media screen and (min-width: 769px) {
  .header__inner {
    padding-left: 30px;
    padding-right: 30px;
		display: block;
  }
}
@media screen and (min-width: 1366px) {
	.header__inner {
		max-width: 1196px;
	}
}

@media screen and (min-width: 769px) {
  .header__logo {
    position: relative;
		margin-top: 11px;
  }
}

.header__logo__link {
  display: block;
  width: 114.3px;
  line-height: 1;
  padding-top: 15.75px;
  padding-bottom: 15.75px;
}
@media screen and (min-width: 769px) {
  .header__logo__link {
    width: 228.6px;
    padding-top: 1.5px;
    padding-bottom: 0;
    margin: 0 auto;
  }
}

.header__logo__image {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
	.header__logo__image {
		margin-left: -5px;
	}
}

/*ドロワーボタン（パッシブ時）*/
.drawer__button {
  cursor: pointer;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border: none;
  padding: 0;
  z-index: 111;
  position: relative;
}
.drawer__button::after {
  color: #000;
  position: absolute;
  content: "menu";
  font-size: 10px;
  line-height: 1;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.drawer__button__border {
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s;
  left: 50%;
  transform: translateX(-50%);
}
.drawer__button__border:nth-child(1) {
  top: 11px;
}
.drawer__button__border:nth-child(2) {
  top: 20px;
}

/*ドロワーボタン（アクティブ時）*/
.drawer__button[aria-expanded="true"] .drawer__button__border:nth-child(1) {
  top: 14px;
  transform: translateX(-50%) rotate(-45deg);
}
.drawer__button[aria-expanded="true"] .drawer__button__border:nth-child(2) {
  top: 14px;
  transform: translateX(-50%) rotate(45deg);
}
.drawer__button[aria-expanded="true"]::after {
  content: "close";
}

/*ドロワーメニュー（SP）*/
.drawer__menu {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  position: absolute;
  top: 48px;
  left: 0;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 110;
}
.drawer__active .drawer__menu {
  visibility: visible;
  opacity: 1;
  /*ドロワーメニュー展開時の背景スクロール無効*/
  touch-action: none;
  overflow: hidden;
  overscroll-behavior: none;
}

.drawer__menu__lists {
  margin: 0 auto;
  width: 81.333vw;
}

.drawer__menu__list {
  border-bottom: 1px solid #b2b2b2;
}

.drawer__menu__link {
  display: block;
  padding: 20px 0;
  font-size: 24px;
  line-height: 1.25;
  color: #000;
}

/*ヘッダーメニュー（PC）*/
.header__menu {
	padding-top: 11.5px;
}

.header__menu__lists {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__menu__link {
  display: block;
  color: #000;
  font-size: 16px;
  line-height: 2.5;
  font-weight: bold;
	letter-spacing: 0.027em;
}

.header__logo .main__button__green {
	position: absolute;
	top: 0;
	right: 0;
  margin-top: 0;
  font-size: 16px;
  padding: 17px 0;
	max-width: clamp(170px, 15.373vw, 210px);
	max-width: max(170px, min(15.373vw, 210px));
}
.header__logo .main__button__green::after {
	width: 8px;
	height: 8px;
	right: 16px;
}

/*セクションタイトル（デコレーション）*/
.section__title__decoration {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.section__title__decoration::before {
  position: absolute;
  content: "";
  width: 55px;
  height: 55px;
  background-image: url("../img/decoration01.png");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translateX(calc(-50% - 68px)) translateY(-50%);
}
.section__title__decoration::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .section__title__decoration {
    font-size: 36px;
    padding: 20px 0;
		letter-spacing: 0.054em;
  }
  .section__title__decoration::before {
    width: 85px;
    height: 85px;
    transform: translateX(calc(-50% - 113px)) translateY(calc(-50% + -3px));
  }
  .section__title__decoration::after {
    width: 80px;
    height: 1.6px;
  }
}

/*セクションタイトル（ボーダー）*/
.section__title__border {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section__title__border::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .section__title__border {
    font-size: 36px;
    padding-bottom: 38px;
		letter-spacing: 0.054em;
  }
  .section__title__border::after {
    width: 80px;
    height: 1.6px;
  }
}

/*緑ボタン*/
.main__button__green {
  display: block;
  background-color: #008c38;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 100%;
  max-width: 270px;
  padding: 14px 0;
  margin: 0 auto;
  margin-top: 60px;
  border-radius: 22px;
  position: relative;
}
.main__button__green::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .main__button__green {
    font-size: 24px;
    max-width: 430px;
    padding: 23px 0;
    border-radius: 35px;
    margin-top: 90px;
  }
  .main__button__green::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 31px;
  }
}

/*new（新着）バッジ*/
.new__badge {
  color: #fff;
  background-color: #008c38;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 35px;
  border-radius: 4px;
	padding-top: 0;
	padding-bottom: 2px;
}
@media screen and (min-width: 769px) {
  .new__badge {
    width: 40px;
    border-radius: 8px;
		padding-top: 2px;
		padding-bottom: 6px;
  }
}

/*緑の三角形デコレーション*/
.decoration__green__arrow {
  position: relative;
  padding-left: 8px;
}
.decoration__green__arrow::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 5px;
  border-color: transparent transparent transparent #008c38;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .decoration__green__arrow {
    padding-left: 14px;
  }
  .decoration__green__arrow::before {
    border-width: 8px 0 8px 7px;
  }
}

/*フッターバナー*/
.footer__banner {
  padding-top: 80px;
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .footer__banner {
    padding-top: 100px;
    padding-bottom: 96.5px;
  }
}

.footer__banner__area {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .footer__banner__area {
    justify-content: center;
  }
}

.footer__banner__link {
  display: block;
  width: 42.667vw;
}
.footer__banner__link:nth-child(1) {
  border: 1px solid #ccc;
}
.footer__banner__link:nth-child(2) {
  margin-left: 4vw;
}
@media screen and (min-width: 769px) {
  .footer__banner__link:nth-child(1) {
    width: 320px;
  }
  .footer__banner__link:nth-child(2) {
    width: 323px;
    margin-left: 100px;
  }
}

.footer__banner__image {
  max-width: 100%;
  height: auto;
}

.footer__banner__icon {
  position: relative;
}
.footer__banner__icon span {
  position: absolute;
  color: #fff;
  font-size: clamp(18px, 4.8vw, 28px);
  font-size: max(18px, min(4.8vw, 28px));
  right: 3px;
  bottom: 4px;
}

/*フッター*/
.footer {
  background-color: #000;
}

.footer__inner {
	padding-top: 52px;
  padding-bottom: 65px;
  position: relative;
}
@media screen and (min-width: 769px) {
	.footer__inner {
		padding-top: 45px;
		padding-bottom: 20px;
	}
}
@media screen and (min-width: 1366px) {
	.footer__inner {
		max-width: 1196px;
	}
}

/*フッターメニュー（SP）*/
.footer__menu__sp {
  list-style: none;
}

.footer__menu__sp__nest:last-child {
  margin-top: 15px;
}

.footer__menu__sp__lists {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.footer__menu__sp__list {
  padding-left: 3.284%;
  padding-right: 3.284%;
  border-left: 1px solid #fff;
  line-height: 1;
}
.footer__menu__sp__list:first-child {
  padding-left: 0;
  border-left: none;
}

.footer__menu__sp__link {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

/*フッターメニュー（PC）*/
@media screen and (min-width: 769px) {
  .footer__menu__pc {
    list-style: none;
		display: inline-flex;
  }
}

@media screen and (min-width: 769px) {
  .footer__menu__pc__list {
		padding: 0 20px;
    border-left: 2px solid #fff;
  }
  .footer__menu__pc__list:first-child {
    padding-left: 0;
    border-left: none;
  }
  .footer__menu__pc__list:last-child {
    padding-right: 0;
  }
}

@media screen and (min-width: 769px) {
  .footer__menu__pc__link {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
		display: block;
		line-height: 1;
		padding: 2px 0;
		letter-spacing: 0.027em;
  }
}

/*フッターコピーライト*/
.footer__copyright__wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .footer__copyright__wrapper {
    margin-top: 44px;
  }
}

.footer__copyright {
  display: block;
  line-height: 1;
  font-size: 12px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .footer__copyright {
    font-size: 11px;
    font-weight: bold;
    text-align: left;
  }
}

/*トップに戻るボタン*/
.top__return__button {
  width: 44px;
  height: 44px;
  border: 1px solid #999;
  border-radius: 50%;
  position: absolute;
  bottom: 65px;
  right: 20px;
}
.top__return__button::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.top__return__button::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-50% - 6px)) rotate(-45deg);
}
@media screen and (min-width: 769px) {
	.top__return__button {
		right: 30px;
    bottom: 16px;
	}
}
@media screen and (min-width: 820px) {
	.top__return__button {
		width: 66px;
		height: 66px;
		border: 2px solid #999;
	}
	.top__return__button::before {
		width: 30px;
		height: 2px;
	}
	.top__return__button::after {
		width: 10.5px;
		height: 10.5px;
		border-top: 2px solid #fff;
    border-right: 2px solid #fff;
		transform: translateX(calc(-50% - 0.5px)) translateY(calc(-50% - 10px)) rotate(-45deg);
	}
}

@media screen and (min-width: 1366px) {
  .top__return__button {
    width: 88px;
    height: 88px;
  }
  .top__return__button::before {
    width: 40px;
  }
  .top__return__button::after {
    width: 14px;
    height: 14px;
    transform: translateX(calc(-50% - 0.5px)) translateY(calc(-50% - 12px)) rotate(-45deg);
  }
}
