@charset "UTF-8";

/*
Theme Name : テーマの名前
Theme URL : テーマのURL
Description : テーマの説明
Author : テーマ制作者の名前
Version : テーマのバージョン
*/

/*reset*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}
/*ーーーーーーーーーー common ーーーーーーーーーー*/
@font-face {
  font-family: "Gotham";
  src: url("fonts/en-600.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("fonts/en-500.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("fonts/ja-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("fonts/ja-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("fonts/ja-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  box-sizing: border-box;
}

body {
  color: #333;
  background-color: #ffffff;
  font-family: "Gotham", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}

img {
  width: 100%;
  vertical-align: bottom;
}
a {
  text-decoration: none;
  transition: 0.3s;
}

.asirai {
  display: inline-block;
  vertical-align: middle;
  transition: 0.2s;
  position: relative;
  width: 20px;
  height: 3px;
  background-color: #202d42;
  margin: 0 20px;
  transform: rotate(-45deg);
}
a:hover .asirai {
  transform: rotate(0deg);
  transition: 0.2s;
}
a:hover .asirai::after {
  position: absolute;
  content: "";
  right: -1px;
  bottom: 3px;
  width: 10px;
  height: 3px;
  background-color: #202d42;
  transform: rotate(45deg);
  font-weight: 600;
}
a:hover .asirai::before {
  display: none;
}
.asirai::before {
  position: absolute;
  content: "";
  right: -1px;
  bottom: -3px;
  width: 10px;
  height: 3px;
  background-color: #202d42;
  transform: rotate(-45deg);
  font-weight: 600;
}
.asirai::after {
  position: absolute;
  content: "";
  right: -1px;
  bottom: 3px;
  width: 10px;
  height: 3px;
  background-color: #202d42;
  transform: rotate(45deg);
  font-weight: 600;
}

.asirai-siro {
  display: inline-block;
  vertical-align: middle;
  transition: 0.2s;
  position: relative;
  width: 20px;
  height: 3px;
  background-color: #fff;
  margin: 0 20px;
  transform: rotate(-45deg);
}
.asirai-siro::before {
  position: absolute;
  content: "";
  right: -1px;
  bottom: -3px;
  width: 10px;
  height: 3px;
  background-color: #fff;
  transform: rotate(-45deg);
  font-weight: 600;
}
.asirai-siro::after {
  position: absolute;
  content: "";
  right: -1px;
  bottom: 3px;
  width: 10px;
  height: 3px;
  background-color: #fff;
  transform: rotate(45deg);
  font-weight: 600;
}
a:hover .asirai-siro {
  transform: rotate(0deg);
  transition: 0.2s;
}
a:hover .asirai-siro::after {
  position: absolute;
  content: "";
  right: -1px;
  bottom: 3px;
  width: 10px;
  height: 3px;
  background-color: #fff;
  transform: rotate(45deg);
  font-weight: 600;
}
a:hover .asirai-siro::before {
  display: none;
}
.main {
  width: 40px;
}

.none {
  display: none;
}

@media (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

.page_item {
  list-style: none;
}

/*------------------ header -------------------*/

header {
  height: 80px;
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}

.header__logo {
  height: 50px;
}
.header__logo img {
  height: 100%;
  width: auto;
}

#g-nav {
  position: absolute;
  margin-top: -1px;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 550px;
  background: #202d42;
  transition: all 0.5s;
}

#g-nav.panelactive {
  opacity: 1;
  transition: all 0.5s;
  z-index: 999;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 250px;
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.openbtn {
  position: relative;
  background-color: #202d42;
  padding: 15px 0;
  color: #fff;
  font-weight: 600;
  font-size: 2.4rem;
}
.openbtn::after {
  content: "menu";
  transition: 0.5s;
}

.Item.isActive::after {
  content: "clese";
  transition: 0.5s;
}

.menu {
  list-style: none;
}
.menu a {
  color: #333;
}

@media (max-width: 767px) {
  .header__logo {
    height: 35px;
  }
}
/*------------------ top -------------------*/

.top {
  margin-bottom: 60px;
}
.breadcrumbs {
  text-align: left;
  width: 97%;
  margin: 0 auto 60px;
}
.breadcrumbs a {
  color: #333;
}
/*.current-item {
	background:linear-gradient(transparent 70%, #B6D1CD 0%);
}*/
.top-image {
  position: relative;
  height: 40vw;
  max-height: 600px;
  width: 100%;
  background-image: url("image/top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 30%;
}
h1 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  text-align: left;
  color: #fff;
}
h1 span {
  background-color: #202d42;
  padding: 5px;
  font-size: 3.4rem;
  line-height: 6rem;
}
h1 .top__title {
  font-size: 2.4rem;
}
@media (max-width: 800px) {
  h1 {
    left: 5%;
  }
  h1 span {
    font-size: 2rem;
    line-height: 4rem;
  }
  h1 .top__title {
    font-size: 1.6rem;
  }
}

.top a {
  color: #fff;
  font-weight: 600;
}
.top-title h2 {
  font-size: 2.8rem;
  line-height: 3.4rem;
}
.top-title h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  background-color: #202d42;
  margin: 40px auto 60px;
}

.top-title__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.top-title__button a {
  position: relative;
  width: 30%;
  aspect-ratio: 9 / 6;
}
.top-title__button a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.top-title__button__1 {
  background-image: url("image/photo1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-title__button__2 {
  background-image: url("image/photo2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top-title__button__3 {
  background-image: url("image/photo3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top-title__button__title {
  position: absolute;
  text-align: left;
  z-index: 1;
  color: #fff;
  bottom: 10%;
  left: 10%;
}

@media (max-width: 800px) {
  .top-title h2::after {
    margin: 20px auto 40px;
  }
  .top-title__button h3 {
    font-size: 1.4rem;
    bottom: 0;
  }
  .breadcrumbs {
    width: 95%;
  }
  .top-title__button {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .top-title__button a {
    width: 100%;
    height: 45vh;
  }
}

.top-menu__pc {
  background-color: #202d42;
}

.top-menu__pc ul {
  display: flex;
  font-size: 1.4rem;
  margin: 0 auto;
  list-style: none;
  justify-content: center;
}
.top-menu__pc ul li {
  display: flex;
}
.top-menu__pc ul li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
}
.top ul li span {
  display: block;
}

.btntextchange {
  position: relative;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  outline: none;
  transition: all 0.2s;
}
.btntextchange:hover {
  color: #fff;
}

.btntextchange span:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  display: block;
  white-space: nowrap;
  opacity: 0;
}

.btntextchange:hover span:nth-child(1) {
  opacity: 0;
}

.btntextchange:hover span:nth-child(2) {
  opacity: 1;
}
@media (max-width: 767px) {
  .top-image {
    margin-bottom: 0;
    height: 100vw;
    background-position: center;
    max-height: 800px;
  }
  .top ul li span {
    text-decoration: none;
    border-top: solid 1px #fff;
    font-size: 1.4rem;
    padding-top: 5px;
    margin-top: 5px;
  }
  #g-nav li a {
    font-size: 2rem;
  }
}

/*------------------ main-page -------------------*/

.main-page {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .main-page {
    display: block;
    flex-direction: column-reverse;
  }
}

/*------------------ aside -------------------*/

aside {
  width: 30%;
}
@media (max-width: 767px) {
  aside {
    width: 100%;
  }
}

.side-eria {
  width: 90%;
  margin: 0 auto;
}

.aside-eria {
  width: 100%;
  list-style: none;
}

.aside-eria li h4 {
  color: #fff;
  font-size: 1.4rem;
  text-shadow: 0 0 5px #000;
}
@media (max-width: 767px) {
  .aside-eria li h4 {
    font-size: 1.5rem;
  }
}
.aside-profile li {
  position: relative;
}

.aside-profile {
  width: 100%;
  margin-bottom: 80px;
  list-style: none;
  border: solid 1px #333;
}
.aside-profile h3 {
  height: 50px;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #333;
}
.aside-profile h3::before {
  content: "";
  width: 30px;
  height: 100%;
  background-color: #202d42;
  margin-right: 20px;
}
.aside-profile ul {
  list-style: none;
}

.aside-profile ul li a {
  border-bottom: solid 1px #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.aside-profile ul li:last-child {
  border-bottom: none;
}

.block {
  color: #333;
  position: relative;
}
.block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.aside-profile__name {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
}

@media (max-width: 1000px) {
  .aside-profile__name {
    font-size: 1.8rem;
    line-height: 2.4rem;
    min-width: 80px;
  }
  .aside-profile__name span {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 767px) {
  .aside-profile__name {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
.aside-profile__arrow {
  margin-top: 50px;
  margin-right: 10px;
}

.aside-help {
  width: 100%;
  margin-bottom: 80px;
  list-style: none;
}
.aside-help h3 {
  height: 50px;
  display: flex;
  align-items: center;
  border: solid 1px #333;
}
.aside-help h3::before {
  content: "";
  width: 30px;
  height: 100%;
  background-color: #202d42;
  margin-right: 20px;
}
.aside-help ul {
  list-style: none;
}
.aside-help ul li a {
  padding: 10px 0;
  border: solid 1px #333;
  display: block;
  align-items: center;
  justify-content: center;
  color: #333;
  text-align: left;
  padding-left: 10%;
}

.aside-help ul li div {
  margin-right: 10px;
}

/*------------------ main -------------------*/

main {
  width: 70%;
}
@media (max-width: 767px) {
  main {
    width: 100%;
  }
}

.main-eria {
  width: 90%;
  max-width: 700px;
  margin: 0 auto 80px;
}
.lesson-link .lesson__arrow {
  display: inline-block;
  transition: 0.5s;
}
.lesson-link:hover .lesson__arrow {
  transform: rotateX(360deg);
}
.lesson {
  position: relative;
  margin-bottom: 80px;
}
.lesson h2 {
  position: absolute;
  top: 40%;
  left: 5%;
  font-size: 3.2rem;
  color: #fff;
  text-shadow: 3px 3px 5px #333;
  z-index: 1;
}
.lesson__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 4vw;
  min-width: 30px;
}

.infomation {
  margin-bottom: 80px;
  border: solid 1px #333;
}
.infomation h3 {
  font-size: 1.8rem;
  height: 50px;
  text-align: left;
  display: flex;
  align-items: center;
}
.infomation h3::before {
  content: "";
  width: 30px;
  height: 100%;
  margin-right: 20px;
  background-color: #202d42;
}
.infomation ol {
  list-style: none;
}
.infomation ol li {
  border-top: solid 1px #333;
  padding: 5px 0;
}
.infomation ol li a {
  display: flex;
  align-items: center;
  text-align: left;
  color: #333;
}
.infomation ol li a .infomation__arrow {
  display: inline-block;
  transition: 0.5s;
}
.infomation ol li a:hover .infomation__arrow {
  transform: rotateX(360deg);
}
.infomation__inportant {
  background-color: #e22525;
  color: #fff;
  width: 60px;
  padding: 5px 0;
  text-align: center;
  border-radius: 15px;
  margin: 0 0 0 10px;
}
.infomation__arrow {
  margin-left: auto;
  margin-right: 10px;
}
.infomation__new {
  background-color: #dede00;
  color: #fff;
  width: 60px;
  padding: 5px 0;
  text-align: center;
  border-radius: 15px;
  margin: 0 0 0 10px;
}
.infomation__discription {
  margin-left: 10px;
}

.google-calender {
  width: 100%;
  margin-bottom: 80px;
}
.google-calender iframe {
  width: 100%;
  height: 100vw;
  max-height: 500px;
}

@media (max-width: 767px) {
  .lesson h2 {
    font-size: 2.2rem;
    line-height: 3.4rem;
  }
}

/*------------------ footer -------------------*/

footer {
  width: 90%;
  margin: 0 auto 40px;
}
footer h3 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: left;
}
.footer__disclaimer {
  width: 100%;
  max-width: 800px;
  height: 150px;
  margin: 0 auto 20px;
  overflow: scroll;
  border: solid 1px #333;
  box-shadow: 2px 2px 5px 0px #333;
}
.footer__disclaimer__discription {
  font-size: 1.4rem;
  line-height: 2.1rem;
  text-align: left;
  padding: 10px 20px;
}

.footer__nav ul {
  align-items: center;
  height: 150px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}
.footer__nav ul li a {
  color: #333;
  text-decoration: underline;
}
.copyright {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .footer__nav ul {
    display: block;
    height: auto;
  }
  .footer__nav ul li {
    margin: 40px 0;
  }
}

/*------------------ schedule -------------------*/

.schedule {
  text-align: left;
}
.schedule h3 {
  font-size: 2.4rem;
  height: 50px;
  text-align: left;
  display: flex;
  align-items: center;
  border: solid 1px #333;
  margin-bottom: 20px;
}
.schedule h3::before {
  content: "";
  width: 30px;
  height: 100%;
  margin-right: 20px;
  background-color: #202d42;
}
.schedule p {
  margin-bottom: 40px;
}
.schedule p a {
  color: #333;
  text-decoration: underline;
}

.schedule table {
  width: 100%;
  border: solid 1px #333;
  margin-bottom: 80px;
}
.schedule table th,
.schedule table td {
  padding: 5px 10px;
  border-right: 1px solid #333;
}
.schedule table td:not(:nth-child(2)) {
  width: 110px;
}
.schedule table tbody {
  border-top: solid 1px #333;
}
.schedule table tbody tr {
  border-bottom: 1px solid #333;
}
.schedule table tbody tr:last-child {
  border-bottom: none;
}
.schedule td a {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #333;
}
.schedule td a img {
  display: inline-block;
  transition: 0.5s;
}
.schedule td a:hover img {
  transform: rotateX(360deg);
}
.lecture__page {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.lecture__page p a {
  margin: 0 10px;
  color: #333;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .schedule table tbody {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
  .schedule table td:not(:nth-child(2)) {
    width: auto;
  }
}

/*------------------ Lecture -------------------*/

.lecture {
  margin-bottom: 40px;
  text-align: left;
}
.lecture time {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
  display: block;
}
.lecture h3 {
  font-size: 1.8rem;
  height: 50px;
  text-align: left;
  display: flex;
  align-items: center;
  border: solid 1px #333;
  margin-bottom: 20px;
}
.lecture h3::before {
  content: "";
  width: 30px;
  height: 100%;
  margin-right: 20px;
  background-color: #202d42;
}

.lecture iframe {
  width: 100%;
  height: 30vw;
  min-height: 200px;
}

.document-button {
  position: relative;
  width: 90%;
  margin: 0 auto 40px;
  background-color: #b4412a;
  padding: 15px 0;
  font-size: 2.4rem;
  border-radius: 10px;
}

.docment-button__p {
  text-align: center;
  margin-bottom: 0 !important;
}

.document {
  color: #fff;
}
.document__arrow {
  position: absolute;
  right: 10px;
  top: 25%;
}
.document img {
  display: inline-block;
  transition: 0.5s;
}
.document:hover img {
  transform: rotateX(360deg);
}

.lecture__page {
  margin-bottom: 80px;
}

.please {
  width: 100%;
  height: 400px;
  background-image: url("image/please.jpg");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  margin-bottom: 80px;
}
.please__discription {
  position: absolute;
  text-align: left;
  width: 70%;
  right: -33%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.please__discription h4 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .document-button {
    font-size: 1.8rem;
  }
  .please__discription {
    position: absolute;
    text-align: left;
    width: 90%;
    right: -40%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .please__discription p {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }
}

/*------------------ question -------------------*/

.question__qa {
  list-style: none;
  text-align: left;
}
.question__qa li {
  margin-bottom: 40px;
}
.question__qa h4 {
  margin-bottom: 10px;
}
.question__qa a {
  color: #333;
  text-decoration: underline;
}
.wpcf7-submit {
  width: 100px;
  height: 30px;
}

/*------------------ contact -------------------*/

.contact__text-aline-left {
  text-align: left;
  margin-bottom: 80px;
}
form p {
  max-width: 400px;
  margin: 0 auto 40px;
  text-align: left;
}
form p:last-child {
  text-align: center;
}
.wpcf7-form-control-wrap input {
  margin-top: 10px;
  width: 100%;
}
textarea {
  width: 100%;
  margin-top: 10px;
}

/*------------------ profile -------------------*/

.profile__name {
  text-align: left;
  margin-bottom: 40px;
}
.profile__name h2 {
  font-size: 2.4rem;
  height: 50px;
  text-align: left;
  display: flex;
  align-items: center;
}
.profile__name h2::before {
  content: "";
  width: 30px;
  height: 100%;
  margin-right: 20px;
  background-color: #202d42;
}
.profile__line {
  height: 1px;
  width: 100%;
  background-color: #333;
}
.profile__name h3 {
  font-weight: 500;
  margin-left: 50px;
  margin-top: 10px;
}
/*.profile__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}*/
.profile__flex__description {
  /*width: 50%;*/
  text-align: left;
}
.profile__flex__image {
  width: 100%;
  margin: 0 auto 80px;
}

@media (max-width: 767px) {
  .profile__flex {
    display: block;
  }
  .profile__flex__image {
    width: 100%;
    margin: 0 auto 40px;
  }
  .profile__flex__description {
    width: 100%;
    margin: 0 auto 80px;
  }
}
#calendarTitle {
  display: none !important;
}

.arcive-title {
  aspect-ratio: 16/9;
  margin-bottom: 20px;
}
.arcive-title h3 {
  color: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  line-height: 3rem;
  width: 100%;
  transform: translate(-50%, -50%);
}
.arcive-title h3 span {
  display: block;
}
@media (max-width: 767px) {
  .arcive-title {
    height: 50vw;
  }
}
.infomation__discription time {
  margin-right: 10px;
}
.archive-list {
  width: 90%;
  margin: 0 auto;
}
.archive-list li {
  list-style: none;
  border: solid 1px #333;
  border-bottom: 0;
}
.archive-list li:last-child {
  border-bottom: solid 1px #333;
}
.archive-list a {
  color: #333;
  display: block;
  padding: 10px;
  font-size: 1.8rem;
}

.aside-profile .menber__list li a {
  display: block;
  position: relative;
}
/* .aside-profile__img {
} */
.aside-profile__img img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.aside-profile__name {
  position: absolute;
  display: inline-block;
  left: 10%;
  font-size: 2rem;
  text-align: left;
  padding: 5px;
  color: #fff;
  background: #00000060;
  bottom: 50px;
}
.sidebar__button {
  padding: 5px 0;
  background: #202d42;
  color: #fff;
}

.sidebar__menu__title {
  position: absolute;
  left: 10%;
  z-index: 1;
  text-align: left;
  color: #fff;
}
header a {
  text-decoration: underline;
}
.infomation a:hover {
  opacity: 0.5;
}
.archive-list a:hover,
td a:hover,
footer a:hover {
  opacity: 0.5;
}

.question__list {
  list-style: none;
}
.toggle {
  display: none;
}
.option {
  position: relative;
  text-align: left;
  margin-bottom: 20px;
}
.title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.title {
  cursor: pointer;
  padding: 10px 20px 10px 10px;
  text-align: left;
  display: block;
  background: #e9f2f1;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 42%;
  width: 2px;
  height: 0.75em;
  background-color: #999;
  transition: all 0.3s;
}
.title::after {
  transform: rotate(90deg);
}
.content {
  max-height: 0;
  overflow: hidden;
}
.content p {
  padding: 10px 10px 10px 60px;
}
.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}
.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}
.question__icon {
  display: inline-block;
  padding: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: #202d42;
  color: #fff;
}
.single_text {
  text-align: left;
  width: 90%;
  margin: 0 auto 40px;
}
.single_text a {
  color: #333;
  text-decoration: underline;
}
.infomation__discription {
  display: flex;
  margin: 0 10px;
}
.infomation__discription p {
  display: inline-block;
}
.news__content p {
  text-align: left;
}

.c-document-button-wrap {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}
.c-document-button {
  height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 90%;
  font-size: 24px;
  border-radius: 10px;
  color: #fff;
  margin: auto;
}
.c-document-button--facebook {
  background: #1877f2;
}
.c-document-button--line {
  background: #00b900;
}
.c-document-button span {
  display: block;
  text-align: center;
}
.c-docment-button__notion {
  font-size: 12px;
  translate: 0 -4px;
}

@media (max-width: 767px) {
  .c-document-button {
    height: 58px;
    font-size: 18px;
  }
  .c-docment-button__notion {
    font-size: 11px;
    translate: 0 -2px;
  }
}
