/* Box sizing rules */
*,
*::before,
*::after {
 box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
 padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
 margin: 0;
 font-weight: normal;
 line-height: 1.75;
}

/* Set core root defaults */
html {
 scroll-behavior: smooth;
}

/* Set core body defaults */
body {
 min-height: 100vh;
 text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class],
li,
dl {
 list-style: none;
 margin: 0;
}

a {
	text-decoration: none;
	color: #212121;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
 text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
 max-width: 100%;
 display: block;
 font-size: 0;
 object-fit: cover;
}

img[src*=’.svg’]{
width: 100%;
height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
 margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
 font: inherit;
}
input {
	width: 100%;
}
textarea {
	width: 100%;
}
select {
	width: 100%;
}
					
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea
{
	border:1px solid #E6E6E6;
	color: #212121;
}
.wpcf7 input:action,
.wpcf7 select:action,
.wpcf7 textarea:action
.wpcf7 input:focus-visible,
.wpcf7 select:focus-visible,
.wpcf7 textarea:focus-visible {
	border:1px solid #DE0000;
	outline: 1px #DE0000 solid;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
 * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
 }
}


select {
-webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
-moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
appearance: none; /* 標準のスタイルを無効にする */
}
::-ms-expand { /* select要素のデザインを無効にする（IE用） */
display: none;
}
select:-internal-autofill-selected {
    background-color: rgb(232, 240, 254) !important;
}
textarea:-internal-autofill-selected {
}

input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}
input[type="button"] {
	-webkit-appearance: none;
	border-radius: 0;
}