@charset "UTF-8";
/* メディアクエリ用ブレイクポイント定義 _mixin.scssのみにて使用 */
img[src$=".svg"] {
  width: 100%;
}

/*def end*/
/*share*/
::-moz-selection {
  background: rgba(3, 22, 40, 0.6); /* Safari */
  color: white;
}
::selection {
  background: rgba(3, 22, 40, 0.6); /* Safari */
  color: white;
}

::-moz-selection {
  background: rgba(3, 22, 40, 0.6); /* Firefox */
  color: white;
}

html, body {
  height: 100%;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

li {
  list-style-type: none;
}

dl, dt, dd, ul, li, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

em, i {
  font-style: normal;
}

i.fa {
  margin-right: 0.25em;
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  ._sp {
    display: none !important;
  }
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
}

html {
  font-size: 12px;
}

body {
  font-family: "Noto Sans JP", "Roboto Condensed", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  background: #e3e3df;
}

/* amazon で使ってたきれいなグラデーション
linear-gradient(90deg,#00050d,rgba(0,5,13,.991) 6.67%,rgba(0,5,13,.964) 13.33%,rgba(0,5,13,.918) 20%,rgba(0,5,13,.853) 26.67%,rgba(0,5,13,.768) 33.33%,rgba(0,5,13,.668) 40%,rgba(0,5,13,.557) 46.67%,rgba(0,5,13,.443) 53.33%,rgba(0,5,13,.332) 60%,rgba(0,5,13,.232) 66.67%,rgba(0,5,13,.147) 73.33%,rgba(0,5,13,.082) 80%,rgba(0,5,13,.036) 86.67%,rgba(0,5,13,.009) 93.33%,rgba(0,5,13,0))
*/
.header {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  padding-top: 50px;
}
.header__logo {
  width: 100px;
}
.header__catch {
  margin-top: 20px;
  font-size: 1.2rem;
}

.main {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  margin-top: 50px;
}

.section + .section {
  margin-top: 30px;
}
.text {
  margin-top: 20px;
}
.text__paragraph {
  line-height: 180%;
  text-align: justify;
}
.text__paragraph + .text__paragraph {
  margin-top: 20px;
}
.text + .text {
  margin-top: 50px;
}

.link__underline {
  margin-top: 10px;
  font-weight: bold;
  position: relative;
  padding-left: 1em;
}
.link__underline::before {
  content: "–";
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .link__underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .link__underline::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .link__underline:hover {
    text-decoration: none;
  }
  .link__underline:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.footer {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  margin-top: 80px;
  padding-bottom: 50px;
}
.form {
  /* 
  //オリジナルの矢印を使う場合
  .select__outer {
      position: relative;
      display: table;
      &::before {
          content: "";
          position: absolute;
          top: 50%;
          right: 15px;
          width: 8px;
          height: 8px;
          border-top: 1px $black solid;
          border-right: 1px $black solid;
          transform: translateY(-50%) rotate(135deg);
          pointer-events: none;
      }
      select {
          appearance: none;
      }
  } 
  //オリジナルの矢印を使う場合
  */
}
.form input[type=text], .form input[type=date], .form input[type=email], .form textarea, .form select {
  background: #F1F1F1;
  width: 100%;
  font-size: 12px;
  margin: 0 auto;
  border: none;
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.form input[type=text]:focus, .form input[type=date]:focus, .form input[type=email]:focus, .form textarea:focus, .form select:focus {
  outline: none;
  color: black;
  background: lightgray;
}
.form textarea {
  min-height: 100px;
}
.form button, .form input[type=submit] {
  width: 70%;
  padding: 15px;
  margin: 0 auto;
  background: black;
  color: white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
  cursor: pointer;
}
.form button:hover, .form input[type=submit]:hover {
  background: white;
  color: #333;
}

.menubutton {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 0;
  width: 25px;
  height: 30px;
  cursor: pointer;
}
.menubutton span, .menubutton::before, .menubutton::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 1em;
  height: 1px;
  z-index: 2;
  margin: auto;
  background: #000;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  content: "";
}
.menubutton span {
  overflow: hidden;
  z-index: 1;
  color: #000;
  content: none;
}
.menubutton::before {
  -webkit-transform: translate(0, -0.7px);
          transform: translate(0, -0.7px);
}
.menubutton::after {
  -webkit-transform: translate(0, 0.7px);
          transform: translate(0, 0.7px);
}
.menubutton._clicked span {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
}
.menubutton._clicked::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menubutton._clicked::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.pagetopbutton {
  position: fixed;
  z-index: 1000;
  cursor: pointer;
  right: 25px;
  bottom: -20px;
  opacity: 0;
  visibility: hidden;
}
.pagetopbutton._visible {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}/*# sourceMappingURL=base.css.map */