@charset "UTF-8";

/*=============================================================
#mainimage
=============================================================*/
#mainimage {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 10;
  background: url("../image/mainimage.jpg");
  background-size: cover;
}

#mainimage .logo {
  position: absolute;
  width: 100px;
  top: 10px;
  left: 10px;
}

#mainimage .drawer-nav {
  background: #00adf1;
  /*メインカラー*/
  text-align: center;
}

#mainimage .drawer-menu li {
  width: 100%;
  border-bottom: 1px dotted #e5e5e5;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

#mainimage .drawer-menu li img {
  max-width: 20%;
  min-width: 20%;
}

#mainimage .drawer-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

#mainimage .copy {
  position: absolute;
  top: 10%;
  left: 1%;
  right: 1%;
  text-align: left;
}

#mainimage .entry {
  position: absolute;
  left: 10%;
  bottom: 10%;
  text-align: left;
}

#mainimage .copy h2 {
  color: #00adf1;
  /*メインカラー*/
  text-align: left;
  line-height: 1.5em;
}

#mainimage .copy p {
  color: #fff;
  text-align: left;
  line-height: 1.5em;
  margin: 30px 0;
}

#mainimage .link {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
}

#mainimage .link li a {
  background: #00adf1;
  /*メインカラー*/
  width: 80px;
  height: 80px;
  padding: 1em;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px 10px 0;
  z-index: 100;
  color: #fff;
  border-radius: 100%
}

#mainimage .link li a:hover {
  background: #101C81;
  opacity: 0.5;
  transition: all 0.5s ease 0s;
}

/*=============================================================
#about
=============================================================*/
#about {
  background-image: url(../image/about_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

#about .about_inner {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
}

#about p {
  padding: 120px 0;
  line-height: 2em;
}

/*=============================================================
#onayami
=============================================================*/
#onayami h2 {
  background: #00adf1;
  width: 100%;
  color: #fff;
  font-size: 20px;
  padding: 15px 0;
  margin-bottom: 30px;
}

#onayami ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 30px;
}

#onayami ul li {
  background: linear-gradient(#f9ffff, #e4eef8);
  border: 1px solid #00adf1;
  color: #00adf1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 167px;
}

#onayami .onayami_img {
  margin: 30px auto 0;
  width: 90%;
}


/*=============================================================
#qa
=============================================================*/
#qa {
  text-align: left;
}

#qa h3 {
  font-size: 30px;
  text-align: center;
}

.cp_qa03 .cp_actab {
  position: relative;
  width: 100%;
  margin: 0 0 1em 0;
}

.cp_qa03 .cp_actab input {
  display: none;
}

/* 質問 */
.cp_qa03 .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 2.5em;
  cursor: pointer;
  text-indent: 1em;
  background: #00adf1;
  color: #fff;
}

.cp_qa03 .cp_actab label::before {
  content: 'Q';
  font-size: 1.5em;
  margin-left: -2em;
  padding-right: 0.5em;
}

.cp_qa03 .cp_actab label:hover {
  color: #e9e9e9;
  transition: all 0.3s;
}

/* --質問の＋アイコン */
.cp_qa03 .cp_actab label::after {
  position: absolute;
  top: 0;
  right: 0;
  content: '+';
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2em;
  display: inline-block;
  width: 2em;
  height: 2em;
  transition: transform 0.3s;
}

/* 答え */
.cp_qa03 .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  transition: max-height 0.2s;
}

.cp_qa03 .cp_actab .cp_actab-content::before {
  position: absolute;
  content: 'A';
  color: #00adf1;
  font-size: 1.5em;
  margin: 0.4em 0 0 -1em;
  padding: 0;
}

.cp_qa03 .cp_actab .cp_actab-content p {
  margin: 1em 1em 1em 0;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa03 .cp_actab input:checked~.cp_actab-content {
  max-height: 40em;
  border: 10px solid #00adf1;
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa03 .cp_actab input:checked~label {
  color: #e9e9e9;
}

/* 質問をクリックした時の+の動き */
.cp_qa03 .cp_actab input[type=checkbox]:checked+label::after {
  transform: rotateZ(45deg);
  transform-origin: 50% 50%;
}

#qa .qa_entry {
  margin: 60px 0;
}