@charset "utf-8";

@font-face {
  font-family: '源柔ゴシック';
  src: url("../../fonts/GenJyuuGothic-Regular.ttf") format("TrueType");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: '源柔ゴシック';
  src: url("../../fonts/GenJyuuGothic-Medium.ttf") format("TrueType");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: '源柔ゴシック';
  src: url("../../fonts/GenJyuuGothic-Bold.ttf") format("TrueType");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: '源柔ゴシック';
  src: url("../../fonts/GenJyuuGothic-Heavy.ttf") format("TrueType");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
	--width-ratio: (100vw / 1400);
  --sans-serif: "源柔ゴシック", "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", sans-serif;
  --main-color: #748554;
  --accent-color: #7b1719;
  --title-color: #503833;
  --color-gray1: #fefefe;
  --color-gray2: #f6f6f6;
  --color-gray3: #d6d6d6;
  --bg-color: #fafff1;
}

@media screen and (max-width: 767px) {
	:root {
		--width-ratio: (100vw / 750);
	}
}

@media screen and (min-width: 1400px) {
	:root {
		--width-ratio: (1400px / 1400);
	}
}

html {
  font-size: 16px;
}

body {
  font-family: var(--sans-serif);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-wrap: anywhere;
  line-break: strict;
}

a {
  color: unset;
  transition: all 0.4s ease;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

img,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 16px;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}