/* 241126 */

@charset "utf-8";

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

html {
  overflow-y: scroll;
}

*,
*::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: normal;
  font-style: normal;
}

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

h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
  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: bold;
  -webkit-font-smoothing: antialiased;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}

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

body {
  color: #052b33;
}

/* リンク */

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

/* 間隔 */

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

/* 二段組 */

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

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

/* 三段組 */

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

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

/* 画像の大きさ */

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

/* 文字揃え */

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

@media(max-width: 599px) {
  .l-width {
    padding: 0 24px;
  }
  .l-margin {
    margin: 24px auto;
  }
  .l-padding {
    padding: 24px;
  }
  .l-columns-2,
  .l-columns-3 {
    margin: 2em 0;
    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-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%; }
}

/* =======================================================================
  メイン
======================================================================= */

.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]) {
  font-size: 1.1em;
}

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

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

.h3 {
  margin: 40px auto;
  padding: 24px 0;
  border-top: 1px solid #118da6;
  border-bottom: 1px solid #118da6;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #052b33;
}
  .h3:first-child {
    margin-top: 0;
  }

@media(max-width: 599px) {
  .h3 {
    margin: 24px 0;
    padding: .75em 1em;
    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: #052b33;
}

@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 {
  background: url("img/header-bg.jpg") no-repeat center top;
  background-size: cover;
  padding-bottom: 40px;
}

.header-1 {
  background: url("img/header-1-bg.png") no-repeat center top;
  text-align: center;
  padding-top: 40px;
}

.header-1 h1 {
  padding-left: 80px;
}

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

  .header-1 {
    background: url("img/header-sp-bg.png") no-repeat center top;
    background-size: 100vw;
    padding-top: 30px;
  }

  .header-1 h1 {
    padding-left: 20px;
  }
}

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

.cta
p:not(:last-child) {
  margin-bottom: 20px;
}

.cta__btn-1 {
  margin-top: 15px;
}

@media(max-width: 599px) {
  .cta
  p:not(:last-child) {
    margin-bottom: 10px;
  }

  .cta__btn-1 {
    margin-top: 8px;
  }
}

/* =======================================================================
  プレゼント
======================================================================= */

.present {
  background: #ecd3e6 url("img/present__bg.jpg") no-repeat center top fixed;
  background-size: 100vw;
  padding-bottom: 40px;
}

.present__h3 {
  text-align: center;
  padding-top: 40px;
}

.present__item {
  background-color: #fff;
  display: grid;
  grid-template-columns: auto 30%;
  border-radius: 2px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

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

.present__txt {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.44em;
}

.present__txt-1 {
  font-size: 30px;
}

.present__txt-2 {
  color: #e545a3;
}

.present__txt-3 {
  font-size: 18px;
  font-weight: normal;
}

.present__h4 img {
  width: 27%;
  margin-bottom: 12px;
}

.present__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 2px 2px 0;
}

@media(max-width: 599px) {
  .present {
    background-attachment: scroll;
    padding-bottom: 20px;
  }

  .present__h3 {
    padding-top: 20px;
  }

  .present__item {
    display: grid;
    grid-template-columns: auto 25%;
  }

  .present__txt {
    font-size: 16px;
  }

  .present__txt-1 {
    font-size: 24px;
  }

  .present__txt-3 {
    font-size: 15px;
  }

  .present__h4 img {
    width: 50%;
    margin-bottom: 6px;
  }

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

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

/* =======================================================================
  リード文
======================================================================= */

.lead__h4 {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 30px;
}

.lead__img ul {
  list-style-type: none;
  margin: 30px 0 30px;
  padding: 0;
  padding-inline-start: 0;
}

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

.lead__ul {
  padding-inline-start: 0;
}

.lead__ul li {
  list-style-type: none;
  position: relative;
  margin-left: 30px;
}

.lead__ul li::before {
  position: absolute;
  top: .3em;
  left: -30px;

  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(img/check-mark.png);
  background-size: contain;
  vertical-align: middle;
}

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

@media(max-width: 599px) {
  .lead__h4 {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .lead__img ul {
    margin: 15px 0 15px;
  }

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

  .lead__ul li {
    font-size: 16px;
    margin-left: 25px;
  }

  .lead__ul li::before {
    position: absolute;
    top: .3em;
    left: -25px;

    width: 16px;
    height: 16px;
  }

  .lead__txt {
    gap: 10px;
  }
}

/* =======================================================================
  特徴
======================================================================= */

.point__item {
  background-color: #f2efe6;
  border-radius: 2px;
}

.point__h4 {
  background-color: #118da6;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 30px 40px;
  border-radius: 2px 2px 0 0;
}

.point__caption {
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
}

@media(max-width: 599px) {
  .point__item {
    background-color: #f2efe6;
    border-radius: 2px;
  }

  .point__h4 {
    font-size: 18px;
    padding: 15px 20px;
  }

  .point__caption {
    font-size: 14px;
  }
}

/* =======================================================================
  理由
======================================================================= */

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

.reason__item {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

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

.reason__img {
  margin-bottom: 20px;
}

.reason__head {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  font-size: clamp(18px, 5.07vw, 27px);
}

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

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

  .reason__img {
    margin-bottom: 10px;
  }

  .reason__head {
    margin-bottom: 16px;
  }

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

/* =======================================================================
  成果
======================================================================= */

.results__item {
  background-color: #f2efe6;
  display: grid;
  grid-template-columns: auto 25%;
  border-radius: 2px;
  margin-bottom: 20px;
}

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

.results__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.results__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 2px 2px 0;
}

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

  .results__txt {
    font-size: 18px;
  }

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

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

/* =======================================================================
  お客様の声
======================================================================= */

.voc {
  background: #faf5ef url("img/voc__bg.jpg") no-repeat center top fixed;
  background-size: 100vw;
  padding: 40px 0;
}

.voc__item {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

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

.voc__h4 {
  font-size: 27px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}

.voc__img {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.voc__caption {
  font-size: 16px;
  line-height: 1.5;
}

@media(max-width: 599px) {
  .voc {
    background-attachment: scroll;
    padding: 20px 0;
  }

  .voc__h4 {
    font-size: 21px;
    padding-bottom: 7px;
    margin-bottom: 7px;
  }

  .voc__img {
    gap: 20px;
  }

  .voc__caption {
    font-size: 14px;
  }
}

/* =======================================================================
  料金
======================================================================= */

.plan__table {
  width: 100%;
  margin: 20px 0;
}

.plan__table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.plan__table th,
.plan__table td {
  padding: 20px;
  line-height: 1.41em;
}

.plan__table th {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.th-1 {
  background-color: #14adcc;
}

.th-2 {
  background-color: #118da6;
}

.th-3 {
  background-color: #0d6c80;
}

.tr-1 {
  vertical-align: top;
  text-align: left;
}

.tr-2 {
  vertical-align: middle;
  text-align: center;
}

.td-1 {
  background-color: #fafafa;
}

.td-2 {
  background-color: #f2f2f2;
}

.td-3 {
  background-color: #ebebeb;
}

.table__txt {
  font-size: 15px;
  line-height: 1.33em;
}

.plan
p:not(:last-child) {
    margin-bottom: .3em;
}

/*矢印*/

.plan__table-txt {
  font-size: 13px;
  font-weight: normal;
  color: #666;
  text-align: right;
  position: relative;
  padding-right: 40px;
}

.plan__table-txt::after {
  animation: scroll 2s infinite;
  border-bottom: 1px solid #666;
  border-left: 1px solid #666;
  content: "";
  height: 15px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 3px;
  width: 15px;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-135deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-135deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}

/*スクロール*/

.table-scroll {
  overflow: scroll;
}

.plan__table {
  width: 100%;
  white-space: nowrap;
}

/* スクロールバーの幅と高さを設定する */
.scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
/* スクロールバーの形を設定する */
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
}
/* スクロールバーの色を設定する */
.scrollbar-thumb-black::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: #666;
}

@media(max-width: 599px) {
  .plan__table {
    margin: 10px 0;
  }

  .plan__table th,
  .plan__table td {
    padding: 10px;
  }

  .plan__table th {
    font-size: 16px;
  }

  .tr-1 {
    font-size: 14px;
  }

  .tr-2 {
    font-size: 14px;
  }

  .table__txt {
    font-size: 13px;
  }
}

/* =======================================================================
  プロフィール
======================================================================= */

.main 
.profile h4 {
  margin: 1.5em 0 1em;
  padding-top: 1em;
  border-top: 1px solid #ddd;
  font-size: 18px;
}

.profile {
  background: #f7f5f0;
  font-size: 1rem;
}

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

  color: #052b33;
  font-weight: bold;
}

.profile__name-j-ruby {
  font-size: .7em;
  letter-spacing: .2em;
}

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

.profile__photo img {
  border-radius: 50%;
}

.profile__img {
  margin-top: 20px;
}

@media(max-width: 599px) {
  .profile {
    margin: 24px auto;
    padding: 24px;
  }
  .profile__photo {
    display: block;
    float: none;
    margin: 0 auto 1em;
  }
  .profile__name-j {
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
  }
  .profile__name-j-ruby {
    display: block;
    margin-top: 16px;
  }

  .main 
  .profile p,
  .main 
  .profile li {
    font-size: .9em;
  }
  .main 
  .profile h4 {
    font-size: 18px;
  }
}

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

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

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

.footer__logo {
  margin-bottom: 30px;
}

.footer__navi {
  text-align: right;
}

.footer__navi p {
  margin-bottom: 0;
}

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

.footer__nav ul li {
  font-size: .9em;
}

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

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

/* =======================================================================
  プライバシーポリシー
======================================================================= */

.privacy__body {
  line-height: 1.618;

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

.privacy__h1 {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 27px;
  border-bottom: 1px solid #118da6;
  display: inline-block;
  padding-bottom: 3px;
}

.privacy__h2 {
  font-size: 21px;
  margin-bottom: 20px;
}

@media(max-width: 599px) {
  .privacy__h1 {
    font-size: 21px;
    margin-bottom: 20px;
  }

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

/* =======================================================================
  特定商取引法に基づく表記
======================================================================= */

.law__body {
  line-height: 1.618;

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

.law__h1 {
  margin-top: 40px;
  font-size: 27px;
  border-bottom: 1px solid #118da6;
  display: inline-block;
  padding-bottom: 3px;
}

.table {
  table-layout: fixed;
  width: 100%;
}

.table th,
.table td {
  padding: .75em 1em;
  vertical-align: top;
  text-align: left;
}

.table th,
.table td {
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  word-wrap: break-word;
}

.table tr:first-child {
  line-height: 1.5;
  border-top: 1px solid #ddd;
}

.table tbody th {
  background: #f7f5f0;
  width: 32%;
}

.table ul, ol {
  padding-inline-start: 20px;
}

.wrap {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

@media(max-width: 599px) {
  .law__h1 {
    font-size: 21px;
  }
}

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

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

.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: bold;
}

.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: #ffee33;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

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

.a-yellow,
p.a-yellow {
  color: #ffee33;
}

.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); }
}

/* 形状 */

.is-shadow {
  filter: drop-shadow(0 16px 16px rgba(0,0,0,0.15));
}
.is-shadow:hover {
  filter: none;
}

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


/* 

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
 */