@charset "UTF-8";
/* ==========================================
   Template: EASY meishi（https://do.gt-gt.org/）
   Copyright: 2020 do.
   利用規約を遵守の上お使いください。二次配布・販売を禁じます。
   ========================================== */
/* ==========================================
  リセットCSS
  基本的には触らないでください
  ========================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300|Raleway:100,300&display=swap");

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

ol,
ul {
  list-style: none;
}

p {
  text-indent: 1em;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #f1eded;
  margin: 2em auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.75em;
}

/* ==========================================
  以下、デザインを決める記述です。
  ※印で検索することで設定箇所へジャンプします。
   ========================================== */
body {
  background: #E6EBF8;
  /* ↑背景色 ※ */
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  /* 全体のフォント ※ */
  padding: 0;
  margin: 0;
  color: #282A34;
  font-size: 15px;
  line-height: 1.75em;
}

section {
  overflow: hidden;
  width: calc(90vw - 40px);
  max-width: 1100px;
  margin: 40px auto;
  background: #fefefe;
  box-shadow: 0 5px 20px -12px #69827d73;
  display: -webkit-box;
  display: flex;
}

@media screen and (max-width: 767px) {
  section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
}

header {
  width: 120px;
  /* 以下backgroundから始まる数行がタイトル背景のグラデーションです ※ */
  background: #CED7E0;
  background: linear-gradient(121deg, #CED7E0, #9AADE3 90%);
  position: relative;
}

header h1 {
  color: #fefefe;
  font-family: "Spartan", "Noto Sans JP", sans-serif;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  top: -10px;
  right: -15px;
  font-size: 2.7em;
  font-weight: 100;
  word-break: keep-all;
  width: 90vh;
  text-align: right;
}

@media screen and (max-width: 991px) {
  header {
    width: 80px;
  }
}

@media screen and (max-width: 767px) {
  header {
    width: 100%;
    height: 50px;
  }

  header h1 {
    -webkit-transform: none;
    transform: none;
    width: 100%;
    top: auto;
    right: auto;
    bottom: -10px;
    font-size: 1.7em;
  }
}

.row {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.col {
  -webkit-box-flex: 1;
  flex: 1;
  padding: 40px 20px;
}

.col > *:first-of-type {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: #9AADE3;
  /* ↑リンクの色　一括置換すると見出し色なども一緒に変わります ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #DFA1B8;
  /* ↑リンクをホバーしたときの色 ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a.btn {
  display: block;
  background: #9AADE3;
  color: white;
  padding: 3px 10px;
  margin: 20px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.btn:hover {
  background: #F2B9DF;
}

dl,
ol,
p,
ul {
  margin: 1em 0;
  padding: 0;
}

@media screen and (max-width: 767px) {

  dl,
  ol,
  p,
  ul {
    margin: 1em 0;
  }
}

h2 {
  color: #9AADE3;
  font-weight: 250;
  font-size: 1.5em;
  margin: 2em 0 1rem;
}

h3 {
  color: #9AADE3;
  margin: 1em 0 .7em;
  font-size: 1em;
  font-weight: 300;
}

.center {
  text-align: center;
}

dl.memo dt {
  width: 100%;
  color: #9AADE3;
  padding: 1px 5px;
}

dl.memo dd {
  border-left: 1px dotted #d0d0d0;
  margin: 0 0 0 1em;
  padding: 0 0 1em 1em;
}

.box {
  background: #EDF0F5;
  /* ↑色付きボックスの背景色 ※ */
  padding: .7em 1em;
  border-radius: .2rem;
}

ul.sns-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 1em auto;
  max-width: 600px;
}

ul.sns-list li {
  margin-bottom: .3em;
}

ul.sns-list li a {
  font-size: .9em;
  border: 1px solid;
  padding: .3rem .5rem;
  border-radius: 1rem;
}

ul.sns-list li a:hover {
  background: #65676d;
  color: #fefefe;
}

ul.sns-list li a.site:hover {
  background: #F2B9DF;
  border: 1px solid #9AADE3;
  color: #fefefe;
}

ul.sns-list li a.bluesky:hover {
  background: #1185FE;
  border: 1px solid #1185FE;
  color: #fefefe;
}

ul.sns-list li a.mixi2:hover {
  background: linear-gradient(90deg, #FF79A1, #FF9A00);
  border: 1px solid #FF79A1;
  color: #fefefe;
}

ul.sns-list li a.xfolio:hover {
  background: linear-gradient(45deg, #0068b7, #74d1ea);
  border: 1px solid #339ED0;
  color: #fefefe;
}

ul.sns-list li a.twitter:hover {
  background: #1DA1F2;
  border: 1px solid #1DA1F2;
  color: #fefefe;
}

ul.sns-list li a.tumblr:hover {
  background: #36465d;
  border: 1px solid #36465d;
  color: #fefefe;
}

ul.sns-list li a.youtube:hover {
  background: #cd201f;
  border: 1px solid #cd201f;
  color: #fefefe;
}

ul.sns-list li a.note:hover {
  background: #2dcdb5;
  border: 1px solid #2dcdb5;
  color: #fefefe;
}

ul.sns-list li a.marsh:hover {
  background: #F3969A;
  border: 1px solid #F3969A;
  color: #fefefe;
}

ul.sns-list li a.skeb:hover {
  background: #30B396;
  border: 1px solid #30B396;
  color: #fefefe;
}

ul.sns-list li a.pixiv:hover {
  background: #0096FA;
  border: 1px solid #0096FA;
  color: #fefefe;
}

ul.sns-list li a.booth:hover {
  background: #FC4D50;
  border: 1px solid #FC4D50;
  color: #fefefe;
}

ul.sns-list li a.fantia:hover {
  background: #FF5600;
  border: 1px solid #FF5600;
  color: #fefefe;
}

ul.sns-list li:not(:last-of-type) {
  margin-right: .5em;
}

form.mailform {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

form.mailform input {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

form.mailform input[type=mail],
form.mailform input[type=text] {
  width: 100%;
  font-family: YuGothic, 'Yu Gothic', 'TsukuBRdGothic-Regular', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Cambria Math', 'Avenir', sans-serif;
  border: none;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #f7f7f7;
  margin: 5px 0;
  padding: 5px;
  font-size: 14px;
}

form.mailform input[type=mail]:focus,
form.mailform input[type=text]:focus {
  outline: none;
  background: white;
}

form.mailform input[type=submit] {
  border: none;
  padding: 7px 15px;
  font-size: 14px;
  background: #9AADE3;
  color: #fefefe;
  border-radius: 5px;
  margin: 10px 0;
  background: #9AADE3;
}

form.mailform input[type=submit]:hover {
  outline: none;
  background: #d899c0;
  cursor: pointer;
}

form.mailform textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #f7f7f7;
  border-radius: 3px;
  font-family: YuGothic, 'Yu Gothic', 'TsukuBRdGothic-Regular', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Cambria Math', 'Avenir', sans-serif;
  margin: 5px 0;
  padding: 5px;
  font-size: 14px;
}

form.mailform textarea:focus {
  outline: none;
  background: white;
}

footer p {
  text-align: center;
}

footer p a {
  text-align: center;
  width: 100%;
  font-size: 12px;
  padding: 5px 10px;
  margin: 0 auto;
  display: block;
}

.only-phone {
  display: none;
}

@media screen and (max-width: 767px) {
  .only-phone {
    display: block;
  }
}