@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%;
  box-shadow: 6px 6px 0px 0px rgba(255, 180, 8, 1);
}

th,
td {
  padding: 12px;
  text-align: left;
  /* border: 1px solid #006644; */
  border: 1px solid #ffb408;
}

th {
  background-color: #ffffea;
  width: 22%;
  /* background-color: #f9ffeb; */
}
td {
  background-color: #fff;
}

img {
  max-width: 100% !important;
  height: auto;
  vertical-align: bottom;
}
ol,
ul,
menu {
  list-style: none;
}

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: #333333;
  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;
  height: 100%;
  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;
}

dl,
p,
ul,
ol {
  word-wrap: break-word;
  word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  word-break: break-word !important;
}

h1 {
  font-size: 1.5em;
}

h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

h2::before,
h2::after {
  content: "";
  height: 10px;
  width: 44px;
  background:
    radial-gradient(circle at center, #ff8a00 0 60%, transparent 61%) 0 50%/
      10px 10px no-repeat,
    radial-gradient(circle at center, #ffd400 0 60%, transparent 61%) 50% 50%/
      10px 10px no-repeat,
    radial-gradient(circle at center, #ff8a00 0 60%, transparent 61%) 100% 50%/
      10px 10px no-repeat;
}
h2::before {
  margin-right: 1rem;
}
h2::after {
  margin-left: 1rem;
}

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%;
}

/* --------------
 Link
-------------- */
a {
  text-decoration: none;
  color: #4f6457;
  /* color: #006644; */
  /* color: #ed6eb3; */
  /* color: #551a8b; */
}
a:hover {
  opacity: 0.7; /* color:  */
}
a:hover img {
  opacity: 0.7;
}

/* ---------- 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
-------------- */
/* color */
.color--red {
  color: #dc143c;
}
/* --------------bg-color */
.bg-pink {
  background-color: #fdecf282;
}
.bg-green {
  background-color: #aaf0d13b;
}

.bg-yellow {
  background-color: #ffffea;
}
/* ------------------nav */
.main__nav {
  background-color: #ffbc29;
  position: sticky;
  top: 0;
  z-index: 99;
}

.main__nav .inner {
  padding: 1rem 0;
}
.main__nav-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

/* -----------------top box */
.box__content {
  text-align: center;
}
.application__wrap h2 {
  position: relative;
}
.box__content-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 16px;
  gap: 15px;
}
.application__wrap,
.store__wrap {
  border: 1px solid #006644;
  padding: 3rem 2rem;
  border-radius: 8px;
}

/* -----------------button */
.button {
  display: inline-block;
  padding: 0.5em 2em;
  border-radius: 35px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 360px;
}
.button:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.7;
}
.button--blue {
  border: 1px solid #233b6c;
  color: #233b6c;
}
.button--yellow {
  border: 1px solid #ffbc29;
  color: #fcaf17;
}

/* ------------------------news */
.news__wrap {
  background-color: #fff;
  border-radius: 8px;
  padding: 3rem;
}

.news__wrap time {
  color: #838383;
  font-size: 1.4rem;
}

.news__item {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 1em;
}
.news__wrap span {
  border-bottom: 1px solid #006644;
}

/* -----------application__point */
.application__point-border {
  border-bottom: 1px solid;
}

/* ---------------------form */
.application__form-btn p,
.search__store-btn {
  display: flex;
  justify-content: center;
}

/* -----------search__store */
.search__store-img {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

/* --------------- QA */
.faq__ttl {
  border-bottom: 1px solid #ffb408;
  padding: 0.8em 1em;
  margin-bottom: 1.5em;
  font-size: 1.6rem !important;
}

.faq__list dt {
  font-weight: bold;
  margin-top: 1.5em;
  padding: 0.2em 1em;
  border-left: 5px solid #ffb408;
}

.faq__list dd {
  margin: 0;
  padding: 1em 1.5em;
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  background-color: #ffffff;
  border-top: none;
  line-height: 1.8;
}

.faq__list dd .faq__a {
  flex: 0 0 0.2em;
  white-space: nowrap;
}

.faq__list dd .faq__ans {
  flex: 1 1 auto;
  min-width: 0;
}

/* --------------- 注）などのぶら下がり防止（概要テーブル用） */
.note {
  display: inline-flex;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding-left: 1em;
}

.note__text {
  flex: 1 1 auto;
  min-width: 0;
}

/* --------------- QA */
.faq__list {
  display: none;
  margin-top: 1.5em;
}

.faq__ttl {
  cursor: pointer;
  position: relative;
  padding-right: 2em;
}

/* 開閉アイコン */
.faq__ttl::after {
  content: "＋";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: #ff8a00;
}

.faq__ttl.is-open::after {
  content: "－";
}

.overview__wrap a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.color--green {
  background-color: #fff !important;
  color: #39b14e !important;
  border: 1px solid #39b14e;
}

.important_text {
  color: red;
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

/* ---------------contact */
.contact-wrap {
  background-color: #fff;
  text-align: center;
  padding: 3rem;
  border-radius: 8px;
  border: 2px solid #ffbc29;
}

.contact-wrap a {
  font-size: 3rem;
}
/* -----------footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
}

/* -----------方眼紙背景 */
.overview,
.qa {
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 25px,
      rgba(0, 0, 0, 0.04) 26px,
      rgba(0, 0, 0, 0.04) 26px,
      transparent 27px,
      transparent 51px,
      rgba(0, 0, 0, 0.04) 52px,
      rgba(0, 0, 0, 0.04) 52px,
      transparent 53px,
      transparent 77px,
      rgba(0, 0, 0, 0.04) 78px,
      rgba(0, 0, 0, 0.04) 78px,
      transparent 79px,
      transparent 103px,
      rgba(0, 0, 0, 0.04) 104px,
      rgba(0, 0, 0, 0.04) 104px,
      transparent 105px,
      transparent 129px,
      rgba(0, 0, 0, 0.04) 130px,
      rgba(0, 0, 0, 0.04) 130px
    ),
    repeating-linear-gradient(
      to right,
      transparent 25px,
      rgba(0, 0, 0, 0.04) 26px,
      rgba(0, 0, 0, 0.04) 26px,
      transparent 27px,
      transparent 51px,
      rgba(0, 0, 0, 0.04) 52px,
      rgba(0, 0, 0, 0.04) 52px,
      transparent 53px,
      transparent 77px,
      rgba(0, 0, 0, 0.04) 78px,
      rgba(0, 0, 0, 0.04) 78px,
      transparent 79px,
      transparent 103px,
      rgba(0, 0, 0, 0.04) 104px,
      rgba(0, 0, 0, 0.04) 104px,
      transparent 105px,
      transparent 129px,
      rgba(0, 0, 0, 0.04) 130px,
      rgba(0, 0, 0, 0.04) 130px
    );
}
