/*
Theme Name: R-design
*/

/*
 * 【重要警告】
 * このWordPressテーマは R-design が著作権を有しています。
 * 無断での使用・コピー・改変・再配布は、著作権侵害にあたります。
 * 不正利用が確認された場合、アクセスログやコード署名をもとに、
 * 弁護士を通じて法的手段を取らせていただきます（実例あり）。
 *
 */

html {
  margin: 0!important;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, figure {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, address {
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img{ vertical-align: bottom;}
a img {	border: none;}

img{ border: none;}
em,strong{ font-weight: normal; font-style: normal;}

/* Forms
   ========================================================================== */


button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
  border: none;
  background: none;
  margin: 0;
  padding: 0;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* ローディング関連 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #72441f;
  text-align: center;
}
#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading .img_box {
  text-align: center;
  max-width: 300px;
}
#loading .img_box img {
  max-width: 100%;
  height: auto;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

	/* 基本設定
   ========================================================================== */
	body {
	position: relative;
	color: #222;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
font-weight: 400;
font-style: normal;
	line-height: 1;
	font-feature-settings: "palt";
}
 
body.noscroll { overflow-y: scroll; position: fixed; width: 100%; }

/* link
------------------------------------*/
a { color: inherit; text-decoration: none; transition: .15s ease-out; }
a:hover { text-decoration: none; }


/* 共通項目
  ========================================================================== */

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

html,body{height: 100%;}


/*------------------------------
　メールフォーム
------------------------------*/
#form.single-page{max-width:1000px;}
#form.single-page p{padding:0;}
.form-hoso{text-align:center;background-color:#f0f0f0;padding:20px;margin-top:30px;line-height:1.6;color: #384b55;}
.apply-hosoku p{margin:10px auto;font-size:88%; display: flex;text-align: left;justify-content:center;letter-spacing:.1rem;line-height:1.4 !important;}
.apply-hosoku .wpcf7-list-item{margin:0 6px 0 0;}
.apply-hosoku input[type="checkbox"]{width:20px;height:20px;}
.Form {
	margin:30px auto;
	max-width: 900px;
}
.Form-Item p{text-align: left !important;color: #384b55;}
.Form-Item:first-child{border-top: unset;}
.Form-Item-flex, .wpcf7-radio label{display:flex;justify-content:flex-start;align-items:center;}
.Form-Item-flex span{padding-right:10px;}
.wpcf7-radio label input{width:20px; margin-right: 10px;}

@media screen and (max-width: 480px) {
	.Form {margin-top: 40px;}
	.form-hoso{margin-top:10px;font-size:14px;}
}
.Form-Item {
	border-top: 1px solid #ddd;
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	display: flex;
	text-align: left;
}
@media screen and (max-width: 480px) {
	.Form-Item {
		padding-left: 14px;
		padding-right: 14px;
		padding-top: 16px;
		padding-bottom: 16px;
		flex-wrap: wrap;
	}
}
.Form p {
	text-align: left;
}
.Form-Item-Label {
	width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 18px;
}
@media screen and (max-width: 480px) {
	.Form-Item-Label {
		max-width: inherit;
		display: flex;
		align-items: center;
		font-size: 15px;
	}
}
.Form-Item-Label.isMsg {
	margin-top: 8px;
	margin-bottom: auto;
}
@media screen and (max-width: 480px) {
	.Form-Item-Label.isMsg {
		margin-top: 0;
	}
}
.Form-Item-Label span, span.hisu {
	border-radius: 6px;
	margin-left: 8px;
	padding: 5px;
	display: inline-block;
	text-align: center;
	background: #c3b993;
	color: #fff;
	font-size: 12px;
	line-height:1;
	font-weight:500;
}
@media screen and (max-width: 480px) {
	.Form-Item-Label span {
		border-radius: 4px;
		padding-top: 4px;
		padding-bottom: 4px;
		width: 32px;
		font-size: 10px;
	}
}
.Form-Item input, .Form-Item select {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #FFF;
}

.Form-Item .short{width:5rem;}
@media screen and (max-width: 480px) {
	.Form-Item input, .Form-Item select {
		margin-left: 0;
		margin-bottom: 3vw;
		height: 40px;
		flex: inherit;
	}
}
.Form-Item textarea {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 40px;
	padding: .5rem;
	height: 200px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #FFF;
	font-size: 18px;
}
@media screen and (max-width: 480px) {
	.Form-Item textarea {
		margin-top: 18px;
		margin-left: 0;
		height: 200px;
		flex: inherit;
		font-size: 15px;
	}
}
.Form-Btn {
	border-radius: 6px;
	margin-top: 32px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 280px;
	display: block;
	letter-spacing: 0.05em;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	border: none;
	background-size: auto auto;
background-color: rgba(65, 33, 15, 1);
background-image: repeating-linear-gradient(135deg, transparent, transparent 7px, rgba(78, 40, 18, 1) 7px, rgba(78, 40, 18, 1) 9px);transition:.3s;}
.Form-Btn:hover{background-color: #72441f;background-image: repeating-linear-gradient(135deg, transparent, transparent 7px, #8a5429 7px, #8a5429 9px);}

@media screen and (max-width: 480px) {
	.Form-Btn {
		margin-top: 24px;
		padding-top: 8px;
		padding-bottom: 8px;
		width: 160px;
		font-size: 16px;
	}
}
.seisaku {
	padding: 1rem;
	font-size: 15px;
	line-height: 1.8;
	background-color: #f0f0f0;
	margin-bottom: 60px;
	color: #555;
}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

/* スマホの時だけTELリンク */

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

/* ページ内リンク */
a.anchor {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

/*　reCAPTCHA　*/
.grecaptcha-badge { visibility: hidden; }
.reC {font-size:.8rem;color:#666;text-align:center;}
@media screen and (max-width: 480px) {.reC {font-size:min(3vw,.8rem);}}
.caption{text-align:center;padding-top:5vw;}
.caption a{color:#231815;transition:.3s;}
.caption a:hover{border-bottom:2px dotted #231815;}

.post-null {padding: 30px; text-align: center;}
