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

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: #333;
}

/* リンク */

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: 24px;
}

/* 三段組 */

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

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */

/* =======================================================================

  ヘッダー

======================================================================= */

.header {
  line-height: 1;
}

.header__top {
 background-color: #fb9a8f;
 color: #fff;
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;

 padding: 24px 40px;
}

.header__top-logo {
} 

.header__top-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: fff;
  text-align: right;
}

.header__top-nav li {
  text-align: center;
  float: left;
}

.header__top-nav a {
  margin-left: 2em;
  display: block;
  color: inherit;
  text-decoration: none;
}

.header__h1 {
  padding-block: 100px;
  background: #fff url("img/header__bg.jpg") no-repeat center top;
}

@media(max-width: 599px) {
  .header {
    margin-bottom: 10px;
  }
  .header__top {
    padding: 12px 20px;
  }
  .header__top-logo {
   
  }
}

/* =======================================================================

  メイン

======================================================================= */

.main {
  padding-bottom: 40px;
}

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

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


/* =======================================================================
  CTA
======================================================================= */
.cta {
  margin-bottom: 0;
 text-align: center;
}
.cta p {
  text-align: center;
}
.cta__txt {
  text-align: center;
}
.cta__txt1 img {
  margin-bottom: 20px;
  text-align: center;
}
.cta__txt2 img{
  text-align: center;
  margin-bottom: 20px;
}
.cta__btn img {
  text-align: center;
}

@media(max-width: 599px) {
  .cta__txt1 img,
  .cta__txt2 img {
    margin-bottom: 0;
  }
}

/* =======================================================================
  こんなお子さん・保護者の方にぴったり！
======================================================================= */

.match {
  margin-top: 0;
  padding-top: 0;
}
.match__h3 img {
 margin-top: 20px; 
 margin-bottom: 20px;
}
.match__item {
  background-color: #fff6e5;
  border-radius: 8px;
  display: grid;
  grid-template-columns: auto 25%;

  margin: 20px auto;
}

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

.match__head {
  font-size: 24px;
  font-weight: bold;
  line-height: 2em;
}

.match__img {
}

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

.match__txt {
}


@media(max-width: 599px) {
  .match {
    padding: 0;
  }
  .match__h3 img {
  margin-top: 20px; 
  margin-bottom: 0;
  }
  .match__head {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5em;
}

  /* そのまま縮める（文字が少ない場合） */
  .match__item {
    display: grid;
  }
  .match__img {
    width: 100%;
    height: 100%;
  }
  .match__img img {
    aspect-ratio: auto;
    height: 100%;
  }
}
/* =======================================================================
  この教室で育つのは、「生きる力」
======================================================================= */

.result {
  padding-block: 60px;
  background: url(img/result__bg.jpg) repeat center top;
}

.result__h3 {
  margin-top: 20px; 
  margin-bottom: 40px;
  text-align: center;
}

.result p {
  text-align: center;

}
@media(max-width: 599px) {
  .result__h3 {
    margin-top: 16px; 
    margin-bottom: 16px;
  }
  .result {
    padding-block: 24px;
  }
}
/* =======================================================================
  現代アート×英語の理由
======================================================================= */

.details__h3 {
  text-align: center;
}

.details__item {
  background-color: #fff6e5;
  border-radius: 8px; 
  margin-bottom: 20px; 
}

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

.details__img {
  margin: -40px -40px 40px;
}

.details__h4 {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 28px;
}

.details__h4::before { 
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(img/icon.png);
  background-size: contain;
  vertical-align: middle;
}

.details__p {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

@media(max-width: 599px) {
  .details__item {
    margin-bottom: 8px; 
  }
  .details__img {
    margin: -20px -20px 20px;
  }
  .details__h4 {
    padding-bottom: 8px;
    gap: 8px;
    font-size: 21px;
  }
  .details__h4:before { 
    width: 21px;
    height: 21px;
  }
  .details__p {
    font-size: 1em;
  }
}


/* =======================================================================
  なぜこの教室が生まれたの？
======================================================================= */

.boost {
  padding-block: 60px;
  background: #e6ebef url(img/boost__bg.jpg) repeat center top;
}

.boost__h3 {
  text-align: center;
}

.boost__h3 img {
  text-align: center;
  margin-top: 20px; 
  margin-bottom: 40px;
}

.boost__txt {
  text-align: center;
}

@media(max-width: 599px) {
  .boost {
    padding-block: 36px;
  }
  .boost__h3 img {
    margin-top: 0;
    margin-bottom: 20px;
  }
}


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

.profile {
  font-size: 1rem;
  text-align: center;
}

.profile__h3 {
  margin-bottom: 40px;
  text-align: center;
}
.profile__head {
  text-align: center;
  font-size: 22px;
}

.profile__item {
  display: flex;
  gap: 24px;
}
.profile__box {
  width: 50%;
  border: solid 1px #bbf2ed;
  border-radius: 8px;
}

ul.profile__title {
  margin-bottom: 1em;
  padding: 0 0 0 1.25em;
}

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

  color: #333;
  font-weight: bold;
}

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

.profile__name-e {
  margin-bottom: 1.5em;
  color: #aaa;
  letter-spacing: .25em;
  font-weight: normal;
  font-size: .7em;
  line-height: 1;
  font-feature-settings: "palt";
  text-transform: uppercase;
}

.profile__photo {
  text-align: center;
  margin:  2em ;
}

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

.main 
.profile h4 {
  margin: 1.5em 0 1em;
  padding-top: 2em;
  
  font-size: 20px;
}

@media(max-width: 599px) {
  .profile {
   margin-bottom: 30px;
  }
  .profile__h3 {
   margin-bottom: 24px;
  }
  .profile__item {
    flex-direction: column;
  }
  .profile__box {
    width: 100%;
  }
  .profile__photo {
    display: block;
    float: none;
    margin: 1em auto;
    width: 40%;
  }
  .profile__name-j {
    text-align: center;
    font-size: 22px;
  }
  .profile__name-j-ruby {
    display: block;
    margin-top: 14px;
  }
  .profile__name-e {
    text-align: center;
    font-size: 14px;
  }
  .main 
  .profile p,
  .main 
  .profile li {
    font-size: .9em;
  }
  .main 
  .profile h4 {
    font-size: 18px;
  }
  
}

/* =======================================================================
  レッスンの流れ
======================================================================= */

.lesson {
  padding-block: 60px;
  background: #f5f2ed url(img/lesson__bg.jpg) no-repeat center top;
}

.lesson__h3 {
  text-align: center;
  margin-bottom: 24px;
}

.lesson__txt {
  text-align: center;
}

.lesson__inner {
  border: 1px solid #fb9a8f;
  background-color: rgb(255 255 255 / 0.666);
  border-radius: 8px;
}

ol.lesson__item {
  margin: 0;
  padding: 0;
  list-style-type: none;
  counter-reset: number;
  display: block;
}

ol.lesson__item li {
  position: relative;
  padding-left: 66px;
  line-height: 1.5;
  font-size: 24px;
  font-weight: bold;
  padding-top: .666em;
  padding-bottom: .666em;
}

ol.lesson__item li::before {
  position: absolute;
  top: 50%;
  left: 0;
  display:inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fb9a8f;
  color: #fff;
  content: counter(number);
  counter-increment: number;
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  line-height: 45px;
  transform: translateY(-50%);
}

ol.lesson__item li:first-child {
  margin-top: -.333em;
}

.lesson p {
  margin-top: -1em;
  padding-left: 66px;
  padding-bottom: 0;
}


@media(max-width: 599px) {
  .lesson {
    padding-block: 24px;
  }
  .lesson__h3 {
    margin-bottom: 16px;
  }
  ol.lesson__item li {
    padding-left: 42px;
    font-size: 16px;
    padding-top: .5em;
    padding-bottom: .5em;
  }
  ol.lesson__item li::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    line-height: 30px;
  }
  body .main .lesson p {
    margin-top: -.5em;
    padding-left: 42px;
    font-size: .8em;
  }
}

/* =======================================================================
  モニターレッスンにご協力頂いた保護者の声
======================================================================= */
.voc__h3 {
  text-align: center;
}

.voc {
  
  color: #333;
}

.voc__item {
  background: #fff6e5;
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 8px;
}

.voc__img {
  flex-shrink: 0;
  margin-left: 1em;
}
.voc__img img{
  width: 110px;
}

body .main .voc p {
  font-size: 1.25em;
  font-style: italic;
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .voc__img img{
    width: 60px;
  }
  body .main .voc p {
    font-size: 1em;
  }
}


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

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

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer__center {
  border-bottom: solid 1px #fff;
}
.footer__main {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.1em;
}
.footer__main__s {
  font-size: 18px;
  margin-bottom: 1em; 
}
.footer__under {
  display: flex;
}
.footer__left {
  text-align: left;
  padding-top: 20px;
}
.footer__left__ttl {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
}
.footer__left__item {
  display: flex;
  margin-bottom: 8px;
  gap: 8px;
}

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

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

.footer__copy {
  font-size: 10px;
}

@media(max-width: 599px) {
  .footer {
    padding: 24px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__main {
  font-size: 20px;
  }
  .footer__main__s {
  font-size: 12px;
  }
  .footer__left {
  border-top: 1px solid #fff;
  padding-top: 10px;
  }
  .footer__left p {
    margin-left: 0;
  }
  .footer__left__ttl {
  font-size: 16px;
  text-align: center;  
  }
  .footer__left__item {
    display: block;
    text-align: center;
  }
  .footer__copy {
    text-align: center;
  }
  .footer__under {
  display: block;
  }
}


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

.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 #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
}
  .h3:first-child {
    margin-top: 0;
  }

.h3 img {
  margin-top: 20px;
  margin-bottom: 60px;
}

@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: #333;
}

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

/* キャプション
======================================================================= */

.caption,
.main p.caption {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

/* UL
======================================================================= */

.ul {
  background-color: #f7f5f0;
  padding: 1.5em 2em;
  padding-left: 3em;
}

.ul li::before {
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  color: #369;
  content: "\f111";
  font-family: FontAwesome;
}

@media(max-width: 599px) {
  .ul {
    font-size: 1em;
  }
}

/* 表
======================================================================= */

.table {
  width: 100%;
}

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

.table thead th {
  background: #369;
  color: #fff;
}

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

.table p {
  margin-bottom: .333em;
}
  .table p:last-child {
    margin-bottom: 0;
  }

.table tbody th {
  background: #f7f5f0;
}

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

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

/* =======================================================================
  セミナー概要
======================================================================= */

.overview {
  margin: 40px auto;
}

.overview > *:first-child {
  margin-top: 0;
}

.main .overview p,
.main .overview li {
}

.overview__h4 {
  margin: 2em auto 1em;
  padding: 1em;
  border-top: 1px solid #369;
  background-color: #f7f5f0;
  color: #333;
  text-shadow: 0 1px 0 #fff;
  font-size: 1.1em;
  line-height: 1;
}

.main .overview ul {
  margin: 1em 0;
}

.overview__table {
  margin: 24px auto;
  width: 100%;
}

.overview__table th,
.overview__table td {
  padding: 1em;
  border: 1px solid #ddd;
  vertical-align: top;
  text-align: left;
}

.overview__table thead th {
  border: 1px solid rgba(0,0,0,.3);
  border-bottom: none;
  background: #369;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.overview__table th,
.overview__table td,
.overview__table p {
  font-size: 1em;
  line-height: 1.5;
}

.overview__table p {
  margin-bottom: .333em;
}
  .overview__table p:last-child {
    margin-bottom: 0;
  }

.overview__table tbody th {
  background: #f7f5f0;
}

.overview__table del {
  color: #666;
}

.overview__table .nowrap {
  white-space: nowrap;
}

.overview__table .close {
  color: #666;
}

.overview__table .close th {
  background: #eee;
}

.overview__table .close td {
  background: #f8f8f8;
}

.overview__table .close, 
.overview__table .close a {
  color: #999;
}

.new {
  display: inline-block;
  margin-bottom: 6px;
  padding: .3em 1em;
  border-radius: 9999px;
  background-color: #cc2200;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

@media(max-width: 599px) {
  .overview {
    margin: 24px auto;
  }
  .overview__h4 {
    margin: 24px auto 1em;
    padding: .75em;
    font-size: 16px;
  }
  .main .overview ul {
    margin: 1em 0;
  }
}
/* =======================================================================
  アクセント
======================================================================= */

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

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

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