@charset "UTF-8";
/* 共通事項 */
html {
    font-size: 100%;
}

body {
    font-family: "DotGothic16";
    background-color: #fff6fb;
}

a {
    text-decoration: none;
    color: black;
}

/* ヘッダー */
header {
    background-color: #f3c1da;
    height: 50%;
    width: 100%;
}
.logo {
    width: 150px;
    margin: 15px 0 15px 20px;
}

.menu-1 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.menu-2 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;

}


/* 題名 */
h1 {
    text-align: center;
    margin: 50px 0 40px 0;
}

h2 {
  text-align: center;
}

.jouhou {
  width: 350px;
}

.qa {
  margin: 40px;
}

.qa__block {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}


.qa__item {
  display: inline-block;

}

.qa__head {

  position: relative;
  text-align: left;
  padding: 20px 30px 20px 20px;
  border-radius: 8px 8px 0 0;
  color: black;
  border-bottom: #ffcfec solid 1px;
  cursor: pointer;
  width: 100%;
}

.qa__head:after {
  content: "";
  border-top: 1px solid black;
  border-left: 1px solid black;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(-135deg) translateY(9px);
  position: absolute;
  right: 20px;
  top: 50%;
  transition: transform .4s;
}

.qa__body {
  position: relative;
  background: #fff;
  padding: 0 20px;
  line-height: 0;
  opacity: 0;
  transition: line-height 0.4s, padding 0.4s, opacity 0.4s;
}

.qa__body.is-open {
  padding: 20px;
  line-height: 1.5;
  opacity: 1;
  border: 1px solid lightblue;
}

.qa__head.is-open::after {
  transform: rotate(45deg) translateY(-10px);
}


.qa__item:not(:first-child) {
  margin-top: 16px;
}


/* コピーライト */
.copyright {
  background-color: #f3c1da;
  text-align: center;
  color: #333;
  padding: 30px;
  font-size: 20px;
  margin-top: 50px;
}


/* レスポンシブ */
@media (min-width: 820px) {

.menu {
    text-align: center;
}

.menu-1, .menu-2 {
    display: inline;
    font-size: 22px;
    gap: 2rem;
}


/* 題名 */
h1 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* 記事 */

.jouhou {
  width: 450px;
}

/* コピーライト */
.copyright {
  background-color: #f3c1da;
  text-align: center;
  color: #333;
  padding: 30px;
  font-size: 20px;
  margin-top: 150px;
}

}