@charset "UTF-8";

/*配色の設定*/
:root {
/* ベースカラー：ホワイト */
--bc: #f6f5f5;
/* メインカラー：ディープブルー */
--mc: #145374;
/* アクセントカラー1：ライトレッド */
--ac1: #ee6f57;
/* アクセントカラー2：ネイビー */
--ac2: #00334e;
/* フォントカラー1：ライトブラック */
--fc1: #333333;
/* フォントカラー2：ホワイト */
--fc2: #ffffff;


/* 背景色1：ディープブルー */
--bgmc: rgb(14,83,116,0.15);
/* 背景色2：ライトレッド */
--bgac1: rgb(238,111,87,0.15);
/* 背景色3：ネイビー */
--bgac2: rgb(0,51,78,0.15);

/* 写真見出色1：ホワイト */
--pbc: rgb(246,245,245,0.9);
/* 写真見出色2：ディープブルー */
--pmc: rgb(14,83,116,0.9);
/* 写真見出色3：ライトレッド */
--pac1: rgb(238,111,87,0.9);
/* 写真見出色4：ネイビー */
--pac2: rgb(0,51,78,0.9);
}




/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■モバイル向け：画面幅（～767px)■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

/* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
body {
  background-color: var(--bc);
  margin: 0;
  font-size: 1.0em;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--fc1);
  /* height: 100%; */
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
}

header, nav, .top-picture, .contents, footer {
    width: 100%;
}

.accent {
  color: var(--ac1);
}



header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--mc);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5;
}

header .logo {
  width: 90%;
}
header h1{
  margin: 0;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  display: -ms-grid;
  display: grid;
}

header h1 img{
  width: 50%;
  margin: 0 auto;
  
  padding: 10px;
}

header .sp-menu {
  margin-left: auto;
  width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .sp-menu #open {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: auto;
  font-size: 1.5em;
  background-color: var(--mc);
  color: var(--bc);
  cursor: pointer;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  border: none;
}
header .sp-menu #open.hide {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pmc);
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .6s;
  -o-transition: opacity .6s;
  transition: opacity .6s;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.overlay #close  {
  width: 10%;
  height: calc( 2.25 * 10vw );
  font-size: 1.5em;
  background-color: transparent;
  color: var(--bc);
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
}




.overlay nav {
  margin: 0;
}
.overlay  ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: 1;
}

.overlay  li {
  font-weight: bold;
  line-height: 3;
  text-align: center;
  padding-bottom: 20px;
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  -o-transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s, -webkit-transform .3s;
}
.overlay.show li {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.overlay.show li:nth-child(1) {
  -webkit-transition-delay: .1s;
       -o-transition-delay: .1s;
          transition-delay: .1s;
}
.overlay.show li:nth-child(2) {
  -webkit-transition-delay: .2s;
       -o-transition-delay: .2s;
          transition-delay: .2s;
}
.overlay.show li:nth-child(3) {
  -webkit-transition-delay: .3s;
       -o-transition-delay: .3s;
          transition-delay: .3s;
}
.overlay.show li:nth-child(4) {
  -webkit-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s;
}
.overlay.show li:nth-child(5) {
  -webkit-transition-delay: .5s;
       -o-transition-delay: .5s;
          transition-delay: .5s;
}
.overlay.show li:nth-child(6) {
  -webkit-transition-delay: .6s;
       -o-transition-delay: .6s;
          transition-delay: .6s;
}

.overlay li a {
  font-size: 1.3em;
  text-decoration: none;
  color: var(--bc);
}

nav ul li a:hover {
  opacity: 0.5;  
}
.pc-menu {
  display: none;
}


.contents {
  padding:20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contents h1 {
  text-align: center;
  color: var(--mc);
  margin-bottom: 0;
}



footer {
  background-color: var(--mc);
  color: var(--fc2);
  margin-top: auto;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
footer .SNS {
  font-size: 2.5em;
}
footer a {
  text-decoration: none;
}
footer .T-btn {
  background-color: var(--mc);
  color: var(--bc);
}
footer .I-btn {
  background-color: var(--mc);
  color: var(--bc);
}


.push-btn {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--fc2)), color-stop(45%, var(--ac1)),to(var(--ac1)));
  background-image: -o-linear-gradient(top, var(--fc2), var(--ac1) 45%,var(--ac1) 100%);
  background-image: linear-gradient(180deg, var(--fc2), var(--ac1) 45%,var(--ac1) 100%);
  color: var(--fc2);
  border: 2px solid var(--ac1);
  border-radius: 5px;
  padding: 8px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
}
.push-btn:hover {
  opacity: 0.5;
  }

/*◆◆◆◆◆↑↑↑ 基本レイアウト ↑↑↑◆◆◆◆◆*/





/* ◆◆◆◆◆↓↓↓ index ↓↓↓◆◆◆◆◆ */
/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  background-color: var(--mc);
  
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
          animation: sk-scaleout 1.0s infinite ease-in-out;
}
/* ローディングアニメーション */
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}


#index .contents {
  padding: 0;
}

#index .contents .gray img {
  /* width: 100%; */
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align:top;
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
}
#index .contents .greeting {
  background-color: var(--pbc);
  width: 90%;
  padding: 10px;
  position: relative;
  top: -10vw;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -10vw;
}
#index .contents .slab img {
  width: 100%;
  vertical-align:top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#index .contents .slab img:nth-child(odd) {
  border: 20px solid var(--mc);
}
#index .contents .slab img:nth-child(even) {
  border: 20px solid var(--bc);
}

/*◆◆◆◆◆↑↑↑ index ↑↑↑◆◆◆◆◆*/




/* ◆◆◆◆◆↓↓↓ about ↓↓↓◆◆◆◆◆ */

#about .message {
  margin-top: 30px;
  margin-bottom: 30px;
}
#about .message2, #about .message3, #about .message4 {
  margin-top: 70px;
}
#about .text1-1 img {
  float: right;
  margin-bottom: 10px;
	margin-left: 10px;
  width: 40%;
  display: block;
  border-radius: 30px;
}
#about .text1-2 {
  background-color: var(--bgac2);
  margin: 30px -5px 30px -5px;
  padding: 10px;
  border-radius: 5px;
}
#about .text1-3 {
  background-color: var(--bgac1);
  margin: 30px -5px 30px -5px;
  padding: 10px;
  border-radius: 5px;
}
#about .text1-4 {
  margin: 30px -5px 30px -5px;
  padding: 10px;
  border-radius: 5px;
  border: solid 2px var(--bgac2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#about p {
  margin: 0;
}
#about .pic1 {
  margin-bottom: 50px;
}
#about .pic1 img {
  width: 90%;
}
#about .pic1 .born {
  background-color: var(--pmc);
  width: 50%;
  height: 4.5em;
  padding: 5px;
  position: relative;
  left: 40%;
  top: -220px;
  color: var(--bc);
  margin-bottom: -220px;
}
#about .pic1 .like {
  background-color:var(--pac2);
  width: 50%;
  height: 5.5em;
  padding: 5px;
  position: relative;
  left: 50%;
  top: 20px;
  color: var(--bc);
  /* margin-bottom: 20px; */
}
#about .skill {
  padding-left: 20px;
  margin-bottom: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -ms-grid-rows: auto auto 1fr;
  grid-template-rows: auto auto 1fr;
}
#about .skill > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#about .skill > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
#about .skill > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
#about .skill > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
#about .skill > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
#about .skill > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}

/*スキルアイコン before*/
#about .skill .beforeIcon {
  height: 5em;
  padding-right: 10px;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
#about .skill .beforeHTML.hide {
  display: none;
}
#about .skill .beforeCSS.hide {
  display: none;
}
#about .skill .beforeJS.hide {
  display: none;
}
#about .skill .beforePHP.hide {
  display: none;
}
#about .skill .beforeWP.hide {
  display: none;
}
#about .skill .beforeRinux.hide {
  display: none;
}
#about .skill .beforeAi.hide {
  display: none;
}
#about .skill .beforePs.hide {
  display: none;
}

/*スキルアイコン after*/
#about .skill .afterIcon {
  height: 5em;
  padding-right: 10px;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  display: none;
}
#about .skill .afterHTML.show {
  display: block;
}
#about .skill .afterCSS.show {
  display: block;
}
#about .skill .afterJS.show {
  display: block;
}
#about .skill .afterPHP.show {
  display: block;
}
#about .skill .afterWP.show {
  display: block;
}
#about .skill .afterRinux.show {
  display: block;
}
#about .skill .afterAi.show {
  display: block;
}
#about .skill .afterPs.show {
  display: block;
}
#about .skill h3 {
  margin-bottom: 0;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}
#about .skill .star {
  font-size: 1.8em;
  color: var(--ac1);
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

#about .skill .star .beforeStarHTML.hide {
  display: none;
}
#about .skill .star .beforeStarCSS.hide {
  display: none;
}
#about .skill .star .beforeStarJS.hide {
  display: none;
}
#about .skill .star .beforeStarPHP.hide {
  display: none;
}
#about .skill .star .beforeStarWP.hide {
  display: none;
}
#about .skill .star .beforeStarRinux.hide {
  display: none;
}
#about .skill .star .beforeStarAi.hide {
  display: none;
}
#about .skill .star .beforeStarPs.hide {
  display: none;
}
#about .skill .star .afterStar {
  display: none;
}
#about .skill .star .afterStarHTML.show {
  display: block;
}
#about .skill .star .afterStarCSS.show {
  display: block;
}
#about .skill .star .afterStarJS.show {
  display: block;
}
#about .skill .star .afterStarPHP.show {
  display: block;
}
#about .skill .star .afterStarWP.show {
  display: block;
}
#about .skill .star .afterStarRinux.show {
  display: block;
}
#about .skill .star .afterStarAi.show {
  display: block;
}
#about .skill .star .afterStarPs.show {
  display: block;
}



#about .skill .exp {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 3;
  grid-row: 3;
}

/*◆◆◆◆◆↑↑↑ about ↑↑↑◆◆◆◆◆*/


/* ◆◆◆◆◆↓↓↓ works ↓↓↓◆◆◆◆◆ */

/* タブの設定 */
#works .tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin:20px 0;
}
#works .tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: var(--mc);
  display: block;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
#works .tab-label {
  color:var(--fc2);
  background: #cccccc;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#works .tab-label:not(:last-of-type) {
  margin-right: 5px;
}
#works .tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
#works .tab-switch:checked+.tab-label {
  background: var(--mc);
}
#works .tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  -webkit-transition: .5s opacity;
  -o-transition: .5s opacity;
  transition: .5s opacity;
  -webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
          box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
#works .tab-switch {
  display: none;
}

/* タブの中身 */
/* 共通 */
#works .tab-content>p {
  margin-bottom: 30px;
}
#works .workSpace {
  margin-bottom: 60px;
}
#works .workSpace .pic {
  text-align: center;
}
#works .workSpace .pic img {
  width: 95%;
}
/* Web */
#works .workSpace .btn {
  text-align: center;
}
#works h4 {
  margin-bottom: 0;
  color: var(--ac1);
}
#works .web1 p, #works .web2 p, #works .web3 p, #works .web4 p {
  margin-top: 0;
}

/* Logo & Banner */
#works .logo-zoon {
  background-color: var(--bgmc);
  margin: 30px -5px 30px -5px;
  padding: 5px;
  border-radius: 5px;
}

#works .banner-zoon {
  background-color: var(--bgac1);
  margin: 30px -5px 30px -5px;
  padding: 5px;
  border-radius: 5px;
}
#works h2 {
  margin-bottom: 30px;
}
#works .logo-zoon h2 {
  border-bottom: 2px solid var(--mc);
}
#works .banner-zoon h2 {
  border-bottom: 2px solid var(--ac1);
}

#works .logo-zoon  .workSpace .pic img {
  width: 70%;
}
/* hobby */
#works .hobby6 .pic img {
  width: 60%;
}

/* ◆◆◆◆◆↑↑↑ works ↑↑↑◆◆◆◆◆*/




/* ◆◆◆◆◆↓↓↓ contact ↓↓↓◆◆◆◆◆ */
/* contact = 入力画面 */
#contact input[type="text"] {
  height: 2em;
  font-size: 1em;
  width: 60%;
}
#contact input[type="email"] {
  height: 2em;
  font-size: 1em;
  width: 70%;
}

#contact textarea {
  font-size: 1.3em;
  width: 80%;
  height: calc( 2em * 5 );
  line-height: 2;
  white-space: pre-wrap;
}


/* confirm = 確認画面 */

#confirm article{
  text-align: center;
}



/* done = 完了画面 */


#done article{
  text-align: center;
}


/*◆◆◆◆◆↑↑↑ contact ↑↑↑◆◆◆◆◆*/







/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■幅広レイアウト＝タブレット、PC向け：画面幅（768px～)■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
@media screen and (min-width:768px) {

/* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
  body {
    font-size: 1.2em;
  }
  .wrapper {
    width: 100%;
  }

  header .logo {
    width: 345.6px;
  }
  
  header h1 img{
    width: 345.6px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  header .sp-menu {
    display: none;
  }

  .pc-menu {
    display: block;
    margin: auto 0 0 auto;
  }

  .pc-menu ul{
    width: 422.4px;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .pc-menu li {
    width: 140.8px;
    /* align-items: end; */
  }

  .pc-menu li a {
    display: block;
    margin: auto;
    font-weight: bold;
    text-align: center;
    background-color: var(--mc);
    color: var(--bc);
    line-height: 3em;
    text-decoration: none;
    border-left: 2px solid var(--bc);
  }

  .pc-menu li a:hover {
    opacity: 0.5;
  }

  .contents {
    padding: 30px;
  }

/* ◆◆◆◆◆↑↑↑ 基本レイアウト ↑↑↑◆◆◆◆◆ */

/* ◆◆◆◆◆↓↓↓ index ↓↓↓◆◆◆◆◆ */


  #index .contents .gray img {
    /* width: 100%; */
    height: auto;
  }
  #index .contents .greeting {
    /* background-color: var(--pbc);
    width: 90%;
    padding: 10px;
    position: relative;
    top: -10vw;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -10vw; */
  }
  #index .contents .slab {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:  (20%)[5];
    grid-template-columns:  repeat(5, 20%);
    -ms-grid-rows: (10%)[10];
    grid-template-rows: repeat(10, 10%);
  }
  #index .contents .slab > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(7) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(8) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(9) {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(10) {
    -ms-grid-row: 2;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(11) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(12) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(13) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(14) {
    -ms-grid-row: 3;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(15) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(16) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(17) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(18) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(19) {
    -ms-grid-row: 4;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(20) {
    -ms-grid-row: 4;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(21) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(22) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(23) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(24) {
    -ms-grid-row: 5;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(25) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(26) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(27) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(28) {
    -ms-grid-row: 6;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(29) {
    -ms-grid-row: 6;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(30) {
    -ms-grid-row: 6;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(31) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(32) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(33) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(34) {
    -ms-grid-row: 7;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(35) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(36) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(37) {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(38) {
    -ms-grid-row: 8;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(39) {
    -ms-grid-row: 8;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(40) {
    -ms-grid-row: 8;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(41) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(42) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(43) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(44) {
    -ms-grid-row: 9;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(45) {
    -ms-grid-row: 9;
    -ms-grid-column: 5;
  }
  #index .contents .slab > *:nth-child(46) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  #index .contents .slab > *:nth-child(47) {
    -ms-grid-row: 10;
    -ms-grid-column: 2;
  }
  #index .contents .slab > *:nth-child(48) {
    -ms-grid-row: 10;
    -ms-grid-column: 3;
  }
  #index .contents .slab > *:nth-child(49) {
    -ms-grid-row: 10;
    -ms-grid-column: 4;
  }
  #index .contents .slab > *:nth-child(50) {
    -ms-grid-row: 10;
    -ms-grid-column: 5;
  }
  #index .contents .slab img {
    
  }
  #index .contents .slab img:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1/5;
    /* border: none; */
  }
  #index .contents .slab img:nth-child(2) {
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-column: 4/6;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
    /* border: none; */
  }
  #index .contents .slab img:nth-child(3) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-column: 2/5;
    -ms-grid-row: 4;
    -ms-grid-row-span: 3;
    grid-row: 4/7;
    border-color: var(--bc);
  }
  #index .contents .slab img:nth-child(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    -ms-grid-row: 6;
    -ms-grid-row-span: 3;
    grid-row: 6/9;
    /* border: none; */
  }
  #index .contents .slab img:nth-child(5) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-column: 3/6;
    -ms-grid-row: 8;
    -ms-grid-row-span: 3;
    grid-row: 8/11;
    /* border: none; */
  }
  #index .contents .slab img:nth-child(6) {
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
    grid-column: 5/6;
    -ms-grid-row: 5;
    -ms-grid-row-span: 2;
    grid-row: 5/7;
    /* border: none; */
    /* width: 100%; */
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }



/* ◆◆◆◆◆↑↑↑ index ↑↑↑◆◆◆◆◆ */





/* ◆◆◆◆◆↓↓↓ about ↓↓↓◆◆◆◆◆ */
#about .pc-menu li:nth-child(1) a{
  outline: solid 5px var(--bc);
  outline-offset: -5px;
}
#about .text1-1 img {
  width: 284px;
}
#about .pic1 .born {
  width: 40%;
  left: 55%;
}
#about .message4 .skill-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 47.5% 5% 47.5%;
  grid-template-columns: 47.5% 47.5%;
  -ms-grid-rows: (auto)[4];
  grid-template-rows: repeat(4, auto);
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
#about .message4 .skill-wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
#about .message4 .skill-wrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
#about .message4 .skill-wrap > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}
#about .message4 .skill-wrap > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
}
#about .message4 .skill-wrap > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
#about .message4 .skill-wrap > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}
#about .message4 .skill-wrap > *:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
}
#about .message4 .skill-wrap > *:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
}
#about .message4 .skillHTML {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
#about .message4 .skillCSS {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}
#about .message4 .skillJS {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
#about .message4 .skillPHP {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
#about .message4 .skillWP {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}
#about .message4 .skillRinux {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
}
#about .message4 .skillAi {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  grid-row: 4;
}
#about .message4 .skillPs {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 4;
  grid-row: 4;
}
/* ◆◆◆◆◆↑↑↑ about ↑↑↑◆◆◆◆◆ */



/* ◆◆◆◆◆↓↓↓ works ↓↓↓◆◆◆◆◆ */
#works .pc-menu li:nth-child(2) a{
  outline: solid 5px var(--bc);
  outline-offset: -5px;
}


#works .tab-switch:checked+.tab-label+.tab-content { 
  padding: 30px;
}
/*web*/
#works .tab-content1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 47.5% 5% 47.5%;
  grid-template-columns: 47.5% 47.5%;
  -ms-grid-rows: (auto)[3];
  grid-template-rows: repeat(3, auto);
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
#works .tab-content1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
#works .tab-content1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
#works .tab-content1 > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}
#works .tab-content1 > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
}
#works .tab-content1 > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
#works .tab-content1 > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

#works .tab-content1 p {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  grid-row: 1;
}
#works .tab-content1 .web1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
#works .tab-content1 .web2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
#works .tab-content1 .web3 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}
#works .tab-content1 .web4 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
}
#works .tab-content1 .pic img {
  width: auto;
  height: 35vw;
}

/*logo*/
#works .tab-content2 .logo-zoon {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 47.5% 5% 47.5%;
  grid-template-columns: 47.5% 47.5%;
  -ms-grid-rows: (auto)[6];
  grid-template-rows: repeat(6, auto);
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
#works .tab-content2 .logo-zoon > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
#works .tab-content2 .logo-zoon > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
#works .tab-content2 .logo-zoon > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}
#works .tab-content2 .logo-zoon > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
}
#works .tab-content2 .logo-zoon > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
#works .tab-content2 .logo-zoon > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}
#works .tab-content2 .logo-zoon > *:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
}
#works .tab-content2 .logo-zoon > *:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
}
#works .tab-content2 .logo-zoon > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
}
#works .tab-content2 .logo-zoon > *:nth-child(10) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
}
#works .tab-content2 .logo-zoon > *:nth-child(11) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
}
#works .tab-content2 .logo-zoon > *:nth-child(12) {
    -ms-grid-row: 6;
    -ms-grid-column: 3;
}
#works .tab-content2 .logo-zoon h2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  grid-row: 1;
}
#works .tab-content2 .logo-zoon .logo1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
#works .tab-content2 .logo-zoon .logo2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
#works .tab-content2 .logo-zoon .logo3 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}
#works .tab-content2 .logo-zoon .logo4 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
}
#works .tab-content2 .logo-zoon .logo5 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  grid-row: 4;
}
#works .tab-content2 .logo-zoon .logo6 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 4;
  grid-row: 4;
}
#works .tab-content2 .logo-zoon .logo7 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 5;
  grid-row: 5;
}
#works .tab-content2 .logo-zoon .logo8 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 5;
  grid-row: 5;
}

#works .tab-content2 .logo-zoon .logo9 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 6;
  grid-row: 6;
}
#works .tab-content2 .logo-zoon .logo10 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 6;
  grid-row: 6;
}
#works .tab-content2 .logo-zoon .pic img {
  width: auto;
  height: 20vw;
}
#works .tab-content2 .logo-zoon .logo4 .pic img,
#works .tab-content2 .logo-zoon .logo5 .pic img,
#works .tab-content2 .logo-zoon .logo10 .pic img {
  margin-top: 5vw;
  margin-bottom: 5vw;
  height: 10vw;
}

/*banner*/
#works .tab-content2 .banner-zoon {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 47.5% 5% 47.5%;
  grid-template-columns: 47.5% 47.5%;
  -ms-grid-rows: (auto)[3];
  grid-template-rows: repeat(3, auto);
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
#works .tab-content2 .banner-zoon > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
#works .tab-content2 .banner-zoon > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
#works .tab-content2 .banner-zoon > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}
#works .tab-content2 .banner-zoon > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
}
#works .tab-content2 .banner-zoon > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
#works .tab-content2 .banner-zoon > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}
#works .tab-content2 .banner-zoon h2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  grid-row: 1;
}
#works .tab-content2 .banner-zoon .banner1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
#works .tab-content2 .banner-zoon .banner2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
#works .tab-content2 .banner-zoon .banner3 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}
#works .tab-content2 .banner-zoon .banner4 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
}
#works .tab-content2 .banner-zoon .pic img {
  width: auto;
  height: 15vw;
}
#works .tab-content2 .banner-zoon .banner3 img {
  width: auto;
  height: 15vw;
  margin-top: 7.5vw;
  margin-bottom: 7.5vw;
}
#works .tab-content2 .banner-zoon .banner4 img {
  width: auto;
  height: 30vw;
}


/*hobby*/
#works .tab-content3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 47.5% 5% 47.5%;
  grid-template-columns: 47.5% 47.5%;
  -ms-grid-rows: (auto)[4];
  grid-template-rows: repeat(4, auto);
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
#works .tab-content3 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
#works .tab-content3 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
#works .tab-content3 > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}
#works .tab-content3 > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
}
#works .tab-content3 > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
#works .tab-content3 > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}
#works .tab-content3 > *:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
}
#works .tab-content3 > *:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
}
#works .tab-content3 p {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  grid-row: 1;
}
#works .tab-content3 .hobby1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
#works .tab-content3 .hobby2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
#works .tab-content3 .hobby3 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}
#works .tab-content3 .hobby4 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
}
#works .tab-content3 .hobby5 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  grid-row: 4;
}
#works .tab-content3 .hobby6 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 4;
  grid-row: 4;
}
#works .tab-content3 .pic img {
  width: auto;
  height: 20vw;
}
/* ◆◆◆◆◆↑↑↑ works ↑↑↑◆◆◆◆◆ */




/* ◆◆◆◆◆↓↓↓ contact ↓↓↓◆◆◆◆◆ */

/* contact = 入力画面 */
#contact .pc-menu li:nth-child(3) a{
  outline: solid 5px var(--bc);
  outline-offset: -5px;
}




/* confirm = 確認画面 */
#confirm .pc-menu li:nth-child(3) a{
  outline: solid 5px var(--bc);
  outline-offset: -5px;
}




/* done = 完了画面 */
#done .pc-menu li:nth-child(3) a{
  outline: solid 5px var(--bc);
  outline-offset: -5px;
}



/* ◆◆◆◆◆↑↑↑ contact ↑↑↑◆◆◆◆◆ */
}

/* ↑画面幅（768px～) */

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■幅広レイアウト＝タブレット、PC向け：画面幅（960px～)■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
@media screen and (min-width:960px) {

  /* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
    body {
      font-size: 1.3em;
    }
    .contents {
      padding: 40px;
    }




  /* ◆◆◆◆◆↓↓↓ about ↓↓↓◆◆◆◆◆ */ 
    #about .pic1 .born {
      top: -270px;

    }
  /* ◆◆◆◆◆↓↓↓ works ↓↓↓◆◆◆◆◆ */  
    #works .tab-switch:checked+.tab-label+.tab-content { 
      padding: 50px;
    }
    
  }

  /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■幅広レイアウト＝タブレット、PC向け：画面幅（1200px～)■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
@media screen and (min-width:1200px) {

  /* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
    body {
      font-size: 1.4em;
    }

    .contents {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

/* ◆◆◆◆◆↓↓↓ works ↓↓↓◆◆◆◆◆ */
    #works .tab-content1 .pic img {
      height: 360px;
    }
    #works .tab-content2 .logo-zoon .pic img {
      height: 240px;
    }
    #works .tab-content2 .logo-zoon .logo4 .pic img,
    #works .tab-content2 .logo-zoon .logo5 .pic img,
    #works .tab-content2 .logo-zoon .logo10 .pic img {
      margin-top: 60px;
      margin-bottom: 60px;
      height: 120px;
    }
    #works .tab-content2 .banner-zoon .pic img {
      height: 180px;
    }
    #works .tab-content2 .banner-zoon .banner3 img {
      margin-top: 90px;
      margin-bottom: 90px;
    }
    #works .tab-content2 .banner-zoon .banner4 img {
      height: 360px;
    }
    #works .tab-content3 .pic img {
      height: 240px;
    }
  }

    /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■幅広レイアウト＝タブレット、PC向け：画面幅（1500px～)■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
@media screen and (min-width:1500px) {

  /* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
    body {
      font-size: 1.5em;
    }
  }