@charset "UTF-8";

/* media query
------------------------------ */

/* font
------------------------------ */

/* setting
------------------------------ */

:root {
  /* color */
  --base-color: #000;
  --base-color-rgb: 0, 0, 0;
  --bg-color: #f1f1f1;
  --line-color: #ccc;
  --point-color: red;
  /* transition */
  --base-transition: 0.2s ease-out;
  /* z-index */
  --header-index: 999;
  --modal-index: 9999;
}

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

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

section {
  position: relative;
  padding: 60px;
}

main {
  position: relative;
  overflow: hidden;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  color: var(--base-color);
  font-weight: 500;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  cursor: pointer;
}

input {
  color: var(--base-color);
  font-weight: 500;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

select {
  background-color: #fff;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
}

span,
sub,
sup {
  font-weight: inherit;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

.ib {
  display: inline-block;
}

.en {
  font-weight: 700;
  font-family: "Doto", serif;
}

.caution {
  color: red;
}

/* title
------------------------------ */

.c-title01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-title01 .en {
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
}

.c-title01 .ja {
  font-size: 1.4rem;
}

.header {
  z-index: var(--header-index);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--bg-color);
}

.header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.header__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--point-color);
}

.header__btn_inn {
  position: relative;
  width: 30px;
  height: 20px;
}

.header__btn_line {
  -webkit-transition: var(--base-transition);
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: var(--base-transition);
}

.header__btn_line:first-of-type {
  top: 0;
}

.header__btn_line:nth-of-type(2) {
  top: 10px;
}

.header__btn_line:last-of-type {
  bottom: 0;
}

.header__nav_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 40px;
}

.generator {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
}

.generator__menu {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 300px;
  height: 100vh;
  border-right: dotted 1px #999;
}

.generator__menu_title {
  padding: 5px 10px;
  background-color: #2f4f4f;
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  text-transform: uppercase;
}

.generator__menu_wrap {
  height: 100%;
  padding: 30px 30px 50px;
  overflow-y: scroll;
}

.generator__menu_item a {
  position: relative;
  padding-left: 25px;
}

.generator__menu_item a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "👉";
}

.generator .contents {
  width: calc(100% - 300px);
}

.generator .contents section:nth-child(odd) {
  background-color: #f1f1f1;
}

.generator__title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2.8rem;
}

.generator .picture__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.generator #pictureForm {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 300px;
}

.generator #pictureForm label {
  font-weight: 700;
}

.generator #pictureForm input {
  width: 100%;
  padding: 10px;
  border: solid 1px #999;
  border-radius: 5px;
}

.generator #pictureForm .form__item + .form__item {
  margin-top: 20px;
}

.generator #pictureForm button {
  margin-top: 30px;
  padding: 10px 20px;
  border: solid 1px #000;
  border-radius: 5px;
  background-color: #ccc;
  font-weight: 700;
  font-size: 1.6rem;
}

.generator .result-area {
  position: relative;
  width: calc(100% - 400px);
}

.generator .result-area pre {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: solid 1px #999;
  border-radius: 5px;
  background-color: #fff;
}

.generator .result-area .copy {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0;
  margin-bottom: 10px;
  margin-left: auto;
}

.generator .result-area .copy button {
  color: #999;
  font-size: 1.2rem;
}

.generator .result-area .copy #copyMessage.active {
  -webkit-transform: translateX(-50%);
  position: absolute;
  top: 23px;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding: 3px 10px;
  transform: translateX(-50%);
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

.generator .result-area .copy #copyMessage.active::before {
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: -6px;
  right: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  background-color: #000;
  content: "";
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

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

@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }

  .header {
    height: 60px;
  }

  .header__inner {
    padding: 0 0 0 20px;
  }

  .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__nav {
    -webkit-transition: var(--base-transition);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: var(--base-transition);
  }

  .header__nav.active {
    opacity: 1;
  }
}

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

@media (hover: hover) and (pointer: fine) {
  .generator__menu_item a:hover {
    text-decoration: underline;
  }
}
/*# sourceMappingURL=style.css.map */
