@charset "utf-8";

/* ----------------------------------------
   Base
---------------------------------------- */

html {
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	background: #ffffff;
	color: #1a1a1a;
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
}

/* ----------------------------------------
   Link
---------------------------------------- */
a {
	color: #758034;
	transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
	color: #bfd65a;
}

a img {
	transition: opacity 0.3s ease;
}

a:hover img {
	opacity: 0.7;
}

/* ----------------------------------------
   Text
---------------------------------------- */
p {
	margin: 0 0 1.5em;
	line-height: 1.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

small {
	font-size: 0.85em;
}

sub,
sup {
	font-size: 0.75em;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.4em;
}

sub {
	bottom: -0.2em;
}

/* ----------------------------------------
   Heading
---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.4;
	font-weight: 700;
}

/* ----------------------------------------
   List
---------------------------------------- */
ul,
ol {
	margin: 0 0 1.5em;
	padding: 0;
}

li {
	line-height: 1.8;
}

/* ----------------------------------------
   Image
---------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

figure {
	margin: 0 0 1.5em;
}

figcaption {
	margin-top: 0.5em;
	font-size: 0.9em;
	line-height: 1.6;
	color: #666666;
}

/* WordPress align */
img.alignleft,
.alignleft {
	float: left;
	margin: 0 20px 20px 0;
}

img.alignright,
.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

img.aligncenter,
.aligncenter {
	display: block;
	margin: 0 auto 20px;
}

/* ----------------------------------------
   Table
---------------------------------------- */
table {
	width: 100%;
	margin: 0 0 1.5em;
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	padding: 12px 14px;
	border: 1px solid #dddddd;
	line-height: 1.7;
	text-align: left;
	vertical-align: top;
}

th {
	background: #f7f7f7;
	font-weight: 700;
}

/* ----------------------------------------
   Form
---------------------------------------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="number"],
input[type="file"],
textarea,
select {
	padding: 10px 12px;
	border: 1px solid #cccccc;
	background: #ffffff;
	line-height: 1.6;
	max-width: 100%;
}

textarea {
	min-height: 140px;
	resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	display: inline-block;
	padding: 10px 18px;
	background: #758034;
	color: #ffffff;
	line-height: 1.4;
	transition: background 0.3s ease, opacity 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #bfd65a;
	color: #ffffff;
}

/* ----------------------------------------
   Utility
---------------------------------------- */
.clear {
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.pc_none {
	display: none;
}

.sp_none {
	display: block;
}

/* ----------------------------------------
   Embedded content
---------------------------------------- */
iframe {
	max-width: 100%;
	border: 0;
}

/* ----------------------------------------
   Selection
---------------------------------------- */
::selection {
	background: #dfe7ba;
	color: #1a1a1a;
}

/* ----------------------------------------
   Responsive
---------------------------------------- */
@media all and (max-width: 768px) {
	body {
		font-size: 14px;
	}

	img.alignleft,
	.alignleft,
	img.alignright,
	.alignright {
		float: none;
		display: block;
		margin: 0 auto 20px;
	}

	.pc_none {
		display: block;
	}

	.sp_none {
		display: none;
	}
}


/* footer：1階層目のカスタムリンク # をリンク無効化 */
.front-footer-links .front-footer-links__menu-list > li > a[href="#"] {
  pointer-events: none !important;
  cursor: default !important;
  color: inherit;
  text-decoration: none;
}