@charset "UTF-8";

/* =====================================================
  1.0 - Foundation
===================================================== */
/**
 * Default box-sizing
 */
*,
::before,
::after {
	box-sizing: inherit;
	background: transparent;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
}

/*
	フォントの親要素の値を継承。
	（body以外のすべての要素。）
*/
*:not(body) {
	font-size: inherit;
	font-weight: inherit;
	font-style: inherit;
	line-height: inherit;
}

html {
	color: #222222;
	background: #ffffff;
	overflow-y: scroll;
	box-sizing: border-box;
	min-height: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	-webkit-text-size-adjust: 100%;
}

/**
 * Resetting HTML5 Elements for older browsers
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
	display: block;
}

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,
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,
input,
textarea,
button,
select,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

td,
th {
	vertical-align: top;
}

img {
	vertical-align: bottom;
}

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

table {
	border-collapse: separate;
	border-spacing: 0;
}

p,
li,
dd,
dt,
td,
th {
	word-wrap: break-word;
}

select,
input {
	word-wrap: normal;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
time,
mark {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}

q:before,
q:after {
	content: "";
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

mark {
	color: #000;
	background: #fff;
}

sup {
	font-size: 70%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}

sub {
	vertical-align: text-bottom;
}

input,
textarea,
select,
keygen {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

legend {
	color: #000;
}

pre,
code,
kbd,
samp,
tt {
	font-family: monospace;
	line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]),
textarea,
button {
	/* iosでボタンなどのデフォルト装飾を解除 */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input:focus,
select:focus,
textarea:focus {
	outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
	border: 0px;
}

h1,
h2,
h3,
h4,
h5,
strong {
	font-weight: 700;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	position: relative;
	width: 100%;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	font-family: "Zen Kaku Gothic New", serif;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.8;
	color: #222222;
	/*overflow: hidden;*/
}

body::before {
	display: flex;
	position: fixed;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	background-image: url(../img/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	content: "";
}

:root {
	--leading-trim: calc((1rem - 1lh) / 2);
}

/* =====================================================
  2.0 - Layout
===================================================== */
.header {
	position: relative;
	width: 100%;
	height: 80px;
	padding: 0 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #ffffff;
	box-shadow: 0px 4px 6px 0 rgba(34, 34, 34, 0.25);
	/*flex: none;
  z-index: 1;*/
	/*
  	@include mq(pc) {
  		width: 395px;
  	}*/
}

@media screen and (min-width: 769px) {
	.header {
		border-radius: 24px 24px 0 0;
	}
}

.header::before {
	position: absolute;
	width: 246px;
	height: 60px;
	justify-content: center;
	background-image: url(../img/bg-header.png);
	background-size: contain;
	background-repeat: no-repeat;
	left: calc(50% - 124px);
	bottom: -56px;
	content: "";
}

.header__logo {
	width: 180px;
	margin-top: 32px;
	z-index: 1;
}

.p-header__logo {
	width: 180px;
	margin-top: 32px;
	z-index: 1;
}

.wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #ff9900;
	overflow-x: hidden;
}

@media screen and (min-width: 769px) {
	.wrapper {
		width: 428px;
		top: 40px;
		left: calc(50% - 53.5px);
		border-radius: 24px 24px 0 0;
	}
}

.container {
	position: relative;
	width: 100%;
}

.container::-webkit-scrollbar {
	display: none;
}

.section-appear {
	position: relative;
}

.section-appear::before {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	top: -72px;
	left: 0;
}

@media screen and (min-width: 768px) {
	.section-appear::before {
		top: -104px;
	}
}

@media screen and (min-width: 769px) {
	.section-appear::before {
		top: -72px;
	}
}

.section-appear_01 {
	padding-top: 48px;
}

.section-appear_01::before {
	background-image: url(../img/bg-section_appear01.png);
}

.section-appear_02 {
	padding-top: 144px;
}

.section-appear_02::before {
	background-image: url(../img/bg-section_appear02.png);
}

.content {
	position: relative;
	padding: 0 5% 120px;
}

.sns {
	display: none;
}

@media screen and (min-width: 769px) {
	.sns {
		display: block;
		position: fixed;
		bottom: 72px;
		right: 3%;
	}
}

.sns__link {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.section-bg img {
	width: 100%;
}

.l-footer {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	align-items: center;
	background-color: #ffffff;
}

.p-footer__logo {
	width: 180px;
	margin-top: 64px;
}

.p-footer__sns {
	display: flex;
	flex-direction: row;
	-moz-column-gap: 32px;
	column-gap: 32px;
	margin: 40px 0 64px;
}

.p-footer__copyright {
	padding-bottom: 12px;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
.link-button {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	box-shadow: 3px 3px 6px 0 rgba(34, 34, 34, 0.25);
	border-radius: 16px;
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: all 1s ease-in-out;
}

.link-button:focus,
.link-button:hover {
	box-shadow: inset 3px 3px 3px 0 rgba(34, 34, 34, 0.25);
	transition: all 1s ease-in-out;
}

/*
  3.2 - Project
-----------------------------------------------------*/
.access {
	background-color: #ffffff;
}

.access .content__title span {
	color: #ff9900;
}

.access .content__txt span.closed {
	margin-left: 24px;
	font-weight: 700;
}

.access__map {
	margin-top: 40px;
}

.access__map iframe {
	width: 100% !important;
	border-radius: 24px;
}

.contact .content__title span {
	color: #ffffff;
}

.contact .content__txt {
	color: #ffffff;
}

.call {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 48px;
}

.call__content {
	padding: 20px;
}

.call__content .msg-txt {
	display: flex;
	align-items: center;
}

.call__content span {
	display: inline-block;
	margin-left: 16px;
}

.call .phone-number {
	margin-top: 12px;
	font-size: 4rem;
	font-weight: 900;
	letter-spacing: 0.6rem;
	line-height: 1;
}

.content__title {
	margin-bottom: 48px;
	text-align: center;
}

.content__title span {
	display: block;
	font-weight: 700;
	-webkit-margin-before: calc(24px + var(--leading-trim));
	margin-block-start: calc(24px + var(--leading-trim));
}

.content__txt {
	-webkit-margin-before: calc(0 + var(--leading-trim));
	margin-block-start: calc(0 + var(--leading-trim));
	text-align: justify;
	font-size: 1.8rem;
	font-weight: 500;
}

.gnavi {
	position: absolute;
	width: 100%;
	height: 100vh;
	margin-bottom: 24px;
	top: 0;
	right: -9999px;
	background-color: #ff9900;
	z-index: 1;
	transition: 0.5s;
}

@media screen and (min-width: 769px) {
	.gnavi {
		width: 428px;
		border-radius: 24px 24px 0 0;
	}
}

.gnavi.active {
	display: block;
	right: 0;
	transition: 0.5s;
}

.gnavi__content {
	position: relative;
	margin-top: 80px;
}

.gnavi__content__list {
	text-align: center;
}

.gnavi__content__list__item {
	margin: 4rem 0;
	font-size: 2.4rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}

.gnavi__content__list__item a {
	text-decoration: none;
}

.gnavi__footer {
	position: absolute;
	width: 100%;
	height: 160px;
	text-align: center;
	background-color: #ffffff;
	bottom: 0;
}

.gnavi__footer::before {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	top: -72px;
	left: 0;
	background-image: url(../img/bg-section_appear01.png);
}

.gnavi__footer__logo {
	position: relative;
	width: 160px;
	z-index: 1;
}

.gnavi__footer__sns {
	display: flex;
	flex-direction: row;
	justify-content: center;
	-moz-column-gap: 32px;
	column-gap: 32px;
	margin-top: 24px;
}

.gnavi__footer__sns img {
	width: 32px;
}

.hamburger {
	position: relative;
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.menu_open {
	opacity: 1;
	transition: 0.25s;
}

.menu_open.active {
	opacity: 0;
}

.menu_close {
	position: absolute;
	opacity: 0;
	transition: 0.25s;
}

.menu_close.active {
	opacity: 1;
	z-index: 5;
	right: 0;
	top: 6px;
}

.menu {
	margin-bottom: 80px;
}

.menu .content__title span {
	color: #ffffff;
}

.menu .content__txt {
	color: #ffffff;
}

.menu__content {
	position: relative;
	margin-top: 64px;
}

.menu__content__title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.8rem;
	color: #ffffff;
	text-align: center;
}

.menu__content__title::before,
.menu__content__title::after {
	display: flex;
	align-items: center;
	width: 20px;
	height: 3px;
	background-image: url(../img/h3-title_appear.png);
	background-repeat: no-repeat;
	content: "";
}

.menu__content__title::before {
	margin-right: 24px;
}

.menu__content__title::after {
	margin-left: 24px;
}

.menu__content__item {
	position: relative;
	margin-top: 32px;
	background-color: #ffffff;
	border-radius: 24px;
}

.menu__content__item__img {
	position: relative;
	width: 100%;
	border-radius: 24px 24px 0 0;
}

.menu__content__item .ph-memo {
	position: absolute;
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	top: 12px;
	left: 12px;
}

.menu__content__item .recommend {
	position: absolute;
	width: 100px;
	top: -30px;
	right: -3%;
	z-index: 1;
}

.menu__content__item__title {
	padding: 24px 16px 0;
	font-size: 2.4rem;
	line-height: 1;
}

.menu__content__item .copy {
	color: #ff9900;
}

.menu__content__item__txt {
	-webkit-margin-before: calc(21px + var(--leading-trim));
	margin-block-start: calc(21px + var(--leading-trim));
	padding: 0 16px 24px;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: justify;
}

.menu__content__item__list {
	margin-top: -16px;
	padding: 0 16px 24px;
}

.menu__content__item__list li {
	margin-left: 2.5rem;
	list-style: disc;
}

.mainvisual {
	position: relative;
	margin: 64px 0;
}

.mainvisual__ph {
	width: 100%;
	border-radius: 24px;
}

.mainvisual__content-title {
	margin-top: 40px;
}

.mainvisual__content-txt {
	font-size: 2.1rem;
	font-weight: 700;
	color: #ffffff;
	-webkit-margin-before: calc(32px + var(--leading-trim));
	margin-block-start: calc(32px + var(--leading-trim));
	margin-bottom: 48px;
}

.info {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.info__content {
	width: calc(100% - 12px);
	height: 108px;
}

.info__content span {
	-webkit-margin-before: calc(16px + var(--leading-trim));
	margin-block-start: calc(16px + var(--leading-trim));
}

.news {
	background-color: #ffffff;
}

.news .content__title span {
	color: #ff9900;
}

.note {
	margin-top: 12px;
	font-size: 1.3rem;
	font-weight: 500;
}

.pc-none {
	display: block;
}

@media screen and (min-width: 768px) {
	.pc-none {
		display: none;
	}
}

@media screen and (min-width: 769px) {
	.pc-none {
		display: none;
	}
}

.fb-page {
	margin: 40px 0 12px;
	width: 100% !important;
}

.fb_iframe_widget {
	display: flex !important;
	justify-content: center !important;
}

.follow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 16px;
}

.follow__content {
	width: 280px;
	height: 56px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.follow__content__fb {
	background-color: #0865fe;
}

.follow__content__ig {
	background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
	background-size: 200% 200%;
}

.follow__content img {
	width: 32px;
	height: 32px;
}

.follow__content span {
	margin-left: 16px;
	color: #ffffff;
}

/*
  3.2 - Utility
-----------------------------------------------------*/
/*
  Visually Hidden
*/
.u-visuallyHidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
	white-space: nowrap;
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
}

/*
  Screen Reader Text
*/
.screen-reader-text {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
}

.mt24 {
	margin-top: 24px;
}

/*# sourceMappingURL=common.css.map */