@charset "UTF-8";

/* base */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

body {
	line-height: 1;
}

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;
}

:root {
	--scrollbar: 0;
	--accent: #EF8000;
	--light: #FEDB4F;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

html:has(#navi[aria-hidden=false]) {
	overflow: hidden;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	background: #F7F7F7;
	font-size: 1.4rem;
	color: #000;
	word-wrap: break-word;
}

a {
	color: inherit;
}

div[id],
section[id],
article[id] {
	scroll-margin-top: 120px;
}

img {
	max-width: 100%;
	height: auto;
}

input,
textarea,
select,
button {
	font: inherit;
	color: inherit;
	outline: none;
}

button,
a {
	cursor: pointer;
}

button:focus-visible,
a:focus-visible {
	outline: auto;
}

/* for development */

pre {
	padding: 15px;
	background: #eee;
	font-size: 1.2rem;
	line-height: 1.2;
}

/* Tools */

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.d-block {
	display: block;
}

.d-inline-block {
	display: inline-block;
}

.hidden {
	display: none !important;
}

.clearfix::before,
.clearfix::after {
	content: "";
	display: table;
}

.clearfix::after {
	clear: both;
}

.clear {
	clear: both;
}

/* show only  SP/PC
-------------------------------*/

.sp-only {
	display: none !important;
}

.sp-only-2 {
	display: none !important;
}

.pc-only {
	display: block !important;
}

.pc-only-2 {
	display: inline-block !important;
}

/* font
-------------------------------*/

.fw-700 {
	font-weight: 700;
}

/* margin
-------------------------------*/

/* padding
-------------------------------*/

/* gap
-------------------------------*/

/* grid
-------------------------------*/

.grid-1col > *,
.grid-2col > *,
.grid-3col > *,
.grid-4col > * {
	min-width: 0;
}

.grid-1col {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.grid-2col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.grid-3col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.grid-4col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

/* Layout */

.l-body {
	width: 100%;
}

.l-body.is-fixed {
	position: fixed;
}

.l-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-top: 3px solid var(--accent);
	height: 103px;
	background: #FFF;
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.l-header-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	width: 92%;
	max-width: 1000px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.l-footer {
	margin-top: 85px;
	padding: 18px 0;
	border-top: 3px solid #d4d4d4;
}

.l-navi {
	width: 100%;
	height: 100%;
}

.l-wrapper {
	position: relative;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

/* Module */

.noscript {
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	padding: 1em;
	border: 3px solid red;
}

.noscript span {
	color: red;
}

/*
#styleguide
heading-primary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-primary">見出し２です</p>
```
*/

/*
#styleguide
heading-secondary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-secondary">見出し２です</p>
```
*/

/*
#styleguide
heading-tertiary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-tertiary">見出し２です</p>
```
*/

.text-base {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.875;
}

.text-base strong {
	font-weight: 700;
}

.text-lg {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.875;
}

.text-lg--lh-sm {
	line-height: 0.875;
}

.text-lg strong {
	font-weight: 700;
}

.text-note {
	font-size: 1.1rem;
	line-height: 1.45455;
}

.text-marker {
	background: linear-gradient(to bottom, transparent 0%, transparent 55%, var(--light) 55%, var(--light) 100%);
	font-weight: 700;
}

.text-green {
	color: #094;
}

.text-orange {
	color: #EF8000;
}

.button-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 12px;
	padding: 9px 30px;
	border-radius: 100px;
	background: #F68300;
	color: #FFF;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.55556;
	text-decoration: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.button-1--search::after {
	content: "";
	display: block;
	width: 22px;
	height: 20px;
	background: url(../img/icon_search.svg) no-repeat center center/contain;
}

.button-1--green {
	background: var(--accent);
}

.button-1--plg {
	padding: 9px 48px;
}

.header-logo {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 372px;
	width: 38%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.header-logo img {
	display: block;
}

.gnavi {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	height: 100%;
}

.gnavi__item {
	padding: 0 1.43em;
	height: 100%;
}

.gnavi__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	font-size: 1.4rem;
	font-size: clamp(0.9rem, -0.7551724138rem + 2.1551724138vw, 1.4rem);
	font-weight: 600;
	line-height: 1.42857;
	text-decoration: none;
	min-width: 8.7rem;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.gnavi__link::before {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto 5px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.gnavi__link--icon-about::before {
	background-image: url(../img/icon_navi_about.png);
}

.gnavi__link--icon-check::before {
	background-image: url(../img/icon_navi_check.png);
}

.gnavi__link--icon-risk::before {
	background-image: url(../img/icon_navi_risk.png);
}

.gnavi__link--icon-search::before {
	background-image: url(../img/icon_navi_search.png);
}

.footer-main {
	font-size: 1.4rem;
	line-height: 1.7142857143;
}

.footer-main a {
	color: #00507a;
	text-decoration: none;
}

.footer-main__contact {
	padding-left: 10px;
	background: url(../img/icon_arrow_right.png) no-repeat left center/6px;
}

.footer-bottom {
	margin-top: 8px;
	text-align: right;
	font-size: 1.12rem;
	line-height: 1.2;
}

.footer-bottom a {
	display: block;
	color: #00507a;
	text-decoration: none;
}

.footer-bottom__copyright {
	display: block;
	margin-top: 10px;
}

.mainvisial {
	max-width: 930px;
	margin: 0 auto;
}

.about {
	margin-top: 88px;
}

.about__heading {
	margin-bottom: 0.5em;
	color: var(--accent);
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.28;
}

.about__fig {
	max-width: 940px;
	margin: 51px auto 0;
}

.about__fig--wide {
	max-width: 1000px;
	margin: 30px auto 0px;
}

.about__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	padding-left: 10px;
}

.about__notice {
	margin-top: 15px;
}

.about__note {
	margin-top: 8px;
}

.balloon-notice {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 22px;
}

.balloon-notice--horizontal {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}

.balloon-notice--horizontal-center {
	gap: 14px;
}

.balloon-notice--widerabbit {
	gap: 16px;
}

.balloon-notice--center {
	margin-inline: auto;
}

.balloon-notice__chara {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 89px;
}

.balloon-notice__chara img {
	display: block;
}

.balloon-notice__chara--rabbit {
	width: 105px;
	margin-left: 15px;
}

.balloon-notice__balloon {
	position: relative;
	max-width: 360px;
	padding: 15px 18px;
	border-radius: 10px;
	background: var(--light);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
}

.balloon-notice__balloon--rabbit {
	font-size: 1.5rem;
}

.balloon-notice__balloon--mw320 {
	max-width: 320px;
}

.balloon-notice__balloon--mw385 {
	max-width: 385px;
	padding: 10px 18px;
}

.balloon-notice__balloon--mw500 {
	max-width: 500px;
}

.balloon-notice__balloon--horizontal {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.balloon-notice__balloon--psm {
	padding: 14px 15px;
}

.balloon-notice__balloon strong {
	font-weight: 700;
}

.balloon-notice__balloon__lg {
	font-size: 1.8rem;
}

.balloon-notice__balloon::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-top: 10px solid transparent;
	border-right: 20px solid var(--light);
	border-bottom: 10px solid transparent;
}

.balloon-notice--horizontal .balloon-notice__balloon::before {
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-left: 7px solid transparent;
	border-top: 12px solid var(--light);
	border-right: 7px solid transparent;
}

.balloon-notice--horizontal-center .balloon-notice__balloon::before {
	top: 96%;
	left: 48%;
	border-left: 11px solid transparent;
	border-top: 19px solid var(--light);
	border-right: 11px solid transparent;
}

.balloon-notice__balloon--triangle-lg {
	margin-top: 8px;
}

.balloon-notice__balloon--triangle-lg::before {
	border-top-width: 10px;
	border-right-width: 18px;
	border-bottom-width: 10px;
}

.balloon-notice__balloon--triangle-sm::before {
	border-top-width: 8px;
	border-right-width: 13px;
	border-bottom-width: 8px;
	top: 54%;
}

.selfcheck {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 40px;
	margin-top: 190px;
}

.selfcheck__main {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 320px;
}

.selfcheck__heading {
	margin-bottom: 0.3em;
	color: var(--accent);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.375;
}

.selfcheck__heading span {
	display: block;
	font-size: 2.5rem;
}

.selfcheck__notice {
	margin-top: 13px;
}

.selfcheck__table {
	width: 100%;
	margin-top: 16px;
	padding: 20px;
	border-radius: 20px;
	background: #FFF;
	-webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

.table-1 {
	table-layout: fixed;
	width: 100%;
}

.table-1__tr:last-child .table-1__td {
	border-bottom: none;
}

.table-1__th {
	padding: 7px;
	background: var(--accent);
	color: #FFF;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.125;
}

.table-1__th:nth-of-type(1) {
	width: 62.8%;
}

.table-1__th:not(:last-child) {
	border-right: 1px solid #999;
}

.table-1__th--orange {
	background: #F68300;
}

.table-1__td {
	padding: 13px;
	vertical-align: middle;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.125;
	border-bottom: 1px solid #999;
}

.table-1__td:nth-of-type(1) {
	padding-left: 0;
	padding-right: 0;
}

.table-1__td:not(:last-child) {
	border-right: 1px solid #999;
}

.table-1__td--orange {
	color: #F68300;
	font-weight: 700;
}

.table-1__question {
	padding-right: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.375;
	text-align: left;
}

.table-1__question span {
	display: block;
	margin-top: 3px;
	font-size: 1.4rem;
	line-height: 1.28571;
	font-weight: 400;
}

.table-2 {
	padding: 12px 20px 20px;
	border-radius: 20px;
	background: #FFF;
	-webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.14);
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.14);
	max-width: 940px;
	margin: 21px auto 0;
}

.table-2__heading {
	margin-bottom: 15px;
	color: var(--accent);
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}

.table-2__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.table-2__row:not(:last-child) .table-2__term,
.table-2__row:not(:last-child) .table-2__desc {
	border-bottom: 1px solid #A8A8A8;
}

.table-2__term,
.table-2__desc {
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: middle;
}

.table-2__term {
	width: 180px;
	padding-right: 5px;
	padding-left: 8px;
	border-right: 1px solid #A8A8A8;
	text-align: left;
}

.table-2__desc {
	padding-left: 18px;
	font-size: 1.4rem;
	line-height: 1.7;
}

.table-2__label {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.35;
}

.table-2__label rt {
	font-weight: 400;
}

.risk {
	margin-top: 182px;
}

.risk-main::after {
	content: "";
	display: block;
	margin: 22px auto 0;
	width: 145px;
	height: 59px;
	background: url(../img/icon_arrow_risk.svg) no-repeat center center/contain;
}

.risk-main__fig {
	margin-top: 26px;
}

.risk-main__note {
	margin-top: 8px;
}

.risk-head__heading {
	margin-bottom: 0.38em;
	text-align: center;
	color: var(--accent);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.375;
}

.risk-head__heading::before {
	content: "";
	display: block;
	width: 105px;
	height: 108px;
	margin: 0 auto 13px;
	background: url(../img/deco_chara_03.png) no-repeat center center/contain;
}

.risk-bottom {
	max-width: 880px;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 20px;
	background: #FFF;
	-webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

.risk-bottom__heading {
	margin-bottom: 18px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
}

.risk-bottom__heading strong {
	color: #F68300;
}

.risk-bottom__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 10px;
}

.search {
	margin-top: 180px;
}

.search-head__heading {
	margin-bottom: 15px;
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.43333;
}

.search-head__heading::before {
	content: "";
	display: block;
	width: 213px;
	height: 156px;
	margin: 0 auto 0.4em;
	background: url(../img/deco_chara_04.png) no-repeat center center/contain;
}

.search-main {
	margin-top: 28px;
	padding: 30px;
	border-radius: 20px;
	background: #EEFDBD;
	-webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

.search-main--lightyellow {
	background-color: #FFF2BF;
}

.search-main__heading {
	margin-bottom: 0.6em;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.32;
}

.search-main__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 14px;
}

.about-gerodontology {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 30px;
	margin-top: 180px;
}

.about-gerodontology__main {
	width: 100%;
	padding-bottom: 13px;
}

.about-gerodontology__image {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 180px;
}

.about-gerodontology__heading {
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.65;
}

.oral-check {
	margin-top: 175px;
}

.oral-check__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}

.oral-check__heading {
	margin: 28px 0 10px;
	color: var(--accent);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.375;
}

.oral-check__table {
	width: 100%;
	margin-top: 16px;
}

.oral-check__images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 940px;
	margin: 30px auto 0;
}

.oral-check__images img {
	display: block;
	margin: 0 auto;
}

.oral-check__notice {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: 29px 0 0;
	padding-left: 14.5%;
}

.oral-diagnosis {
	margin-top: 180px;
}

.oral-diagnosis__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 10px;
}

.oral-diagnosis__main {
	padding-top: 8px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.oral-diagnosis__heading {
	margin-top: 12px;
	margin-bottom: 9px;
	color: var(--accent);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.375;
}

.oral-diagnosis__text {
	max-width: 32em;
}

.oral-diagnosis__summary {
	max-width: 500px;
}

.oral-diagnosis__summary img {
	display: block;
	width: 100%;
	height: auto;
}

.oral-diagnosis__training {
	padding: 18px 24px 20px;
	border-radius: 24px;
	background: #fff;
	-webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.14);
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.14);
	max-width: 940px;
	margin: 30px auto 0;
}

.oral-diagnosis__training-heading {
	color: var(--accent);
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}

.oral-diagnosis__training-text {
	margin-top: 10px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.75;
}

.oral-diagnosis__training-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.oral-diagnosis__training-item img {
	display: block;
	width: 100%;
	height: auto;
}

@media (hover: hover) {

.button-1:hover {
	opacity: 0.6;
}

.header-logo:hover {
	opacity: 0.6;
}

.gnavi__link:hover {
	color: var(--accent);
}

.footer-main a:hover {
	text-decoration: underline;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

}

@media screen and (min-width: 768px) {

.text-pc-left { /* pc */
	text-align: left;
}

.text-pc-center { /* pc */
	text-align: center;
}

.text-pc-right { /* pc */
	text-align: right;
}

.l-wrapper { /* pc */
	max-width: 1000px;
}

}

@media screen and (max-width: 767px) {

.text-sp-left { /* sp */
	text-align: left;
}

.text-sp-center { /* sp */
	text-align: center;
}

.text-sp-right { /* sp */
	text-align: right;
}

.sp-only { /* sp */
	display: block !important;
}

.sp-only-2 { /* sp */
	display: inline-block !important;
}

.pc-only { /* sp */
	display: none !important;
}

.pc-only-2 { /* sp */
	display: none !important;
}

/* sp */

.sp-grid-1col {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.sp-grid-2col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.sp-grid-3col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.sp-grid-4col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.--sp-grid-2col { /* sp */
	grid-template-columns: repeat(2, 1fr);
}

.--sp-grid-1col { /* sp */
	grid-template-columns: repeat(1, 1fr);
}

.l-header { /* sp */
	height: 58px;
}

.l-header-inner { /* sp */
	gap: 5px;
	width: 97%;
}

.button-1--plg { /* sp */
	padding: 9px 30px;
}

.header-logo { /* sp */
	width: 32.5%;
	max-width: 200px;
}

.gnavi { /* sp */
	width: 100%;
}

.gnavi__item { /* sp */
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	max-width: 63px;
	padding: 0 0.5em;
}

.gnavi__link { /* sp */
	font-size: 0.95rem;
	line-height: 1.15789;
	min-width: unset;
}

.gnavi__link::before { /* sp */
	width: 20px;
	height: 20px;
	margin-bottom: 2px;
}

.footer-bottom { /* sp */
	margin-top: 20px;
	text-align: left;
}

.footer-bottom__copyright { /* sp */
	font-size: 1rem;
}

.about { /* sp */
	margin-top: 60px;
}

.about__fig { /* sp */
	margin-top: 30px;
}

.about__bottom { /* sp */
	padding: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.about__notice { /* sp */
	margin-top: 20px;
}

.balloon-notice__balloon { /* sp */
	padding: 12px;
	font-size: 1.4rem;
}

.selfcheck { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 80px;
	gap: 30px;
}

.selfcheck__main { /* sp */
	width: 100%;
}

.selfcheck__heading { /* sp */
	font-size: 3.4rem;
	text-align: center;
}

.selfcheck__heading span { /* sp */
	font-size: 2.2rem;
}

.selfcheck__table { /* sp */
	margin-top: 0;
}

.table-1__th { /* sp */
	font-size: 1.4rem;
	vertical-align: middle;
}

.table-1__th:nth-of-type(1) { /* sp */
	width: 60%;
}

.table-1__td { /* sp */
	padding: 13px 2px;
	font-size: 1.4rem;
}

.table-1__question { /* sp */
	font-size: 1.5rem;
}

.table-1__question span { /* sp */
	font-size: 1.3rem;
}

.table-2 { /* sp */
	padding: 20px;
	border-radius: 24px;
}

.table-2__heading { /* sp */
	margin-bottom: 14px;
}

.table-2__row { /* sp */
	display: block;
	padding: 14px 0 12px;
	border-bottom: 1px solid #A8A8A8;
}

.table-2__row:not(:last-child) .table-2__term,
.table-2__row:not(:last-child) .table-2__desc { /* sp */
	border-bottom: none;
}

.table-2__row:last-child { /* sp */
	border-bottom: none;
}

.table-2__term,
.table-2__desc { /* sp */
	display: block;
	width: 100%;
	padding: 0;
}

.table-2__term { /* sp */
	width: 100%;
	padding-right: 0;
	border-right: none;
}

.table-2__desc { /* sp */
	margin-top: 8px;
	padding-left: 0;
}

.risk { /* sp */
	margin-top: 80px;
}

.risk-head__heading { /* sp */
	font-size: 3rem;
}

.risk-bottom { /* sp */
	padding: 20px;
}

.search { /* sp */
	margin-top: 100px;
}

.search-head__heading { /* sp */
	font-size: 2.6rem;
}

.search-main { /* sp */
	padding: 30px 20px;
}

.search-main__heading { /* sp */
	font-size: 2.2rem;
}

.about-gerodontology { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-top: 80px;
}

.about-gerodontology__image { /* sp */
	margin: 0 auto;
}

.oral-check { /* sp */
	margin-top: 80px;
}

.oral-check__top { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.oral-check__heading { /* sp */
	font-size: 2.5rem;
	text-align: center;
	margin: 0;
}

.oral-check__table { /* sp */
	margin-top: 0;
}

.oral-check__images { /* sp */
	grid-template-columns: auto;
	max-width: 260px;
	gap: 20px;
}

.oral-check__notice { /* sp */
	margin: 40px 0 0;
	padding: 0;
}

.oral-diagnosis { /* sp */
	margin-top: 90px;
}

.oral-diagnosis__top { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 26px;
}

.oral-diagnosis__main { /* sp */
	padding: 0;
}

.oral-diagnosis__heading { /* sp */
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 2.5rem;
	text-align: center;
}

.oral-diagnosis__text { /* sp */
	max-width: none;
}

.oral-diagnosis__training { /* sp */
	margin-top: 50px;
	padding: 20px;
	border-radius: 20px;
}

.oral-diagnosis__training-heading { /* sp */
	font-size: 1.8rem;
}

.oral-diagnosis__training-text { /* sp */
	margin-top: 8px;
	font-size: 1.5rem;
	text-align: left;
}

.oral-diagnosis__training-list { /* sp */
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 14px;
}

.oral-diagnosis__training-item { /* sp */
	max-width: 260px;
	margin: 0 auto;
}

}

