/* 2025/04/16 */

@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: 768px) {
  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: 600;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

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

body {
  color: #012840;
}

/* リンク */

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: 768px) {
  .pc { display: none; }
  .sp { display: block; }
}

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

/* 幅 */

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

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

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

@media(max-width: 768px) {
  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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .main {
    padding-bottom: 24px;
  }
}

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

.main p:not([class]) {
  font-size: 1em;
}

@media(max-width: 768px) {
}

/* 小見出し H2
======================================================================= */

.h2 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 17px;
  line-height: 1em;
  font-size: 30px;
  text-align: center;
}

.h2:before {
  content: '';
  position: absolute;
  bottom: -17px;
  display: inline-block;
  width: 40px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #147ca6;
  border-radius: 2px;
}

@media(max-width: 768px) {
  .h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .h2:before {
    bottom: -12px;
    width: 30px;
  }
}

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

.h3 {
  margin-top: 30px;
  margin-bottom: 40px;
  line-height: 1em;
  font-size: 18px;
  color: #147ca6;
  text-align: center;
}

@media(max-width: 768px) {
  .h3 {
    margin-top: 21px;
    margin-bottom: 24px;
    font-size: 16px;
  }
}

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

.header {
  position: fixed;
  top: 0px;
  width: 100%;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 2;
}

.header__logo-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin: 0;
  text-align: left;
  line-height: 0;
}

@media(max-width: 768px) {
  .header {
    padding: 10px 24px;
  }

  .logo {
    width: 65%;
  }
}

/* ハンバーガーメニュー
-------------------------------------------------- */

.gnav-toggle {
  position: relative;
  margin-top: 12px;
}

/* チェックボックス等は非表示に */
.gnav-hidden {
  display: none;
}

/* アイコンのスペース */
#gnav-open {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

/* ハンバーガーの形をCSSで表現 */
#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
  content:'';
  position: absolute;
  height: 3px;
    /*線の太さ*/
  width: 25px;
    /*線の長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  cursor: pointer;
}

#gnav-open span::before {
  bottom: -8px;
}

#gnav-open span::after {
  bottom: -16px;
}

/* 閉じる用の薄黒箇所 */
#gnav-close {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/* チェックがついたら表示させる */
#gnav-input:checked ~ #gnav-close {
  display: block;
  opacity: 0.5;
}

#gnav-input:checked ~ #gnav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0);
}

/* メニューの中身 */
.gnav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
}

.gnav-menu {
  list-style-type: none;
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

.gnav-menu
a,
a:hover {
  text-decoration: none;
}

.gnav-item {
  border-bottom: 2px dotted #eee;
  margin: 10px;
  padding-bottom: 20px;
}

.gnav-item a {
  color: #fff;
  font-size: 12px;
  display: block;
  width: 200px;
  text-align: center;
}

.gnav-item a::first-line {
  font-size: 16px;
  font-weight: bold;
}

.gnav-item-txt {
  font-size: 21px;
}

@media(min-width: 768px) {
  .gnav-menu {
    flex-direction: row;
    padding-top: 15px;
    margin: 0;
  }

  .gnav-item {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
  }

  .gnav-item a {
    color: #012840;
    width: 120px;
    font-size: 13px;
  }

  .gnav-item a:hover {
    color: #147ca6;
  }

  .gnav-item img {
    margin-left: 2px;
    margin-top: -2px;
  }
}

/* =======================================================================
  ヒーローイメージ
======================================================================= */

.hero {
  width: 100vw;
  height: 600px;
  background: #fff url(img/hero__img.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .pc h1 {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 1092px;
  margin-top: 260px;
}


@media(max-width: 768px) {
  .hero {
    background: none;
    height: 100%;
  }

  .main .hero h1 {
    padding: 0;
    margin-top: 0;
  }
}


/* =======================================================================
  サービス内容
======================================================================= */

.service {
  padding-top: 40px;
}

.service__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.service__txt {
  background-color: #fafafa;
  border-radius: 3px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  padding: 40px;
  max-width: 52%;
  min-height: 335px;
  margin-top: 40px;
  margin-right: -20px;
  z-index: 1;
}

.service__h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.service__content {
  font-size: 18px;
  color: #147ca6;
}

.service__txt p:not(:last-child) {
  margin-bottom: 12px;
}

.service__img {
  max-width: 52%;
  margin-left: -20px;
}

.service__img img {
  border-radius: 3px;
  width: 100%;
  height: auto;
}

/*偶数*/
.service__item:nth-child(2n) {
  flex-direction: row-reverse; /* 横並びの方向を逆にする */
}

.service__item:nth-child(2n)
.service__txt{
  margin-right: 0;
  margin-left: -20px;
}

.service__item:nth-child(2n)
.service__img {
  margin-left: 0; /* 先の指定で左に30pxはみ出しているのを打ち消す */
  margin-right: -20px; /* 写真を30px右にはみ出させる */
}

@media(max-width: 768px) {
  .service {
    padding-top: 24px;
  }

  .service__item {
    flex-direction: column-reverse;
    justify-content: center;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
    background-color: #fafafa;
  }

  .service__txt {
    border-radius: 0 0 3px 3px;
    box-shadow: none;
    padding: 24px;
    max-width: 100%;
    min-height: 0;
    margin-top: 0;
    margin-right: 0;
  }

  .service__img {
    max-width: 100%;
    margin-left: 0;
  }

  .service__img img {
    border-radius: 3px 3px 0 0;
  }

/*偶数*/
  .service__item:nth-child(2n) {
    flex-direction: column-reverse;
  }

  .service__item:nth-child(2n)
  .service__txt{
    margin-right: 0;
    margin-left: 0;
  }
}

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

.cta {
  display: flex;
  align-items: center;
}

.cta__btn {
  margin-right: 20px;
}

.cta__btn:last-child {
  margin-right: 0;
}

.cta__inner {
  display: flex;
  margin-right: 20px;
}

@media(max-width: 768px) {
  .cta {
    flex-direction: column;
  }

  .cta__btn {
    margin-right: 0;
    margin-bottom: 20px;
  }

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

  .cta__inner {
    margin-right: 0;
    display: flex;
    gap: 10px;
  }
}

/* =======================================================================
  私たちの強み
======================================================================= */

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

.about h2 {
  padding-top: 80px;
}

.about__item {
  background-color: #fff;

  display: grid;
  grid-template-columns: 45% auto;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

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

.about__img {
  padding: 40px 0 40px 40px;
}

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

.about__h4 {
  display: flex;
  flex-direction: column;
}

.about__h4-num {
  width: 20%;
  margin-bottom: 17px;
}

.about__h4-txt {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 25px;
}

@media(max-width: 768px) {
  .about {
    background-attachment: scroll;
    padding-bottom: 24px;
  }

  .about h2 {
    padding-top: 40px;
  }

  .about__item {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .about__img {
    padding: 0 24px 24px;
  }

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

  .about__h4 {
    display: flex;
    flex-direction: column;
  }

  .about__h4-num {
    margin-bottom: 10px;
  }

  .about__h4-txt {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* =======================================================================
  お問い合わせ
======================================================================= */
.contact {
  padding-top: 40px;
}

.form__inner {
  display: flex;
  margin-bottom: 1.8em;
  align-items: center;
}

.main .form__inner p {
  margin-bottom: 3px;
  width: 20%;
  margin-right: 20px;
  text-align: left;
}

.contact input[type="text"] {
  display: block;
  padding: 1em;
  width: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #666;
  font-family: FontAwesome;
}

.contact input[type="email"] {
  display: block;
  padding: 1em;
  width: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #666;
  font-family: FontAwesome;
}

.label_radio {
  display: flex;
}

.radio_span {
  margin-left: 0.5em;
}

.contact textarea {
  display: block;
  padding: 1em;
  width: 80%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #666;
  font-family: FontAwesome;
}

.form__btn {
  text-align: center;
  margin-top: 40px;
}

.form__btn button {
  width: 40%;
  margin: 0 auto;
  border-radius : 3px;
  text-align: center;
  cursor: pointer;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #147ca6;
  color: #fff;
  line-height: 1em;
  transition: .3s;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  border: 2px solid #147ca6;
}

.form__btn button:hover {
  box-shadow: none;
  color: #147ca6;
  background: #fff;
}

.require {
  font-size: 13px;
  font-weight: 400;
  color: #b3122d;
}

.error {
  font-weight: 400;
  color: #cc2200;
}

@media(max-width: 768px) {
  .form__inner {
    display: block;
    margin-bottom: .8em;
  }

  .main .form__inner p {
    margin-bottom: 3px;
    width: 100%;
  }

  .contact input[type="text"] {
    width: 100%;
    margin: 0 auto 1.3em;
  }

  .contact input[type="email"] {
    width: 100%;
    margin: 0 auto 1.3em;
  }

  .contact textarea {
    width: 100%;
    margin: 0 auto 1em;
  }

  .require {
    font-size: 12px;
  }

  .form__btn {
    margin-top: 20px;
  }

  .form__btn button {
    width: 100%;
  }
}


/*Thanks*/

.thanks {
  padding-top: 60px;
  padding-bottom: 60px;
}

.thanks__h1 {
  margin: 60px auto 0;
  width: 80%;
  font-size: 30px;
  text-align: center;
}

.thanks__h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 1em;
}

.main .thanks p {
  font-size: 21px;
  text-align: center;
}

.main .thanks p:not(:last-child) {
    margin-bottom: 0;
}

.thanks a {
  text-decoration: none;
}

.thanks__btn {
  background-color:#147ca6;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-top: 100px;
  font-size: 21px;
  width: 60%;
  margin: 60px auto;
  padding-top: 18px;
  padding-bottom: 18px;
}

@media(max-width: 768px) {
  .thanks {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .thanks__h1 {
    margin: 30px auto 0;
    width: 80%;
    font-size: 21px;
  }

  .thanks__h2 {
    font-size: 18px;
  }

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

  .thanks__btn {
    margin-top: 50px;
    font-size: 16px;
    width: 100%;
  }
}

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

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

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

.footer__logo {
  margin-bottom: 30px;
}

.footer__nav p {
  margin-bottom: 0;
}

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

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

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

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

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

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

/*フッターを下部に固定する*/
.wrap {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

@media(max-width: 768px) {
  .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;
    margin-bottom: 10px;
    align-items: 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;
  color: #012840;
}

.privacy__body .main p:not([class]) {
  font-size: 1em;
}

.main .privacy__h1 {
  margin-top: 140px;
  font-size: 24px;
  display: inline-block;
  margin-bottom: 40px;
}

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

@media(max-width: 768px) {
  .main .privacy__h1 {
    margin-top: 80px;
    margin-bottom: 20px;
  }
}

/* =======================================================================
  特定商取引法に基づく表記／会社概要
======================================================================= */

.law__body {
  line-height: 1.618;

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

.main
.law__h1 {
  margin-top: 140px;
  font-size: 21px;
  display: inline-block;
}

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

.table th,
.table td {
  padding: 1em;
  vertical-align: top;
  text-align: left;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  word-wrap: break-word;
  border-left: 1px solid #ddd;
}

.table th {
  border-left: 1px solid #ddd;
}

.table td {
  border-right: 1px solid #ddd;
}

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

.table tbody th {
  background: #f9f9f9;
  width: 30%;
}

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

@media(max-width: 768px) {
  .main .law__h1 {
    margin-top: 70px;
    font-size: 18px;
  }
}

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

.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: 768px) {
  .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: 768px) {
  .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
 */