@charset "UTF-8";

/* サイト全体の基本設定 */
html {
	scroll-behavior: smooth;
}

body {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	width: 100%;
	font-size: 15px;
	line-height: 2.0;
	margin: 0 auto;
	font-weight: 400;
	color: #333333;
	background-color: #ffffff;
	overflow-x: hidden;
}

img {width: 100%; display: block;}

ol, ul, li {list-style-type: none;}

a {color: #3b7d72;}

* {box-sizing: border-box;}



/* レスポンシブ用の基本設定 */
.sp-only {
	display: none;
}

/* スマートフォン用 */
@media screen and (max-width: 768px) {
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
}

/* 英字フォント */
.en {
	font-family: 'Montserrat';
}



/* ヘッダー設定 */
.header-wrapper {
	position: fixed;
	top: 0;
	background: #ffffff;
	width: 100%;
	z-index: 999;
	box-shadow: 10px 0 20px 0 rgba(150, 150, 150, 0.5);
	height: 80px;
	padding: 0 20px;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

h1.header-logo {
	width: 32%;
}

h1.header-logo a {
	display: flex;
	align-items: stretch;
	text-decoration: none;
}

h1.header-logo a .logo-domy {
	max-width: 80px;
	aspect-ratio: 1/1;
	padding: 15px;
}

h1.header-logo a .logo-domy img {
	max-height: 50px;
}

h1.header-logo a .logo-delica {
	max-width: 80px;
	aspect-ratio: 1/1;
}

h1.header-logo a .logo-delica img {
	max-height: 80px;
}

h1.header-logo a .company-name {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: #333333;
	background-color: #f5f5f5;
	padding: 15px;
	display: flex;
	align-items: center;
}

.pc-only-nav {
	width: 68%;
}

nav.pc-nav > ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}

nav.pc-nav > ul > li {
	padding: 0 10px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	position: relative;
}
/* ブレイクポイント1280 */
@media screen and (max-width: 1280px) {
	nav.pc-nav > ul > li {
		padding: 0 7px;
	}
}

nav.pc-nav > ul > li > a {
	color: #333333;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-align: center;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
/* ブレイクポイント1280 */
@media screen and (max-width: 1280px) {
	nav.pc-nav > ul > li > a {
		letter-spacing: 0;
	}
}

nav.pc-nav > ul > li.recruit > a {
	color: #ffffff;
	letter-spacing: 0.1em;
	text-align: left;
	height: 100%;
}

nav.pc-nav > ul > li > a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #3b7d72;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transform: scale(0, 1);
	-webkit-transform: scale(0, 1);
	-moz-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	transform-origin: left top;
}

nav.pc-nav > ul > li.recruit > a::after {
	content: url(../img/common/navi-next-white.svg);
	bottom: auto;
	left: auto;
	height: auto;
	background: none;
	transform: translateY(-50%) scale(1, 1);
	-webkit-transform: translateY(-50%) scale(1, 1);
	-moz-transform: translateY(-50%) scale(1, 1);
	-ms-transform: translateY(-50%) scale(1, 1);
	-o-transform: translateY(-50%) scale(1, 1);
}

nav.pc-nav > ul > li:hover > a {
	color: #3b7d72;
}

nav.pc-nav > ul > li:hover > a::after {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
}

nav.pc-nav > ul > li.recruit:hover > a::after {
	content: url(../img/common/navi-next-green.svg);
	transform: translateY(-50%) scale(1, 1);
	-webkit-transform: translateY(-50%) scale(1, 1);
	-moz-transform: translateY(-50%) scale(1, 1);
	-ms-transform: translateY(-50%) scale(1, 1);
	-o-transform: translateY(-50%) scale(1, 1);
}

nav.pc-nav > ul > li > .nav-child {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 10px;
	width: 220px;
	background-color: #3b7d72;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

nav.pc-nav > ul > li:hover > .nav-child {
	visibility: visible;
	opacity: 1;
}

nav.pc-nav .nav-child > li > a {
	color: #ffffff;
	line-height: 1.0;
	text-decoration: none;
	padding: 18px 25px 18px 15px;
	width: 100%;
	position: relative;
	text-align: left;
	background-color: #3b7d72;
	display: block;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

nav.pc-nav .nav-child > li > a::after {
	content: url(../img/common/navi-next-white.svg);
	width: 100%;
	max-width: 20px;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

nav.pc-nav .nav-child > li > a:hover {
	background-color: #589087;
}



/* フッター設定 */
.footer-wrapper {
	margin-top: 200px;
	background-color: #f5f5f5;
}

.footer-container {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
}
/* ブレイクポイント1160 */
@media screen and (max-width: 1160px) {
	.footer-container {
		width: 90%;
	}
}

.footer-container .contents {
	display: flex;
	padding: 50px 0;
}

.footer-container .contents .company-profile {
	width: 47%;
}

.footer-container .company-profile .footer-logo {
	display: flex;
	max-width: 230px;
}

.footer-container .company-profile .footer-logo figure {
	width: 45%;
}

.footer-container .company-profile .footer-logo figure:first-of-type {
	margin-right: 10%;
}

.footer-container .company-profile .office {
	margin-top: 20px;
}

.footer-container .company-profile .office dt {
	font-size: 18px;
	font-weight: 500;
}

.footer-container .company-profile .office dd {
	font-size: 14px;
}

.footer-container .company-profile .sns {
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.5;
}

.footer-container .company-profile .sns a {
	display: inline-block;
	color: #666666;
	text-decoration: none;
	border: 1px solid #666666;
	padding: 3px 15px;
}

.footer-container .company-profile .sns a:hover {
	opacity: 0.8;
}

.footer-container .company-profile .sns a span {
	display: inline-block;
}

.footer-container .company-profile .sns a .icon {
	width: 18px;
	margin-right: 2px;
	vertical-align: text-bottom;
}

.footer-container .contents .footer-nav {
	width: 27%;
	display: flex;
	flex-wrap: wrap;
}

.footer-container .footer-nav ul:first-of-type {
	margin-right: 30px;
}

.footer-container .footer-nav ul li {
	margin-bottom: 10px;
}

.footer-container .footer-nav ul li a {
	color: #333333;
	text-decoration: none;
	line-height: 1.1;
}

.footer-container .footer-nav ul li a span {
	position: relative;
	display: inline-block;
	width: 22px;
	vertical-align: middle;
}

.footer-container .footer-nav ul li a span::before {
	content: url(../img/common/navi-next-black.svg);
	width: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.footer-container .footer-nav ul li a:hover {
	color: #3b7d72;
}

.footer-container .footer-nav ul li a:hover span::before {
	content: url(../img/common/navi-next-green.svg);
}

.footer-container .contents .footer-contact {
	width: 26%;
	min-width: 253px;
}

.footer-container .footer-contact .inner {
	width: 100%;
	display: block;
	text-decoration: none;
	background-color: #3b7d72;
	padding: 30px;
	color: #ffffff;
	text-align: center;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.footer-container .footer-contact .inner:hover {
	background-color: #62978e;
}

.footer-container .footer-contact .inner .ttl_en {
	font-size: 25px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.footer-container .footer-contact .inner .ttl_jp {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.footer-container .footer-contact .inner figure {
	max-width: 45px;
	margin: 10px auto;
}

.footer-container .footer-contact .inner .comment {
	font-size: 13px;
	line-height: 1.5;
}

.footer-container .footer-under {
	background-color: #3b7d72;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.footer-container .footer-under .under-contents {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
	color: #ffffff;
}
/* ブレイクポイント1160 */
@media screen and (max-width: 1160px) {
	.footer-container .footer-under .under-contents {
		width: 90%;
	}
}

.footer-container .footer-under .under-contents ul {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	line-height: 1.2;
}

.footer-container .footer-under .under-contents ul li {
	padding: 0 10px;
	border-left: 1px solid #ffffff;
}

.footer-container .footer-under .under-contents ul li:first-of-type {
	border-left: none;
}

.footer-container .footer-under .under-contents ul li a {
	color: #ffffff;
	text-decoration: none;
}

.footer-container .footer-under .under-contents ul li a:hover {
	text-decoration: underline;
}

.footer-container .footer-under .under-contents .copyrights {
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: 0.05em;
}



/* 共通フレーム基本設定 */
.wrapper {
	margin: 150px auto;
}

.container {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
}
/* ブレイクポイント1160 */
@media screen and (max-width: 1160px) {
	.container {
		width: 90%;
	}
}



/* h2基本設定 */
h2.page-ttl {
	font-size: 35px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-align: center;
}

.page-ttl-en {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-align: center;
}


/* h3基本設定 */
h3.cont-ttl {
	font-size: 28px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.3em;
	color: #999999;
	text-align: center;
	margin-bottom: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

h3.cont-ttl:before,
h3.cont-ttl:after {
	content: "";
	width: 100px;
	height: 1px;
	background: #999999;
}

h3.cont-ttl:before {
	margin-right: 1em;
}

h3.cont-ttl:after {
	margin-left: 0.7em;
}


/* フォント設定 */
.fs70 {
	font-size: 70%;
}

.fs80 {
	font-size: 80%;
}

.fs120 {
	font-size: 120%;
}

.fs130 {
	font-size: 130%;
}

.fs150 {
	font-size: 150%;
}

.fs200 {
	font-size: 200%;
}


/* リンクボタン基本設定 */
.link-btn-green {
	font-size: 15px;
	line-height: 1.0;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: left;
	text-decoration: none;
	padding: 15px 30px 15px 20px;
	display: block;
	margin: 0 auto;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	position: relative;
	color: #ffffff;
	border: 1px solid #3b7d72;
	background: linear-gradient(to right, #d8e5e3 50%, #3b7d72 50%) 100% 0 / 200% 100%;
}

.link-btn-green::after {
	content: url(../img/common/navi-next-white.svg);
	width: 100%;
	max-width: 22px;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.link-btn-green:hover {
	color: #3b7d72;
	background-position: 0 0;
}

.link-btn-green:hover::after {
	content: url(../img/common/navi-next-green.svg);
}

.w150 {
	width: 150px;
}

.w200 {
	width: 200px;
}

.w250 {
	width: 250px;
}

.w300 {
	width: 300px;
}

.w400 {
	width: 400px;
}

.w500 {
	width: 500px;
}


/* 下層ページ基本設定 */
#page-title-sec {
	margin: 80px auto 0;
	background-color: #ebf2f1;
}

#page-title-sec .container {
	max-width: none;
}

#page-title-sec .container .contents {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#page-title-sec .container .contents .inner-ttl {
	width: 35%;
	padding: 0 20px;
}

#page-title-sec .container .contents .inner-img {
	background-repeat: no-repeat;
	background-size: cover;
	width: 65%;
	height: 300px;
	border-radius: 0 0 0 150px;
	-webkit-border-radius: 0 0 0 150px;
	-moz-border-radius: 0 0 0 150px;
	-ms-border-radius: 0 0 0 150px;
	-o-border-radius: 0 0 0 150px;
}


/* パンクズリスト設定 */
.breadcrumb {
	color: #333333;
	font-size: 14px;
	text-align: right;
	padding: 10px 20px;
}

.breadcrumb a {
	text-decoration: none;
	color: #333333;
	display: inline-block;
}

.breadcrumb a:hover {
	color: #3b7d72;
}


/* ページトップ設定 */
#page-top {
	width: 100px;
	aspect-ratio: 1/1;
	position: fixed;
	right: 20px;
	bottom: -200px;
	z-index: 999;
}

#page-top a {
	width: 100%;
	height: 100%;
	text-decoration: none;
	display: block;
	background-image: url(../img/common/page-top.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	overflow: hidden;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	color: #ffffff;
	padding-top: 43px;
	box-shadow: 0 0 5px rgba(150, 150, 150, 0.6);
}

#page-top a:hover {
	opacity: 0.9;
}


/* paging設定 */
.paging {
	margin: 50px auto;
	padding: 10px;
	text-align: center;
}

.paging li {
	display: inline;
	margin: 0 2px;
}

.paging a,
.paging span.active {
	padding: 5px 12px;
	font-size: 16px;
	line-height: 1.5em;
	text-decoration: none;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.paging a {
	border: 1px solid #cccccc;
	color: #666666;
}

.paging li.prev a,
.paging li.next a {
	border: none;
}

.paging a:hover {
	border: 1px solid #3b7d72;
	color: #3b7d72;
}

.paging span.active {
	background-color: #3b7d72;
	border: 1px solid #3b7d72;
	color: #ffffff;
}

.paging a .arrow-prev,
.paging a .arrow-next {
	width: 18px;
	height: 100%;
	position: relative;
}

.paging a .arrow-prev::before {
	content: url(../img/common/angles-left-gray.svg);
	z-index: 1;
}

.paging a .arrow-prev::after {
	content: url(../img/common/angles-left-green.svg);
	z-index: 2;
	opacity: 0;
}

.paging a .arrow-next::before {
	content: url(../img/common/angles-right-gray.svg);
	z-index: 1;
}

.paging a .arrow-next::after {
	content: url(../img/common/angles-right-green.svg);
	z-index: 2;
	opacity: 0;
}

.paging a:hover .arrow-prev::after,
.paging a:hover .arrow-next::after {
	opacity: 1;
}

.paging a .arrow-prev::before,
.paging a .arrow-prev::after,
.paging a .arrow-next::before,
.paging a .arrow-next::after {
	width: 18px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}



/* グローバルナビの設定 */
.sp-only-nav {
	display: none;
}

/* 1160px以下で閲覧時 - ブレイクポイント1160　*/
@media screen and (max-width: 1160px) {

	/* グローバルナビ切り替え */
	.sp-only-nav {
		display: block;
	}
	.pc-only-nav {
		display: none;
	}

	/* ハンバーガーメニュー */
	#g-nav {
		position: fixed;
		z-index: 999;
		top: 0;
		right: -200%;
		width: 100%;
		height: 100vh;
		background:#ebf2f1;
		transition: all 0.6s;
		-webkit-transition: all 0.6s;
		-moz-transition: all 0.6s;
		-ms-transition: all 0.6s;
		-o-transition: all 0.6s;
	}

	#g-nav.panelactive {
		right: 0;
	}

	/*ナビゲーションの縦スクロール*/
	#g-nav.panelactive #g-nav-list {
		position: fixed;
		z-index: 999;
		width: 100%;
		height: 100vh;
		margin: 0 auto;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		padding: 20px 0;
	}

	.g-nav #g-nav-list .logo {
		width: 50%;
		max-width: 150px;
		margin: 0 auto;
	}

	.g-nav #g-nav-list .logo a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.g-nav #g-nav-list .logo a img {
		width: 45%;
	}

	/*ナビゲーション*/
	.g-nav-list-inner > ul {
		margin: 20px auto;
		width: 90%;
	}

	/*リストのレイアウト設定*/

	.g-nav-list-inner > ul > li {
		list-style: none;
		text-align: center;
		font-size: 16px;
		line-height: 1.5em;
		border-bottom: solid 1px #b1cbc7;
	}

	.g-nav-list-inner > ul > li > a {
		color: #333333;
		text-decoration: none;
		padding: 20px;
		display: block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-weight: normal;
	}

	.g-nav-list-inner > ul > li.recruit {
		border-bottom: none;
	}

	.g-nav-list-inner > ul > li.recruit .page_category {
		padding: 20px 0 20px 0;
	}

	.g-nav-list-inner > ul > li.recruit a {
		width: 100%;
		color: #ffffff;
	}

	/*========= ボタンのためのCSS ===============*/
	.openbtn {
		position:fixed;
		z-index: 9999;
		top: 5px;
		right: 5px;
		cursor: pointer;
		width: 50px;
		height: 50px;
	}

	/*×に変化*/
	.openbtn span {
		display: inline-block;
		position: absolute;
		left: 14px;
		height: 2px;
		border-radius: 0;
		background-color: #666;
		width: 45%;
		transition: all 0.4s;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		-ms-transition: all 0.4s;
		-o-transition: all 0.4s;
	}

	.openbtn span:nth-of-type(1) {
		top:15px;
	}

	.openbtn span:nth-of-type(2) {
		top:23px;
	}

	.openbtn span:nth-of-type(3) {
		top:31px;
	}

	.openbtn.active span:nth-of-type(1) {
		top: 18px;
		left: 15px;
		transform: translateY(6px) rotate(-45deg);
		width: 40%;
	}

	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn.active span:nth-of-type(3){
		top: 30px;
		left: 15px;
		transform: translateY(-6px) rotate(45deg);
		width: 40%;
	}

	.page_category {
		padding: 20px 35px 20px 5px;
		position: relative;
		z-index: +1;
		cursor: pointer;
		transition: .35s;
		font-size: 18px;
		font-weight: 500;
		line-height: 1em;
		text-align: left;
	}
	.page_category > a {
		display: block;
		text-decoration: none;
		color: #333;
	}
	.add_mark {
		position: absolute;
		top: 50%;
		right: 5px;
		width: 16px;
		height: 16px;
		margin-top: -10px;
	}
	.add_mark:before, .add_mark:after {
		position: absolute;
		content: "";
		margin: auto;
		box-sizing: border-box;
		vertical-align: middle;
	}
	.add_mark:before {
		border-top: 2px solid #3b7d72;
		width: 14px;
		height: 0;
		top: 6px;
		bottom: 0;
		right: 0;
	}
	.add_mark:after {
		border-left: 2px solid #3b7d72;
		width: 0;
		height: 14px;
		top: 6px;
		bottom: 0;
		left: 8px;
		transition: .3s;
	}
	.page_category.open .add_mark:after {
		height: 0;
	}
	.page_link {
		display: none;
		padding: 0 15px 20px 15px;
		font-size: 15px;
		border-radius: 8px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		-ms-border-radius: 8px;
		-o-border-radius: 8px;
	}
	.page_link ul li .page_link_btn {
		text-align: left;
		display: block;
		font-size: 16px;
		margin-bottom: 10px;
		position: relative;
		padding-left: 1em;
		color: #333;
		text-decoration: none;
		position: relative;
	}

	.page_link ul li .page_link_btn .arrow {
		position: relative;
		width: 15px;
		height: 0.7em;
		display: inline-block;
		margin-left: 5px;
	}
	.page_link ul li .page_link_btn .arrow::after {
		content: url("../img/common/navi-next-black.svg");
		position: absolute;
		top: 50%;
		right: 0;
		width: 100%;
		max-width: 15px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
}
	.page_link ul li:last-of-type .page_link_btn {
		margin-bottom: 0;
	}

	/* ハンバーガーメニュー-end */

	.header-wrapper {
		height: 60px;
		padding: 0;
	}

	h1.header-logo {
		width: calc(100% - 60px);
	}

	h1.header-logo a .logo-domy {
		max-width: 59px;
		padding: 11px;
	}

	h1.header-logo a .logo-delica {
		max-width: 60px;
	}

	h1.header-logo a .company-name {
		font-size: 14px;
		padding: 7px;
	}

	#page-title-sec {
		margin: 60px auto 0;
	}

	#page-title-sec .container {
		width: 100%;
	}

}


/* スマートフォン用 - ブレイクポイント768　*/
@media screen and (max-width: 768px) {

	body {
		font-size: 14px;
		line-height: 1.8;
	}


	/* フッター設定 */
	.footer-wrapper {
		margin-top: 100px;
	}

	.footer-container .contents {
		display: block;
	}

	.footer-container .contents .company-profile {
		width: 100%;
	}

	.footer-container .company-profile .footer-logo {
		max-width: 200px;
		margin: 0 auto;
	}

	.footer-container .company-profile .office dt {
		font-size: 16px;
		text-align: center;
	}

	.footer-container .company-profile .office dd {
		font-size: 13px;
		text-align: center;
	}

	.footer-container .company-profile .sns {
		text-align: center;
	}
	
	.footer-container .contents .footer-nav {
		display: none;
	}

	.footer-container .contents .footer-contact {
		width: 100%;
		margin-top: 30px;
	}

	.footer-container .footer-contact .inner {
		padding: 20px;
	}
	
	.footer-container .footer-contact .inner .ttl_en {
		font-size: 18px;
	}
	
	.footer-container .footer-contact .inner .ttl_jp {
		font-size: 13px;
	}
	
	.footer-container .footer-contact .inner figure {
		max-width: 30px;
	}

	.footer-container .footer-under .under-contents {
		display: block;
	}
	
	.footer-container .footer-under .under-contents ul {
		justify-content: center;
	}

	.footer-container .footer-under .under-contents .copyrights {
		margin-top: 20px;
		text-align: center;
	}


	/* 共通フレーム基本設定 */
	.wrapper {
		margin: 80px 0;
	}


	/* h2基本設定 */
	h2.page-ttl {
		font-size: 28px;
		letter-spacing: 0.1em;
	}
	
	.page-ttl-en {
		font-size: 15px;
	}
	

	/* h3基本設定 */
	h3.cont-ttl {
		font-size: 20px;
		letter-spacing: 0.1em;
		margin-bottom: 30px;
	}
	
	h3.cont-ttl:before,
	h3.cont-ttl:after {
		width: 50px;
	}

	h3.cont-ttl:before {
		margin-right: 0.5em;
	}

	h3.cont-ttl:after {
		margin-left: 0.3em;
	}


	/* 下層ページ基本設定 */
	#page-title-sec .container .contents{
		display: block;
	}

	#page-title-sec .container .contents .inner-ttl {
		width: 100%;
		padding: 20px 20px 10px 20px;
	}

	#page-title-sec .container .contents .inner-img {
		width: 95%;
		height: 150px;
		border-radius: 0 0 0 50px;
		-webkit-border-radius: 0 0 0 50px;
		-moz-border-radius: 0 0 0 50px;
		-ms-border-radius: 0 0 0 50px;
		-o-border-radius: 0 0 0 50px;
		margin: 0 0 0 auto;
	}
	

	/* パンクズリスト設定 */
	.breadcrumb {
		font-size: 12px;
	}
	
	/* ページトップ設定 */
	#page-top {
		width: 75px;
	}

	#page-top a {
		font-size: 10px;
		padding-top: 32px;
	}

}





