@charset "UTF-8";
/* ------------------------default */
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%; /* デフォルト16pxだから10pxにリセット */
  scroll-behavior: smooth;
}

/* --------------
reset
-------------- */
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

body,
div,
dl,
dt,
dd,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
section,
nav,
article,
aside,
hgroup,
header,
footer,
figure,
figcaption,
details,
summary,
menu {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  width: 100%;
  border: 1px solid #b4b8c0;
}

th,
td {
  border: 1px solid #b4b8c0;
}

th,
td {
  padding: 8px 12px;
  text-align: left;
}
th {
  background-color: #faf4d6;
  width: 16%;
}
td {
  background-color: #fff;
}

tbody tr:not(:nth-child(3)) {
  text-align: center;
}

img {
  max-width: 100% !important;
  height: auto;
  vertical-align: bottom;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

em {
  font-weight: bold;
  font-style: normal;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  outline: none;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #333;
}

/* --------------
base
-------------- */
body {
  width: 100%;
  font-size: 1.6rem; /* 16px */
  color: #222222;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial",
    "BIZ UDPGothic", "Meiryo", sans-serif, "游ゴシック", YuGothic,
    "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック",
    "MS PGothic", sans-serif !important;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #ffffff;
  text-align: left;
  line-height: 2;

  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;

  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.font-size-small {
  font-size: 1.3rem;
}

body.font-size-medium {
  font-size: 1.6rem;
}

body.font-size-large {
  font-size: 1.9rem;
}

dl,
p,
ul,
ol {
  word-wrap: break-word;
  word-break: break-all;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "游明朝", "Yu Mincho", "Noto Serif JP", "Hiragino Mincho Pro",serif; */
  line-height: 1.2;
  word-break: break-word !important;
}

h1 {
  font-size: 1.5em;
}

h2 {
  display: flex;
  align-items: center;
}

/* h2  */
.inner h2 {
  justify-content: center;
}

h2::before {
  margin-right: 2rem;
}

h2::after {
  margin-left: 2rem;
}

h2::before,
h2::after {
  content: "";
  height: 2px;
  width: 30px;
  background-color: #222222;
  rotate: 124deg;
  flex-grow: initial;
}

h3 {
  font-size: 1.1em;
}

h4,
h5,
h6 {
  font-size: 1em;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%;
}

/* --------------
flex
-------------- */
.flex-column {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

/* --------------
Link
-------------- */
a {
  text-decoration: none;
  color: #551a8b;
}

a:hover {
  opacity: 0.6;
}

/* a:hover img {
  opacity: 0.6;
} */

/* ---------- font weight */
.thin {
  font-weight: 100 !important;
}

.demilight {
  font-weight: 300 !important;
}

.normal {
  font-weight: 400 !important;
}

.medium {
  font-weight: 500 !important;
}

.bold {
  font-weight: 700 !important;
}

.black {
  font-weight: 900 !important;
}

/* ---------- align */
.alc {
  text-align: center !important;
}

.alr {
  text-align: right !important;
}

.all {
  text-align: left !important;
}

.alt {
  vertical-align: top !important;
}

.alb {
  text-align: bottom !important;
}

/* ---------- Cancele */
.both {
  clear: both;
}

/* ---------- margin,padding */
.mb0 {
  margin-bottom: 0px !important;
}

.mb3 {
  margin-bottom: 3px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt3 {
  margin-top: 3px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb3 {
  padding-bottom: 3px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt3 {
  padding-top: 3px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl3 {
  padding-left: 3px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr3 {
  padding-right: 3px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

/* --------------fadein */
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}
.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* --------------
Top
-------------- */
.main {
  flex-grow: 1;
}
/* --------------header */
.links li {
  text-align: right;
  line-height: 24px;
  font-size: 1.3rem;
}

.links_dtl {
  position: relative;
}

.font-size-change {
  background-color: #0c0707;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.nav__wrap {
  background-color: #ca9a97;
  /* background-color: #002063; */
}

.nav__wrap li a {
  color: #fff;
  /* font-size: 1.4rem; */
  font-weight: bold;
  line-height: 24px;
  padding: 0.9em 0.5em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.nav__wrap li a.active,
.nav__wrap li a:hover {
  color: #002063;
}

.langLinks li:last-child,
.nav__wrap li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.kv__wrap p {
  text-align: center;
  font-weight: bold;
  background-color: #faf4d6;
  margin-bottom: 3rem;
}

.kv__wrap img {
  margin: 0 auto;
}
.character__wrap {
  display: flex;
  /* justify-content: space-around; */
  justify-content: flex-end;
}

/* -----------search__wrap */
.search h3 {
  text-align: center;
}

.search__wrap a:hover {
  transform: translateY(-10px);
  transition: 0.2s ease-in-out;
}

.more__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.more__arrow::after {
  content: "";
  display: block;
  background: url(../img/more__arrow.png) no-repeat center top / contain;
  width: 24px;
  height: 24px;
}

.search__dtl {
  border: 2px solid #222;
  border-radius: 10px;
  padding: 4rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1em;
  height: 100%;
}

.search__dtl::before {
  content: "";
  background-repeat: no-repeat;
  background-position: 50%;
  padding: 3rem;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translate(-50%);
  border-radius: 50%;
  border: 2px solid #222;
}

.search__yellow::before {
  background-color: #faf4d6;
  background-image: url(../img/01.png);
}
.search__pink::before {
  background-color: #ff9494;
  background-image: url(../img/02.png);
}
.search__green::before {
  background-color: #74ce9d;
  background-image: url(../img/03.png);
}

.search__dtl--txt {
  flex-grow: 1;
}

/* -------------banner */
.banner__wrap a {
  display: flex;
  justify-content: center;
}
.banner__wrap img {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  width: 320px;
}

/* -------------wakannavi */
.wakanavi {
  background-color: #faf4d6;
}

/* -------------footer-search ボタン */
.button {
  display: inline-block;
  border-radius: 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.button:hover {
  transform: translateY(-5px);
  transition: 0.2s ease-in-out;
}

.button a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5em 2em;
  letter-spacing: 1px;
}

.button--brown {
  background-color: #9d8983;
}

.button--brown a {
  color: #fff !important;
  justify-content: center;
}

.button--brown a:hover {
  color: #452727 !important;
}

/* -----------footer */
/* slick */
.slick-dots .slick-active {
  background-color: #bb8a87;
  /* background: #002063; */
}
#footer .slick-dots li.slick-active button:before {
  opacity: 1;
  color: white;
  content: "";
  background: #fff;
  /* border: 2px solid #8a8d99; */
  border-radius: 50px;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#footer .slick-dots li {
  width: 30px;
}
#footer .slick-dots li button:before {
  /* width: 30px;
  font-size: 22px; */
  /* font-family: 'slick';
    font-size: 6px;
    line-height: 20px; */
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #000;
  position: absolute;
  top: 4px;
  left: 11px;
  border-radius: 20px;
}

.banner__item img {
  width: 225px;
  object-fit: cover;
}
.social__wrap ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.social__wrap li {
  margin: 0 0.5em;
}
/* -----------------footer */
.footer {
  color: #fff;
  text-align: center;
}
.footer__top {
  background-color: #f0e9e8;
  /* background-color: #dfe0e6; */
  padding: 2em 0 1.5em;
}
.copyright {
  background-color: #bb8a87;
  /* background-color: #002063; */
  color: #fff;
}
.footer__copyright {
  font-size: 1.3rem;
  line-height: 16px;
}

/* ----------site__wrap */
.site__wrap {
  background-color: #ca9a97;
  /* background-color: #3e4770; */
}
.site__wrap ul a {
  color: #fff;
}

.site__wrap li {
  border-right: 1px solid #fff;
  /* border-right: 1px solid #999; */
  padding: 0 0.5em;
}
.site__wrap li:last-child {
  border-right: none;
}

/* -------------contact */
.contact__wrap span {
  font-weight: bold;
}

/* -------------policy */
.policy__wrap h3 {
  background: #eee;
  color: #222;
  margin: 0.5em 0;
}
.policy__dtl p {
  margin-bottom: 1em;
}
.policy__link a {
  display: flex;
  align-items: center;
}

/* ------organization */
.table {
  padding-bottom: 3em;
}
.table:last-child {
  padding-bottom: 0;
}
.table thead th {
  text-align: center;
}
/* -------- */
.accessibility__dtl h3 {
  background: #eee;
  color: #222;
  margin: 0.5em 0;
}

.accessibility__dtl p {
  margin-bottom: 1em;
}
.accessibility__ttl {
  background-color: #faf4d6 !important;
}

/* ------------------------------top own-support */
.own-support__img {
  display: flex;
  justify-content: center;
}

.own-support__wrap {
  position: relative;
  background: url(../img/img_own-support_background.png) no-repeat center center /
    contain;
}

.own-support__wrap::before {
  content: "";
  background: url(../img/yellow_back.png) no-repeat left center / contain;
  position: absolute;
  z-index: -1;
}

.own-support__wrap::after {
  content: "";
  background: url(../img/green_back.png) no-repeat right center / contain;
  position: absolute;
  z-index: -1;
}

/* ------------------------------top-topics */
.top-topics__wrap {
  box-shadow: 0px 3px 6px #d3d3d3;
  background: #fff;
  border-radius: 8px;
  padding: 2em 3em;
  background-color: #fffcee;
}

.top-topics__list-item a {
  cursor: pointer;
}

.top-topics__list-time {
  color: #7d7d7d;
  font-size: 1.4rem;
  margin-right: 2em;
}

.top-topics__btn {
  margin-top: 1em;
}

.top-topics__btn a {
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #041b40;
}

.top-topics__btn a::after {
  content: "";
  display: block;
  background: url(../img/more__btn.png) no-repeat center top / contain;
  width: 24px;
  height: 24px;
}
/* ------------------------------topics */
.topics__list-time {
  color: #7d7d7d;
  font-size: 1.4rem;
  margin-right: 2em;
}

/* ---------------------top type-worries */
.type-worries {
  background-color: #faf4d6;
}

.type-worries__list {
  margin: 1em 0;
}

.type-worries__list p {
  white-space: nowrap;
}

.type-worries__list a {
  background-color: #fff;
  border-radius: 50px;
  border: 1.5px solid #333;
  display: block;
  padding: 0 0.2em;
}
.type-worries__list a:hover {
  transform: translateY(-5px);
  transition: 0.2s ease-in-out;
}

.type-worries {
  padding: min(10vw, 80px) min(5vw, 0px);
}
.type-worries__list label {
  white-space: nowrap;
}

.type-worries__list label {
  background-color: #fff;
  border-radius: 50px;
  border: 1.5px solid #333;
  display: block;
  padding: 0 0.2em;
  color: #551a8b;
}

.type-worries__list label:hover {
  transform: translateY(-5px);
  transition: 0.2s ease-in-out;
}

.type-worries__list input[type="checkbox"] {
  display: none;
}

/* -------------------------top-column */
.color__orange {
  color: #fbb03b;
}

.top-column__img {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}

.top-column__list {
  margin-top: 2em;
}

.top-column__txt {
  text-align: left;
}

.top-column__txt p:first-child {
  font-size: 1.4em;
}

.button--white {
  display: inline-block;
  border: 1.5px solid #333;
  border-radius: 20px;
  margin-top: 1em;
}

.button--white a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 2em;
}

.button--white a::after {
  content: "";
  display: block;
  background: url(../img/more__btn.png) no-repeat center top / contain;
  width: 24px;
  height: 24px;
}

/* ---------------------top-voice */

.top-voice__list {
  margin-top: 2em;
}

.top-voice__txt {
  text-align: left;
  width: 80%;
}

.top-voice__txt p:first-child {
  font-size: 1.4em;
}

/* --------------------footer-search */
.footer-search__img {
  display: flex;
  justify-content: center;
}

.button--blue {
  display: inline-block;
  border-radius: 30px;
  margin-top: 1em;
  background-color: #041b40;
}

.button--blue a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5em 2em;
  color: #fff !important;
}

/* -------------------------sns */
.button--sns {
  border: 2px solid #333;
  border-radius: 20px;
  margin-top: 2em;
}

.button--sns a {
  display: block;
}

.button--sns img {
  margin: 0 auto;
}

/* ----------------------upto_button */
.upto_button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  display: none;
  text-align: center;
  border-radius: 50%;
  width: 100px; /* 幅と高さを等しく設定 */
  height: 100px;
  background: #ffffff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1 / 1;
}

.upto_button a {
  font-size: 14px;
  display: block;
  color: #9d8983;
  width: 100%; /* リンク全体がボタン内に収まるように調整 */
  height: 100%;
  line-height: 40px;
}

.upto_button a::before {
  content: "";
  background: url(../img/arrow__page-top.png) no-repeat center;
  background-size: contain;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto;
}
