@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  vertical-align: bottom;
  /* ディセンダにより生じる画像の隙間を修正。 */
  display: block;
  /* ブロックに切り替えます。通常の画像に必要な操作です。 */
  width: 100%;
  height: auto;
  /* max-widthが有効になっても、画像のアスペクト比を維持。 */
}

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

input[type=text] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #707070;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
  height: 38px;
}
input[type=text]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #707070;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 240px;
  padding: 0.4em 0.8em;
  width: 100%;
}
textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 0 0 0 3em;
  position: relative;
}
input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  border-radius: 0;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
input[type=checkbox] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #232323;
  border-left: 3px solid #232323;
  content: "";
  display: block;
  height: 0.6em;
  left: 4px;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(arrow.png) no-repeat center right 8px/16px 16px;
  border: 1px solid #707070;
  border-radius: 0;
  color: #232323;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding: 0;
  width: 100%;
  height: 38px;
  line-height: 1em;
}
select::-ms-expand {
  display: none;
}
select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

input[type=submit] {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
}
input[type=submit]::-moz-foucus-inner {
  border: none;
  padding: 0;
}

/* 共通 */
body {
  color: #232323;
  line-height: 1.875;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  body {
    margin-top: 60px;
  }
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}
@media screen and (max-width: 767px) {
  .clear::after {
    content: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease 0s;
}

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

.header {
  width: 100%;
  height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  width: calc(100% - 80px);
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-inner {
    width: calc(100% - 24px);
  }
}

@media screen and (max-width: 767px) {
  .header-logo {
    margin-left: 16px;
  }
}

.header-nav {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-nav_link {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  padding: 25px 20px;
  letter-spacing: 0.05em;
}
.header-nav_link span {
  position: relative;
  line-height: 2;
  display: inline-block;
}
.header-nav_link span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  transition: all ease 0.3s;
}
.header-nav_link:hover span::after {
  width: 100%;
}

.header-spnav {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-spnav {
    display: block;
    z-index: 999;
  }
}

.header-drawer_btn {
  width: 52px;
  height: 100%;
  padding: 16px;
}
.header-drawer_btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: #232323;
  transition: all 0.6s;
}
.header-drawer_btn span:not(:first-child) {
  margin-top: 6px;
}
.header-drawer_btn.active span {
  margin: 0;
  background: #fff;
}
.header-drawer_btn.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 2px;
}
.header-drawer_btn.active span:nth-child(2) {
  opacity: 0;
}
.header-drawer_btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 3px;
}

@media screen and (max-width: 767px) {
  .header-drawer {
    width: 100%;
    height: 100%;
    background: #232323;
    color: #fff;
    position: fixed;
    top: 0;
    right: -105%;
    padding: 48px 12%;
    z-index: -1;
    transition: right 0.6s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-drawer.show {
    right: 0;
  }
}

.header-drawer_list {
  text-align: center;
}

.header-drawer_item {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
  font-size: 24px;
}
.header-drawer_item:not(:first-child) {
  margin-top: 8px;
}

.header-drawer_link {
  display: block;
}

.footer {
  background: #000;
  padding: 16px;
}

.footer-copyright {
  text-align: center;
  color: #fff;
  font-size: 12px;
}

.ft-contact {
  position: relative;
  height: 269px;
  overflow: hidden;
}
.ft-contact::before {
  content: "";
  background: url(../img/ft-contact_bg.jpg) no-repeat center center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: all ease 0.6s;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.ft-contact:hover::before {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.ft-contact:hover .ft-contact-arrow {
  transform: translateX(20px);
}
.ft-contact::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0.6;
  z-index: -1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .ft-contact {
    height: 195px;
  }
}

.ft-contact-btn {
  display: block;
  height: 100%;
}

.ft-contact-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .ft-contact-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .ft-contact-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.ft-contact-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ft-contact-title {
    font-size: 40px;
  }
}

.ft-contact-text {
  margin-top: 18px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ft-contact-text {
    margin-top: 8px;
    font-size: 10px;
  }
}

.ft-contact-arrow {
  width: 60px;
  transition: all ease 0.6s;
}

.t-info {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .t-info {
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 14px;
  }
}

.t-info-inner {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .t-info-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .t-info-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .t-info-inner {
    flex-direction: column;
  }
}

.t-info-sub {
  flex: 0 0 190px;
}
@media screen and (max-width: 767px) {
  .t-info-sub {
    display: contents;
  }
}

.t-info-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .t-info-title {
    font-size: 40px;
  }
}

.t-info-wrap {
  flex: 0 1 800px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .t-info-wrap {
    margin-top: 40px;
    flex: 0 1 auto;
  }
}

.t-info-link {
  display: block;
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  padding: 26px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 55px;
}
.t-info-link:first-child {
  border-top: 1px solid #e7e7e7;
}
.t-info-link:hover {
  background-color: #e7e7e7;
}
@media screen and (max-width: 767px) {
  .t-info-link {
    flex-wrap: wrap;
    gap: 8px;
    padding: 26px 0;
  }
}

.t-info-link_sub {
  display: flex;
  align-items: center;
}

.t-info-link_date {
  width: 109px;
}
@media screen and (max-width: 767px) {
  .t-info-link_date {
    width: 93px;
  }
}

.t-info-link_category {
  background: #232323;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1;
  width: 65px;
  text-align: center;
}

.t-info-link_title {
  flex: 0 1 100%;
}

.t-info-more {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .t-info-more {
    margin-top: 40px;
    order: 2;
  }
}

.t-info-more_link {
  position: relative;
  padding: 7px 0;
  font-size: 14px;
}
.t-info-more_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  transition: all ease 0.3s;
}
.t-info-more_link:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .t-info-more_link {
    padding: 1rem;
    text-align: center;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #232323;
    display: block;
  }
}

.t-lesson {
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(90deg, #fcf7f6, #f2e7e0);
  position: relative;
}
@media screen and (max-width: 767px) {
  .t-lesson {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

.t-lesson-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .t-lesson-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .t-lesson-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .t-lesson-inner {
    flex-direction: column;
  }
}

.t-lesson-photo {
  width: 64%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 36%;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .t-lesson-photo {
    position: relative;
    width: 100%;
    left: 0;
    margin-top: 40px;
  }
}
.t-lesson-photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .t-lesson-photo img {
    height: auto;
  }
}

.t-lesson-contents {
  max-width: 55%;
}
@media screen and (max-width: 767px) {
  .t-lesson-contents {
    max-width: 100%;
  }
}

.t-lesson-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .t-lesson-title {
    font-size: 40px;
  }
}

.t-lesson-text {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .t-lesson-text {
    margin-top: 30px;
  }
}

.t-lesson-more {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .t-lesson-more {
    margin-top: 30px;
  }
}

.t-lesson-more_link {
  position: relative;
  padding: 7px 0;
  font-size: 14px;
}
.t-lesson-more_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  transition: all ease 0.3s;
}
.t-lesson-more_link:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .t-lesson-more_link {
    padding: 1rem;
    text-align: center;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #232323;
    display: block;
  }
}

.mv {
  height: calc(100vh - 76px);
  background: url(../img/mv_bg_pc.jpg) no-repeat center center/cover;
  margin-top: 76px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .mv {
    height: calc(100vh - 60px);
    margin-top: 60px;
  }
}

.mv-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .mv-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .mv-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.mv-text {
  color: #fff;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.mv-name {
  line-height: 1;
  width: 568px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .mv-name {
    width: 300px;
  }
}

.mv-title {
  font-size: 1.25vw;
  line-height: 1;
  margin-top: 40px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .mv-title {
    font-size: 4vw;
    margin-top: 20px;
  }
}

.mv-scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mv-scroll-text {
  /*テキストの形状*/
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .mv-scroll-text {
    font-size: 10px;
  }
}

.mv-scroll-line {
  width: 1px;
  height: 92px;
  background: #232323;
  position: relative;
  overflow: hidden;
}
.mv-scroll-line::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  /*線の形状*/
  width: 1px;
  height: 92px;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 3s ease-in-out infinite;
          animation: pathmove 3s ease-in-out infinite;
}

/*線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    top: -100%;
    opacity: 1;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
  75% {
    top: 100%;
    opacity: 0;
  }
  100% {
    top: -100%;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    top: -100%;
    opacity: 1;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
  75% {
    top: 100%;
    opacity: 0;
  }
  100% {
    top: -100%;
    opacity: 0;
  }
}
.t-profile {
  display: flex;
  flex-direction: row-reverse;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  height: 564px;
}
@media screen and (max-width: 767px) {
  .t-profile {
    padding: 60px 0;
    flex-direction: column;
    height: auto;
  }
}

.t-profile-container {
  display: contents;
}
@media screen and (max-width: 767px) {
  .t-profile-container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1199px) {
  .t-profile-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .t-profile-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.t-profile-photo {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.t-profile-photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .t-profile-photo {
    margin-top: 40px;
    width: 100%;
    height: 300px;
    overflow: visible;
  }
}

.t-profile-contents {
  width: 50%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .t-profile-contents {
    display: contents;
  }
}

.t-profile-inner {
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .t-profile-inner {
    display: contents;
  }
}

.t-profile-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .t-profile-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .t-profile-title {
    order: -1;
  }
}

.t-profile-text {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .t-profile-text {
    margin-top: 30px;
  }
}

.t-profile-more {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .t-profile-more {
    margin-top: 30px;
  }
}

.t-profile-more_link {
  position: relative;
  padding: 7px 0;
  font-size: 14px;
}
.t-profile-more_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  transition: all ease 0.3s;
}
.t-profile-more_link:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .t-profile-more_link {
    padding: 1rem;
    text-align: center;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #232323;
    display: block;
  }
}

.t-movie {
  padding-top: 120px;
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .t-movie {
    padding-top: 60px;
    padding-bottom: 65px;
  }
}

.t-movie-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .t-movie-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .t-movie-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.t-movie-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .t-movie-title {
    font-size: 40px;
  }
}

.t-movie-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .t-movie-contents {
    flex-wrap: wrap;
    margin-top: 40px;
  }
}

.t-movie-item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .t-movie-item {
    width: 100%;
  }
  .t-movie-item:not(:first-child) {
    margin-top: 40px;
  }
}

.t-movie-youtube {
  position: relative;
}
.t-movie-youtube iframe {
  aspect-ratio: 387/323;
  width: 100%;
}

.t-movie-item_title {
  margin-top: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .t-movie-item_title {
    margin-top: 12px;
  }
}

.contact {
  padding-top: 140px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

.contact-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.contact-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .contact-title {
    font-size: 40px;
  }
}

.contact-text {
  margin-top: 72px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e7e7e7;
}
@media screen and (max-width: 767px) {
  .contact-text {
    margin-top: 30px;
    font-size: 12px;
  }
}

.contact-form {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 40px;
  }
}
.contact-form .form-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contact-form .form-item {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.contact-form .form-item:not(:first-child) {
  margin-top: 30px;
}
.contact-form .form-item__label {
  flex: 0 0 196px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-form .form-item__label {
    justify-content: flex-start;
    flex: 0 0 100%;
    gap: 1rem;
  }
}
.contact-form .form-item__input {
  flex: 0 1 380px;
  max-width: 100%;
}
.contact-form .form-item__input.form-textarea, .contact-form .form-item__input.form-radio {
  flex: 0 1 100%;
}
.contact-form .form-item__input.form-radio {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact-form .form-item__input {
    flex: 0 1 100%;
  }
}
.contact-form .required {
  background: #a8002b;
  color: #fff;
  padding: 4px 5px;
  font-size: 10px;
  line-height: 1;
}
.contact-form .form-btn-wrap {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact-form .form-btn-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.contact-form .form-btn-wrap .form-btn {
  text-align: center;
  width: 300px;
  padding: 32px;
}

.contact-back {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.contact-back__link {
  position: relative;
  padding: 7px 0;
  font-size: 14px;
  margin: 0 auto;
  font-size: 1rem;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.contact-back__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  transition: all ease 0.3s;
}
.contact-back__link:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-back__link {
    padding: 1rem;
    text-align: center;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #232323;
    display: block;
  }
}

input[type=text],
input[type=email] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #eee;
  background-image: none;
  border: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
  height: 38px;
}
input[type=text]:focus,
input[type=email]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #eee;
  background-image: none;
  border: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 240px;
  padding: 0.4em 0.8em;
  width: 100%;
}
textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

input[type=radio] {
  display: none;
}
input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1em;
  position: relative;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  input[type=radio] + span {
    margin-right: 16px;
  }
}
input[type=radio] + span::before {
  -webkit-transform: translateY(-50%);
  background: #e7e7e7;
  border: none;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
input[type=radio] + span::after {
  -webkit-transform: translateY(-50%);
  background: #232323;
  border-radius: 50%;
  content: "";
  height: 5px;
  width: 5px;
  top: 50%;
  left: 2.5px;
  opacity: 0;
  padding: 0;
  position: absolute;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}
input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=submit] {
  -webkit-appearance: none;
  background-color: #232323;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: inherit;
  transition: all ease 0.3s;
}
input[type=submit].back {
  background-color: #fff;
  border: 1px solid #232323;
  color: #232323;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
  opacity: 0.7;
}
input[type=submit]::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.mw_wp_form {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

.info {
  padding-top: 140px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .info {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

.info-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .info-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .info-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.info-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .info-title {
    font-size: 40px;
  }
}

.info-wrap {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .info-wrap {
    margin-top: 40px;
  }
}

.info-link {
  display: block;
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
}
.info-link:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .info-link {
    padding-bottom: 12px;
  }
}

.info-link_sub {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.info-link_date {
  font-family: "Playfair Display", serif;
  font-size: 14px;
}

.info-link_category {
  background: #232323;
  color: #fff;
  padding: 1px 1%;
  font-size: 10px;
  margin-left: 12px;
}

.info-link_title {
  margin-top: 5px;
}

.info-pagination {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .info-pagination {
    margin-top: 40px;
  }
}

.info-pagination__list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.page-numbers {
  padding: 8px 12px;
  font-family: "Playfair Display", serif;
  line-height: 1;
  display: flex;
}
.page-numbers_inner {
  display: flex;
  align-items: center;
  position: relative;
}
.page-numbers_inner::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -8px;
  left: 0;
  background-color: #232323;
  transition: all ease 0.3s;
}
.page-numbers.current .page-numbers_inner::after, .page-numbers:hover .page-numbers_inner::after {
  width: 100%;
}

.lesson {
  padding-top: 140px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .lesson {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

.lesson-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .lesson-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .lesson-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.lesson-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .lesson-title {
    font-size: 40px;
  }
}

.lesson-outline {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .lesson-outline {
    margin-top: 40px;
  }
}

.lesson-photo {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

.lesson-text {
  margin-top: 80px;
}
.lesson-text p:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .lesson-text {
    margin-top: 40px;
  }
}

.lesson-info {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lesson-info__box {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .lesson-info__box {
    width: 100%;
  }
  .lesson-info__box:not(:first-child) {
    margin-top: 60px;
  }
}

.lesson-info__title {
  font-size: 30px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
}

.lesson-info__detail {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .lesson-info__detail {
    font-size: 16px;
  }
}
.lesson-info__detail dl {
  display: flex;
}
.lesson-info__detail dl:not(:first-child) {
  margin-top: 0.5rem;
}
.lesson-info__detail dl dt {
  flex: 0 0 50px;
}
.lesson-info__detail dl dd {
  flex: 0 1 100%;
}
.lesson-info__detail dl dd span {
  font-size: 12px;
}

.lesson-info__more {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .lesson-info__more {
    justify-content: center;
  }
}

.lesson-info__link {
  position: relative;
  padding: 7px 0;
  font-size: 14px;
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.lesson-info__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  transition: all ease 0.3s;
}
.lesson-info__link:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lesson-info__link {
    padding: 1rem;
    text-align: center;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #232323;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .lesson-info__link {
    justify-content: center;
  }
}

.lesson-annotation {
  margin-top: 40px;
  font-size: 14px;
}
.lesson-annotation p:not(:first-child) {
  margin-top: 1rem;
}
.lesson-annotation ul li {
  padding-left: 1.5em;
  position: relative;
}
.lesson-annotation ul li:not(:first-child) {
  margin-top: 7px;
}
.lesson-annotation ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.profile {
  padding-top: 140px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .profile {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

.profile-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .profile-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.profile-title {
  font-size: 60px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .profile-title {
    font-size: 40px;
  }
}

.profile-container {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .profile-container {
    flex-direction: column;
    margin-top: 40px;
  }
}

.profile-photo {
  width: calc(50% - 75px);
}
@media screen and (max-width: 767px) {
  .profile-photo {
    width: 100%;
  }
}

.profile-text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .profile-text {
    width: 100%;
    margin-top: 20px;
  }
}

.profile-name {
  font-size: 30px;
  line-height: 1;
  padding: 20px 0;
  border-bottom: 1px solid #e7e7e7;
}
.profile-name span {
  font-size: 14px;
  font-family: "Playfair Display", serif;
}

.profile-contents {
  margin-top: 32px;
}
.profile-contents p:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .profile-contents {
    margin-top: 24px;
  }
}

.single {
  padding-top: 140px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .single {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

.single-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .single-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .single-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.single-sub {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  padding-bottom: 36px;
  border-bottom: 1px solid #e7e7e7;
}

.single-date {
  color: #e7e7e7;
  line-height: 1;
}

.single-category {
  background: #232323;
  color: #fff;
  padding: 1px 1%;
  font-size: 10px;
  margin-left: 12px;
}

.single-title {
  font-size: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .single-title {
    font-size: 24px;
  }
}

.single-contents {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .single-contents {
    margin-top: 24px;
  }
}
.single-contents img {
  width: auto;
  max-width: 100%;
}
.single-contents p {
  margin-bottom: 16px;
}
.single-contents span {
  font-weight: inherit;
}

.single-back {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .single-back {
    margin-top: 40px;
  }
}

.single-back__link {
  position: relative;
  padding: 7px 0;
  font-size: 14px;
  margin: 0 auto;
  font-size: 1rem;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.single-back__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #232323;
  transition: all ease 0.3s;
}
.single-back__link:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .single-back__link {
    padding: 1rem;
    text-align: center;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #232323;
    display: block;
  }
}

.notfound {
  margin-bottom: 60px;
}

.notfound-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .notfound-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .notfound-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.notfound-title {
  font-size: 1.5em;
  font-weight: bold;
}

.notfound-link__wrap {
  margin-top: 40px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */