@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*------------------------------------------------------------
共通
------------------------------------------------------------*/
HTML CSS JSResult Skip Results Iframe EDIT ON .menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  color: #fff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #555;
}

.menu__item {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

/*----------------------------
* アニメーション部分
*----------------------------*/
/* アニメーション前のメニューの状態 */
.menu {
  transform: translateX(100vw);
  transition: all 0.3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  transform: translateX(0);
}

#nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 95%;
  max-width: 1170px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.head {
  top: 0;
  width: 100%;
  z-index: 11;
  position: fixed;
}

.nav-unshown {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
/*------------------------------------------------------------
media
------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .inner {
    width: 87.5%;
  }
  .smenu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    display: block;
  }
  #nav-drawer {
    position: relative;
  }
  /*チェックボックス等は非表示に*/
  .nav-unshown {
    display: none;
  }
  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 57px;
    height: 57px;
    vertical-align: middle;
    padding: 20px 17.5px;
    box-sizing: border-box;
    z-index: 10000;
    position: relative;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 2px; /*線の太さ*/
    width: 22px; /*長さ*/
    border-radius: 10px;
    background: #333;
    display: block;
    content: "";
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  /*閉じる用の薄黒カバー*/
  #nav-close {
    display: none; /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0; /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  /*中身*/
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    padding-bottom: 100px;
    z-index: 9999; /*最前面に*/
    width: 80%; /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px; /*最大幅（調整してください）*/
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.3s ease-in-out; /*滑らかに表示*/
    -webkit-transform: translateX(105%);
    transform: translateX(105%); /*左に隠しておく*/
    -webkit-overflow-scrolling: touch;
  }
  #nav-content .spl {
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid #d5d5d5;
    box-sizing: border-box;
    text-decoration: none;
    color: #204060;
    font-weight: bold;
  }
  #nav-content dt {
    padding: 10px 20px;
    font-size: 14px;
    color: #204060;
    border-bottom: 1px solid #d5d5d5;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    background: url("../images/h_menu_tri_g.png") center right 15px no-repeat;
  }
  #nav-content dd {
    display: none;
  }
  #nav-content dd .spl {
    color: #333;
    font-weight: normal;
    padding-left: 40px;
    box-sizing: border-box;
    font-size: 13px;
    border-bottom: 1px dotted #d5d5d5;
    position: relative;
  }
  #nav-content dd .spl:before {
    content: "";
    position: absolute;
    background: #666;
    height: 1px;
    width: 12px;
    top: 20px;
    left: 20px;
  }
  #nav-content dd p:last-of-type .spl {
    border-bottom: 1px solid #d5d5d5;
  }
  #nav-content .last {
    margin-bottom: 100px;
  }
  /*チェックが入ったらもろもろ表示*/
  #nav-input:checked ~ #nav-close {
    display: block; /*カバーを表示*/
    opacity: 0.5;
  }
  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  #nav-input:checked ~ #nav-open span {
    transform: rotate(45deg);
    top: 27px;
    background: white;
  }
  #nav-input:checked ~ #nav-open span:before {
    bottom: 0;
    transform: rotate(90deg);
  }
  #nav-input:checked ~ #nav-open span:after {
    bottom: 0;
  }
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .inner {
    width: 87.5%;
  }
  #wrapper {
    width: 100%;
    overflow: hidden;
  }
  .gtp {
    bottom: 20px;
    right: 20px;
    z-index: 10;
  }
  .gtp img {
    width: 40px;
    height: auto;
  }
}
/*--media_end--*/

/*# sourceMappingURL=base.css.map */
