@charset "UTF-8";
/*-----------------------------
reset ※ブラウザの初期設定をリセットする
-----------------------------------*/
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, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body * {
	line-height: 1.4;
	box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
}
a {
	text-decoration: none;
	color: #420C0C;
}
/*-----------------------------
全体共通部分
‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐*/
html {
	font-size: 16px;
}
body {
	font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
	line-height: 1.4;
	color: #420C0C;
	height: 100%;
}
img {
	max-width: 100%;
}
a:hover { /*ホーバー設定*/
	opacity: 0.8;
	transition: all 0.2s ease-out 0s;
}
.contents-inner { /*コンテンツの幅*/
	max-width: 1200px;
	width: 90%;
	margin: 0 auto 50px; /*センターにする*/
}
br.sp {
	display: none;
}
.sp {
	display: none !important;
}
@media screen and (max-width: 768px) {
	br.sp {
		display: block;
	}
	br.pc {
		display: none;
	}
}
/*-----------------------------
/*グーグルフォント　ロゴ用
-----------------------*/
.logofont {
	font-family: "Alegreya", serif;
}
.f-damion {
	font-family: "Damion", cursive;
	font-weight: 400;
	font-style: normal;
}
/*-----------------------------
/*アイコン
-----------------------*/
.fa-instagram {
	color: #816767;
	font-size: 24px;
}
.fa-arrow-right {
	color: #816767;
	margin: 0 0 0 10px;
}
/*-----------------------------
/*HEADER
-----------------------*/
.page-header h1 {
	display: flex;
	align-items: baseline;
}
.page-header {
	background-color: #FFE9F4;
	padding: 10px 0;
}
.header-logo {
	font-size: 36px;
	color: #816767;
	text-shadow: 1px 1px 4px rgb(51 51 51 / 20%);
}
.page-header h1 small {
	padding: 0 0 0 1em;
}
.wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.main-nav {
	display: flex;
	font-size: 18px;
}
.logo {
	width: 30px;
	margin-top: 1%;
}
.main-nav li {
	margin-left: 36px;
}
.main-nav li {
	color: #662212;
}
.main-nav a:hover {
	color: #f85317;
}
.hamburger-menu {
	display: none;
}
@media screen and (max-width: 768px) {
	.page-header h1 {
		margin: 0 0 0 10px;
	}
	.header-logo {
		font-size: 24px;
	}
	.page-header h1 small {
		font-size: 14px;
	}
	/*開閉メニューのための設定*/
	.hamburger-menu {
		display: block;
	}
	.header-list {
		position: fixed;
		right: 0;
		top: 0;
		width: 60%;
		height: 100vh;
		transform: translateX(100%);
		background-color: #fff;
		transition: ease .4s;
		z-index: 999;
		overflow: hidden;
	}
	.main-nav {
		display: block;
		padding: 40% 30px;
	}
	.main-nav li {
		margin: 0 0 20px;
		border-bottom: solid 1px #d9d9d9;
		padding: 0 0 20px;
		text-align: center;
	}
	.main-nav li.hed-insta {
		border: none;
	}
	/* ハンバーガーメニュー */
	.hamburger-menu {
		width: 30px;
		height: 100%;
		background-color: transparent;
		border-color: transparent;
		z-index: 9999;
		position: absolute;
		right: 20px;
		top: 20px;
	}
	.hamburger-menu.active {
		position: fixed;
	}
	/* ハンバーガーメニューの線 */
	.hamburger-menu span {
		width: 100%;
		height: 1px;
		background-color: #000;
		position: relative;
		transition: ease .4s;
		display: block;
	}
	.hamburger-menu span:nth-child(1) {
		top: 0;
	}
	.hamburger-menu span:nth-child(2) {
		margin: 8px 0;
	}
	.hamburger-menu span:nth-child(3) {
		top: 0;
	}
	/* ハンバーガーメニュークリック後のスタイル */
	.header-list.active {
		transform: translateX(0);
	}
	.hamburger-menu.active span:nth-child(1) {
		top: 5px;
		transform: rotate(45deg);
	}
	.hamburger-menu.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger-menu.active span:nth-child(3) {
		top: -13px;
		transform: rotate(-45deg);
	}
}
/*-----------------------------
/*HOME メイン
-------------------------*/
/*home画像*/
.home-content {
	background: linear-gradient(-50deg, #d9d6de, #ffffff);
	position: relative;
	max-height: 100vh;
}
.main-img-wraper {
	background: url("../images/main_img.jpg") no-repeat center top;/*トップのメイン画像*/
	min-height: 80vh;
	height: 100vh;
	background-size: cover;
	margin: 0 auto;
}
.home-copy_wrap {
	position: absolute;
	top: 50%;
	left: 12vw;
	transform: translateY(-50%);
	font-size: 24px;
	line-height: 2;
}
.home-copy {
	display: flex;
	margin: 0 0 1em;
}
.home-copy dt.voix {
	margin: 0 0 0 2em;
}
.home-copy dd.iko {
	margin: 0 1em;
}
.main-name {
	position: absolute;
	right: 20vw;
	bottom: 60px;
	color: #fff;
	font-size: 20px;
	text-shadow: 1px 1px 2px #3f3f3f;
}
@media screen and (max-width: 768px) {
	.main-img-wraper {
		background-position-x: 68%;
		height: 85vh;
	}
	.home-copy_wrap {
		font-size: 16px;
		left: 30px;
	}
	.home-copy {
		display: block;
		text-align: center;
		width: 30%;
	}
	.home-copy dt.voix {
		margin: 2em 0 0;
	}
	.home-copy dd.iko {
		transform: rotate(-90deg);
	}
	.home-copy_tx {
		background-color: rgb(255 255 255 / 70%);
		padding: 5px 10px;
	}
	.main-name {
		right: 20px;
		bottom: 20px;
	}
}
/*-----------------------------
/*トップ　プロフィール
-------------------------*/
#profile {
	margin: 60px 0 60px;
}
.profile_ttl {
	margin: 0 0 30px;
	font-size: 3rem;
}
.profile_txt {
	background: url("../images/pr_img.jpg") no-repeat right top;
	padding-right: 30vw;
}
.profile_txt p {
	font-size: 1.4rem;
	margin: 0 0 1em;
	line-height: 1.7;
}
.license {
	max-width: 250px;
	margin: 50px 0 0;
}
.license dt {
	border-bottom: solid 1px #d5c5c5;
	margin: 0 0 10px;
	padding: 0 0 5px;
}
.voice-link a {
	font-size: 1.5rem;
	display: block;
	margin: 30px 0 0;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.profile_ttl {
		text-align: center;
	}
	.profile_txt {
		background-size: 70%;
		padding: 60% 0 0;
	}
	.profile_txt p {
		font-size: 16px;
		width: 80%;
		margin: 0 0 1em 6%;
		line-height: 2;
	}
	.license {
		margin: 10% 0 0 7%;
	}
	.voice-link a {
		font-size: 17px;
		text-align: center;
	}
}
/*-----------------------------
/*ページ用背景グラデーションアニメ
-------------------------*/
.bg {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 100%;
	min-height: 100vh;
}
.bg_gr {
	position: absolute;
	top: 0;
	margin-left: 50%;
	width: 60%;
	height: 50%;
	background: linear-gradient(-45deg, #fbe4f6, #ffe7ef, #b5edff); /*グラデーションを定義*/
	background-size: 800% 800%; /*サイズを大きくひきのばす*/
	animation: bggradient 8s ease infinite;
	z-index: -1;
	opacity: 60%;
}
.bg_gr.b {
	top: 80%;
	margin-left: 50%;
	width: 50%;
}
.bg_gr.c {
	top: 40%;
	left: 0;
	margin: 0;
	width: 60%;
	background: linear-gradient(-45deg, #ffe7ef, #fbe4f6, #ffe7ef, #b5edff); /*グラデーションを定義*/
	background-size: 800% 800%; /*サイズを大きくひきのばす*/
	animation: bggradient 5s ease infinite;
}
.bg_gr.d {
	top: 120%;
	left: 0;
	margin: 0;
	width: 60%;
	background: linear-gradient(-45deg, #ffe7ef, #fbe4f6, #ffe7ef, #b5edff); /*グラデーションを定義*/
	background-size: 800% 800%; /*サイズを大きくひきのばす*/
	animation: bggradient 5s ease infinite;
}
@keyframes bggradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}
@media screen and (max-width: 768px) {}
/*-----------------------------
/*キャリア
-------------------------*/
.page-ttl {
	margin: 50px 0 0;
	font-size: 3rem;
}
.carrier-list {
	max-width: 800px;
	margin: 50px auto;
	width: 90%;
}
.carrier-list li {
	margin: 1em 0;
	list-style: disc;
}
.carrier-list .other {
	list-style: none;
	text-align: right;
}
.voice-sumple {
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	justify-content: center;
}
.voice-sumple li {
	margin: 0 40px;
	background-color: #816767;
	padding: 10px 30px;
	border-radius: 10px;
}
.voice-sumple_ttl {
	text-align: center;
	margin: 0 0 20px;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		text-align: center;
	}
	#carrier .contents-inner {
		width: 100%;
		padding: 0 5% 0 10%;
	}
	.voice-sumple {
		display: block;
		width: 90%;
	}
	.voice-sumple li {
		margin: 0 0 10% -5%;
	}
	audio {
		width: 100%;
	}
}
/*-----------------------------
/*サービス
-------------------------*/
.services-box {
	text-align: center;
	margin: 50px 0 0;
}
.services-box dl {
	display: inline-block;
	text-align: justify;
}
.services_ttl {
	font-size: 2rem;
}
.services_ttl_sb {}
.price {
	font-size: 1.6rem;
	text-align: center;
	margin: 1em 0 0 1em;
}
.price .num {}
.price_txt {
	padding: 0 2em;
}
.attention {
	margin: 3em 0 2em;
}
.contact-link a {
	text-decoration: underline;
}
dd + .services_ttl {
	margin: 2em 0 0;
}
@media screen and (max-width: 768px) {}
/*-----------------------------
/*フッター
-------------------------*/
footer {
	background-color: #ffe9f4;
	padding: 20px 0 0;
}
.ft-wrap {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin: 0 auto 20px;
}
.ft-logo {
	font-size: 30px;
	margin: 0 40px 0 0;
}
.copyright {
	font-size: 12px;
	text-align: center;
}
/*-----------------------------
/*ワードプレス用追加
-------------------------*/
body {
	background: none;
}
/*news
-------------------------*/
#news {
	margin: 50px 0 0;
}
#news .contents-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.news_ttl {
	margin: 0 0 30px;
	font-size: 3rem;
	width: 20%;
	padding: 0 40px 0 0;
}
#news ul {
	width: 80%;
}
#news ul li {
	padding: 1em;
	border-bottom: solid 1px #d5c5c5;
	display: flex;
}
#news ul li a {
	padding: 0 0 0 1em;
}
@media screen and (max-width: 768px) {
	.news_ttl {
		margin: 0 auto;
		padding: 0;
		width: 100%;
		text-align: center;
	}
}
/*contact
-------------------------*/
.contact {}
.contact-inner {
	max-width: 500px;
	margin: 40px auto 0;
}
.contact input {
	width: 100%;
	padding: 10px;
	margin: 0 0 20px;
}
.contact textarea {
	width: 100%;
}