/* リキッドレイアウト対応 */
body {
	color: #000000;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Meiryo", "Arial", sans-serif;
	font-size: 16px;
	font-weight: 400;
	height: 100%;
	background-image: url(../images/back_01.webp), url(../images/back_02.webp);
	background-size: 100% 50%, 100% 50%;
    background-repeat: no-repeat, no-repeat;
	width: 100%;
    max-width: 750px;
    margin: 0 auto;
	background-position: top, bottom;
}
html {
	font-size: 16px;
}

/* 画面の高さに合わせてフッターを下に広げる */
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
footer {
	margin-top: auto;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */
body.fixed {
	height: 100%;
	position: fixed;
	width: 100%;
}

/* ホバー */
a,button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */
.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

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

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

/* Remove default margin */
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,ol {
	list-style: none;
}

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

/* Make images easier to work with */
img {
	display: block;
	max-width: 100%;
	height: auto;
	width: 100%;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
	filter: blur(10px);
}

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

.header {
	background-color: #fff;
	height: 5.15625rem;
	padding-bottom: 3px;
	width: 100%;
	z-index: 200;
}

.header__inner {
    align-items: center;
    display: grid;
    gap: 0.625rem;
    grid-template-columns: max-content 1fr;
    height: inherit;
    padding-left: 0.925rem;
    padding-right: 1.125rem;
}

.header__logo {
	height: inherit;
}

.header__logo-link {
	align-items: center;
	display: inline-flex;
	height: inherit;
	width: 9.5rem;
}

.header__logo-link:hover {
	opacity: 1;
}

.header__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 550/200;
	object-fit: cover;
}

.header__nav {
    font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

.header__nav-items {
    display: grid;
  	place-items: end;
}

.header__nav-items a {
    align-content: center;
    color: #ffff00;
    background-color: #00399a;
    border: 2px solid #00399a;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0.5rem 0.95rem;
    width: inherit;
    word-break: keep-all;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 640px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.app--layout {
	background-color: rgb(25 64 179 / 70%);
	margin-bottom: 2rem;
}

.app__inner {
	padding: 3.5rem 3rem 3rem 3rem;
}

.app_title__img {
	margin-bottom: 1rem;
}

.app__wrap {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.app__links {
    display: flex;
    flex-direction: column;
	gap: 5px;
}

.whats--layout {
	margin-bottom: 5rem;
}

.whats__inner {
	padding: 0;
}

.features--layout {
	background: url(../images/features.webp) ;
	background-size: cover;
	background-position: top; 
	background-repeat: no-repeat; 
	margin-bottom: 5rem;
}

.features__inner {
	padding: 0 1.5rem;
}

.features__wrap {
	padding-top: calc(410 / 750 * 100%);
	padding-bottom: calc(230 / 750 * 100%);
}

.features__img {
	margin-bottom: 2rem;
}

.presentsystem--layout {
	margin-bottom: 4rem;
}

.presentsystem__inner {
	padding: 0 1.5rem;
}

.movie--layout {
	margin-bottom: 5rem;
}

.movie__img {
	padding: 1.5rem 3rem;
}
.movie__carousel__item {
	aspect-ratio: 350 / 677;
	background: url(../images/phone.webp);
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
}
.slide-video {
	padding: 3.75rem 1.25rem;
	margin-left: -0.125rem;
	width: 100%;
}

.sns--layout {
	background-color: #fff;
}

.sns__inner{
	padding: 3rem 2rem;
	box-shadow: 0 -5px 10px -4px rgba(0, 0, 0, 0.3);
}

.sns__wrap {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.sns__icon {
	display: flex; 
	flex-direction: column; 
	gap: 10px;
}

.footer {
	background-color: #2b508e;
	padding-bottom: 1.875rem;
	padding-top: 2.4375rem;
}

.footer__policy {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 0.75rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 29.875rem;
	padding-bottom: 0.83125rem;
	padding-left: 0.78125rem;
	padding-right: 0.78125rem;
	padding-top: 0.75rem;
	align-items: center;
}

.footer__policy-line {
	background-color: #fff;
	height: 1.3125rem;
	margin: 0 0.5rem;
	width: 1px;
}

.footer__policy-privacy {
	color: #fff;
	font-size: 0.675rem;
	font-weight: 500;
	line-height: 156%;
	text-align: center;
}

.footer_copy-right {
	color: #fff;
	font-size: 0.75rem;
	text-align: center;
}

@media screen and (min-width: 410px) {

.footer__policy-privacy {
	text-align: left;
}

}

@media screen and (min-width: 768px) {

html {
	font-size: 1.6293279022vw;
}

body {
	background-size: 750px 50%, 750px 50%;
}


body.fixed {
	position: static;
	position: initial;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:hover,
button:hover {
	opacity: 0.6;
}

a:not([href]):hover {
	opacity: 1;
}

.inner {
	max-width: 1042px;
	padding-left: 30px;
	padding-right: 30px;
}

.header {
	height: 8.125rem;
}

.header__inner {
	padding-left: 2rem;
	padding-right: 2rem;
}

.header__logo-link {
	width: 15.5rem;
}

.header__nav-items a {
	border-radius: 2rem;
    font-size: 2.125rem;
    padding: 0.8rem 1.75rem;
}

.app__inner {
	padding: 5.5rem 5rem 5rem 5rem;
}

.whats__inner {
    padding: 0;
}

.features--layout {
    margin-bottom: 8rem;
}

.movie__img {
	padding: 3.5rem 5rem;
}

.sns__inner{
	padding: 4rem;
}

.sns__wrap {
	gap: 3rem;
}

.footer__policy {
	gap: 1.5rem;
	margin-bottom: 1.4375rem;
	padding-bottom: 1.0375rem;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
	padding-top: 0.9125rem;
}

.footer__policy-privacy {
	font-size: 0.9rem;
}

.footer_copy-right {
	font-size: 0.9375rem;
}

}

@media (min-width: 414px) {
	.slide-video {
		padding: 5rem 2.25rem;
		margin-left: -0.25rem;
	}
}
@media (min-width: 982px) {
	html {
		font-size: 16px;
	}
}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}