/* 2025/07/26 */

@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

strong {
  font-weight: 700;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* 文字色
======================================================================= */

body {
  color: #002533;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 808px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

@media(max-width: 599px) {
  body .l-wide {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .l-margin {
    margin: 24px auto;
  }
  .l-padding {
    padding: 24px;
  }
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 24px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 24px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 599px) {
  .l-columns-2,
  .l-columns-3 {
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }
}
/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

@media(max-width: 599px) {
  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

/* 形状 */

.is-shadow-s {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.is-shadow-l {
  filter: drop-shadow(0 16px 16px rgb(0 0 0 / .15));
}

.is-round {
  border-radius: 8px;
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */
/* =======================================================================
  メイン
======================================================================= */

.main {
  padding-bottom: 40px;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding-bottom: 24px;
  }
}

/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]), .main ul, .main ol {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]), .main ul, .main ol {
    font-size: 1em;
  }
}

/* 小見出し H3
======================================================================= */

.h3 {
  margin: 40px auto;
  padding: 12px 0 12px 36px;
  border-left: 4px solid #0080b3;
  font-size: 28px;
  line-height: 1.333;
  color: #002533;
}
  .h3:first-child {
    margin-top: 0;
  }

@media(max-width: 599px) {
  .h3 {
    margin: 24px 0;
    padding: 6px 0 6px 18px;
    font-size: 21px;
  }
}

/* 小見出し H3-1
======================================================================= */

.h3-1 {
  margin: 40px auto;
  padding: 48px 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
  position: relative;
}
  .h3-1:first-child {
    margin-top: 0;
  }

.h3-1::before {
  position: absolute;
  top: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center bottom;
  background-size: contain;
}

.h3-1::after {
  position: absolute;
  bottom: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center top;
  background-size: contain;
}

@media(max-width: 599px) {
  .h3-1 {
    margin: 24px 0;
    padding: 30px 0;
    font-size: 21px;
  }
  .h3-1::before,
  .h3-1::after {
    height: 13px;
  }
}

/* 小見出し H4
======================================================================= */

.h4 {
  margin: 40px auto 1em;
  padding: 1em 0 0;
  border-top: 1px solid #ddd;
  font-size: 24px;
  line-height: 1.333;
  color: #333;
}

@media(max-width: 599px) {
  .h4 {
  margin: 2em auto 1em;
    font-size: 18px;
  }
}

/* 小見出し H5
======================================================================= */

.h5 {
  margin: 40px auto 1em;
  font-size: 18px;
  line-height: 1.333;
}

@media(max-width: 599px) {
  .h5 {
    margin: 24px auto 1em;
    font-size: 16px;
  }
}

/* =======================================================================
  ヘッダー
======================================================================= */

.header {
  line-height: 1;
  margin-bottom: 40px;
}

.header-1 {
  background: url("img/header-bg.jpg") no-repeat top center;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
}

.header-2 {
  background-color: #0080b3;
  padding: 40px 0 24px;
}

@media(max-width: 599px) {
  .header {
    margin-bottom: 24px;
  }
}

/* =======================================================================
  CTA
======================================================================= */

.cta__item {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}

.cta .is-shadow-l:hover {
  filter: none;
}

.cta__txt {
  text-align: center;
  line-height: 1;
}

@media(max-width: 599px) {
  .cta__item {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
  }

  .cta .is-shadow-l:hover {
    filter: none;
  }

  .cta__txt {
    font-size: .9em;
    line-height: 1.33;
    text-align: left;
    text-indent: -1em;
    margin-left: 1em;
  }
}

/* =======================================================================
  Recommend
======================================================================= */

.recommend__item {
  background-color: #f2efe6;
  border-top: 10px solid #0080b3;
  display: flex;
}

.recommend__head {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 35px;
}

.recommend__class {
  background-color: #0080b3;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 6px 15px 8px;
  margin-bottom: 6px;
}

.recommend__company {
  font-size: 18px;
  font-weight: bold;
}

.recommend__post {
  font-size: 16px;
  font-weight: bold;
}

.recommend__title {
  font-size: 16px;
  font-weight: normal;
}

.recommend__img {
  margin-left: 40px;
  width: 230px;
  height: auto;
  flex-shrink: 0;
}

.recommend__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 599px) {
  .recommend__item {
    flex-direction: column;
    align-items: center;
  }

  .recommend__head {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .recommend__class {
    font-size: 14px;
    padding: 6px 12px 8px;
    margin-bottom: 4px;
  }

  .recommend__company {
    font-size: 16px;
  }

  .recommend__post {
    font-size: 14px;
  }

  .recommend__title {
    font-size: 14px;
  }

  .recommend__img {
    margin-left: 0;
    margin-top: 24px;
  }
}

/* =======================================================================
  Results
======================================================================= */

.results__item {
  background-color: #f2efe6;

  display: grid;
  grid-template-columns: 25% auto;
  margin-bottom: 10px;
}

.results__item:last-child {
  margin-bottom: 0;
}

.results__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results__head {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.results__head img {
  margin-right: 10px;
  flex-shrink: 0;
}

@media(max-width: 599px) {
  .results__item {
    display: grid;
    margin-bottom: 5px;
  }

  .results__img {
    width: 100%;
    height: 100%;
  }

  .results__img img {
    aspect-ratio: auto;
    height: 100%;
  }

  .results__head {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .results__head img {
    margin-right: 5px;
  }
}

/* =======================================================================
  Problem
======================================================================= */

.problem__item {
  background-color: #f2efe6;

  display: grid;
  grid-template-columns: auto 30%;
}

.problem__item:last-child {
  margin-bottom: 0;
}

.problem__img {
}

.problem__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem__txt {
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.41;
}

@media(max-width: 599px) {
  .problem__item {
    display: flex;
    flex-direction: column;
  }

  .problem__img {
    width: 100%;
    padding: 0 24px 24px 24px;
  }

  .problem__img img {
    aspect-ratio: 2/1;
    height: 100%;
  }

  .problem__txt {
    font-size: 18px;
  }
}

/* =======================================================================
  Reason
======================================================================= */

.reason {
  background: url("img/reason__bg.jpg") #e6e1e0 no-repeat top center fixed;
  background-size: 100vw;
}

.reason__item {
  background-color: #fff;
  margin-bottom: 40px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.reason__item:last-child {
  margin-bottom: 0;
}

.reason__img {
  margin-bottom: 24px;
}

.reason__head {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.reason__head-num {
  margin-right: 20px;
  width: 60px;
  flex-shrink: 0;
}

@media(max-width: 599px) {
  .reason {
    background-attachment: scroll;
    background-size: 150vw;
  }

  .reason__item {
    margin-bottom: 24px;
  }

  .reason__img {
    margin-bottom: 18px;
  }

  .reason__head {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .reason__head-num {
    margin-right: 10px;
    width: 45px;
  }
}

/* =======================================================================
  Voc
======================================================================= */

.voc__item {
  background-color: #f2efe6;
}

.voc__item:last-of-type {
  margin-bottom: 20px;
}

.voc__inner {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.voc__img {
  margin: 0 0 1em 1em;
}

.voc__head {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.voc__name {
  font-size: 18px;
}

@media(max-width: 599px) {
  .voc__item:last-of-type {
    margin-bottom: 10px;
  }

  .voc__inner {
    display: grid;
    margin-bottom: 10px;
  }

  .voc__img {
    margin: 12px 0;
    text-align: center;
  }

  .voc__head {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .voc__name {
    font-size: 15px;
  }
}

/* =======================================================================
  Profile
======================================================================= */

.profile {
  background: #f2efe6;
}

.main .profile,
.main .profile p,
.main .profile li {
  font-size: 1rem;
}

.profile__photo {
  float: right;
  margin: 0 0 2em 2em;
  width: 150px;
}

.profile__name-j {
  margin-bottom: 40px;
  font-size: 1.618em;
  line-height: 1;
  font-feature-settings: "palt";

  font-weight: 700;
}

.profile__name-j-ruby {
  font-size: .7em;
  letter-spacing: .15em;
  font-weight: normal;
}

.profile__title {
  margin-bottom: 40px;
  padding: 0 0 0 1.25em;
}

.profile__h4 {
  font-size: 21px;
  font-weight: bold;
  border-left: 4px solid #41b8df;
  padding-left: 15px;
  margin-top: 35px;
  margin-bottom: 20px;
}

@media(max-width: 599px) {


  .profile__photo {
    display: block;
    float: none;
    margin: 0 auto 1em;
  }

  .profile__name-j {
    margin-bottom: 24px;
    text-align: center;
    font-size: 18px;
  }

  .profile__name-j-ruby {
    display: block;
    margin-top: 16px;
  }

  .profile__title {
    margin-bottom: 24px;
  }

  .profile__h4 {
    font-size: 18px;
    padding-left: 10px;
    margin-top: 24px;
    margin-bottom: 14px;
  }
}

/* =======================================================================
  Step
======================================================================= */

.step__ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.step__ol:last-child {
  padding-bottom: 0;
}

.step__item {
  position: relative;
  display: grid;
  grid-template-columns: 3em auto;
  grid-gap: 1em;
  margin-bottom: 40px;
}

.step__item:last-child {
  margin-bottom: 0;
}

/* 線 */
.step__line {
  width: 3em;
  height: 100%;
}

.step__line__inner {
  margin: 0 auto;
  display: block;
  background-color: #41b8df;
  width: 3px;
  height: 115%;
  padding-bottom: 2em;
  margin-top: 35px;
}

/* アイコン */
.step__icon {
  position: absolute;
  left: 0;
  top: 35px;
  z-index: 1;

  width: 3em;
  height: 3em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* テキスト */
.step__txt {
  background-color: #f2efe6;
}

.step__txt:last-child {
  margin-bottom: 0;
}

.step__num {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.step__num img {
  margin-right: 15px;
  width: auto;
  height: 32px;
}

.main
.step__item p {
  font-size: 18px;
}

.step__img {
  float: right;
  margin: 0 0 1em 1em;
}

@media(max-width: 599px) {
  .step__item {
    margin-bottom: 24px;
  }

  /* 線 */
  .step__line__inner {
    width: 2px;
    height: 105%;
  }

  /* アイコン */
  .step__icon {
    top: 20px;
  }

  /* テキスト */
  .step__num {
    font-size: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .step__num img {
    margin-bottom: 5px;
    width: auto;
    height: 25px;
  }

  .main
  .step__item p {
    font-size: 16px;
  }

  .step__img {
    float: none;
    margin: 0 0 1em 0;
    display: flex;
    justify-content: center;
  }
}

/* =======================================================================
  Offer
======================================================================= */

.offer {
  background: url("img/offer__bg.jpg") #d3eaf9 no-repeat top center fixed;
  background-size: 100vw;
}

.offer__item {
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2);
}

.offer__item p {
}

.main
.offer__txt {
  text-align: center;
  margin-bottom: 40px;
}

.main
.offer__note {
  font-size: 16px;
  margin-bottom: 0;
  padding-left: 1em;
  text-indent: -1em;
}

.offer__h4 {
  font-size: 21px;
  font-weight: bold;
  padding-top: 35px;
  border-top: 1px solid #ccc;
  margin-top: 35px;
  margin-bottom: 20px;
}

@media(max-width: 599px) {
  .offer {
    background-attachment: scroll;
  }

  .main
  .offer__txt {
    margin-bottom: 24px;
  }

  .main
  .offer__note {
    font-size: .9em;
  }

  .offer__h4 {
    font-size: 18px;
    padding-top: 25px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
}

/* =======================================================================
  FAQ
======================================================================= */

.faq__item:last-child {
  margin-bottom: 0;
}

/* Q */
.faq__q {
  padding: 30px;
  border: 1px solid #ccc;
  background: #f7f5f0;

  display: flex;
  align-items: flex-start;
  font-size: 21px;
}

.faq__q::before {
  color: #41b8df;
  content: "\f059";
  font-size: 24px;
  font-family: FontAwesome;
  line-height: 1;
  margin-right: 10px;
  margin-top: 2px;
}


/* A */
.faq__a {
  padding: 30px;
  border: 1px solid #ccc;
  border-top-width: 0;
  background: #fff;
}
  .main .faq__a > *:last-child {
    margin-bottom: 0;
  }

@media(max-width: 599px) {
  /* Q */
  .faq__q {
    padding: 21px;
    font-size: 18px;
  }

  .faq__q::before {
    font-size: 21px;
    margin-right: 10px;
    padding-top: 1px;
  }

  /* A */
  .faq__a {
    padding: 21px;
    font-size: .95em;
  }
}


/* =======================================================================
  Info
======================================================================= */

.info__h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.info__table {
  width: 100%;
  margin-bottom: 40px;
}

.info__table th, td {
  border: 1px solid #ccc;
  padding: 1em;
  text-align: left;
}

.info__table th {
  width: 30%;
  background-color: #f9f9f9;
  font-weight: bold;
}

.info__map {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  margin-bottom: 40px;
}

.info__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.info__img {
  margin-bottom: 15px;
}

.info__txt {
  display: flex;
  font-size: 18px;
  font-weight: bold;
}

.info__txt img {
  width: 41px;
  height: 41px;
  margin-right: 15px;
}

.info__note {
  font-size: 16px;
  padding-left: 1em;
  text-indent: -1em;
}


@media(max-width: 599px) {
  .info__h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .info__table {
    margin-bottom: 24px;
  }

  .info__map {
    margin-bottom: 24px;
  }

  .info__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .info__img {
    margin-bottom: 15px;
    text-align: center;
  }

  .info__txt {
    font-size: 16px;
  }

  .info__txt img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .info__note {
    font-size: .9em;
  }
}

/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0;
  padding: 40px 0;
  text-align: center;
  font-size: .8em;
  background-color: #0080b3;
  color: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__nav {
  text-align: right;
}

.footer__nav p {
  margin-bottom: 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
}

.footer__nav ul li {
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #fff;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__copy {
  font-size: 1em;
  text-align: right;
}

@media(max-width: 599px) {
  .footer {
    padding: 24px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__logo img {
    max-width: 50%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

/* =======================================================================
  ページ下部常駐ボタン
======================================================================= */

@media(max-width: 599px) {
  .sticky-footer-btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: 999;

    padding: 16px;
    width: 100%;
    height: auto;
    background: rgb(0 0 0 / .3);
    text-align: center;
    transform: translate(-50%);

    line-height: 1;
  }

  .sticky-footer-btn img {
    height: auto;
  }

  .footer {
    padding-bottom: 164px;
  }
}

/* =======================================================================
  色囲み
======================================================================= */

.color-box {
  background-color: #f2efe6;
}

.main .color-box *:last-child {
  margin-bottom: 0;
}

/* =======================================================================
  線囲み
======================================================================= */

.border-box {
  border: 1px solid #ddd;
}

.main .border-box *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .border-box {
  }
}

/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: 700;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */