/*
Theme Name: maimai
Description: まいまい
*/

/* ===============================================
# 共通設定
=============================================== */
:root {
  /* フォントの色 */
  --main_font_color: #1e1e1e;
  --white_font_color: #fff;


  /* 背景の色 */


  /* border */


  /* テキスト */
  --txt_ja: "Hannari", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --txt_en_1: "Caveat", cursive;
  --txt_en_2: "Cormorant Garamond", "Garamond", "Times New Roman", serif;

}


body {
  line-height: 1.7;
  font-family: var(--txt_ja);
  font-size: 16px;
  letter-spacing: 0.05em;
  background: #FFFBF0;
  color: #1e1e1e;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  width: 95%;
}

.contents {
  margin-bottom: 180px;
}

.pc {
  display: block;
}

.sp {
  display: none !important;
}

a {
  transition: 0.2s;
}

a:hover {
  cursor: pointer;
  opacity: 0.9;
}

/* sectionの見出し */
.sec_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 10px;
  margin-bottom: 30px;
}

.sec_head h2 {
  position: relative;
  margin-bottom: 20px;
  font-weight: bold;
  /*太字*/
  font-size: 24px;
  /*フォントサイズ*/
  font-weight: 400;
  display: inline-block;
  width: 10%;
}

.sec_head h2::before {
  position: absolute;
  top: -30px;
  color: #E4F1F6;
  /*フォントカラー*/
  font-size: 50px;
  /*背景フォントサイズ*/
  z-index: -1;
  font-family: var(--txt_en_1);
  color: rgba(237, 172, 91, 0.4);
}

.sec_head div {
  width: 90%;
  height: 1px;
  background: var(--main_font_color);
}


.profile .sec_head h2::before {
  content: "Profile";
}

.works .sec_head h2::before {
  content: "Works";
}

.illust .sec_head h2::before {
  content: "Illust";
}

.news .sec_head h2::before {
  content: "News";
}

footer .sec_head h2::before {
  content: "Contact";
}

/* margin-bottomの設定 */
.mb30 {
  margin-bottom: 30px;
}

/* text-align: center;の設定 */
.tac {
  text-align: center;
}

/* ===============================================
# ヘッダー
=============================================== */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 70px;
  z-index: 999;
}

header .header_inner {
  padding: 20px 3%;
  /* 見えないから一旦こっち */
  /* padding: 40px 3%;  */
  box-sizing: border-box;

}

header .header_wrapper {
  display: flex;
  justify-content: space-between;
  height: 50px;
  align-items: center;
}

header .header_logo h1 {
  font-size: 36px;
  font-weight: 400;
  font-family: var(--txt_en_2);
}

header .header_nav ul {
  display: flex;
  column-gap: 10px;
}

header .header_nav ul li a {
  padding: 10px;
  box-sizing: border-box;
  font-family: var(--txt_en_2);
  font-size: 20px;
  transition: 0.3s;
}

header .header_nav ul li a:hover {
  color: #F24E35;
}


/* ===============================================
# トップ
=============================================== */
/* mv */
.mv {
  background: url(./img/mv_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0 120px;
  position: relative;
}

.mv .mv_wrapper {
  display: flex;
  column-gap: 60px;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.mv .mv_wrapper .mv_item {
  padding: 10px;
  box-sizing: border-box;
  width: 450px;
}

.mv .mv_wrapper h2 {
  font-family: var(--txt_en_2);
  font-size: 120px;
  line-height: 0.8;
}

.mv .mv_wrapper h3 {
  font-family: var(--txt_en_1);
  font-size: 90px;
  color: #909090;
  font-weight: 400;
  margin-bottom: 30px;
}

.mv .mv_wrapper p {
  color: #18216E;
}

/* .mv .mv_wrapper .mv_img {
  width: calc(100% - 500px);
} */

/* スクロールダウン */
.scrolldown {
  margin: 0;
  padding: 0;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.scrolldown a:hover {
  opacity: 0.7;
}

.scrolldown_link {
  position: relative;
  width: 200px;
  height: 200px;
  color: #FFAE9B;
  font-family: serif;
  text-decoration: none;
  background: #fff;
  border-radius: 50%;
}

.scroll_txt {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.scroll_txt span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 100px;
}

.scroll_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}

.scroll_arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #FFAE9B;
  transform: translateX(-50%);
}

.scroll_arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #FFAE9B;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

/* プロフィール */
.profile .profile_container {
  display: flex;
  column-gap: 40px;
}

.profile .profile_container .profile_img {
  width: 40%;
}

.profile .profile_container .profile_img img {
  border-radius: 5px;
}

.profile .profile_container .profile_txt {
  width: 60%;
}

.profile .profile_container .profile_ttl {
  font-size: 22px;
  color: #F24E35;
}

.profile .profile_container p {
  margin-bottom: 20px;
}


/* 活動記録 */
.works .works_head {
  margin-bottom: 60px;
}

.works .works_head p {
  text-align: center;
  font-family: var(--txt_en_2);
  color: #F24E35;
}

.works .works_head h3 {
  text-align: center;
  font-size: 20px;
  position: relative;
}

.works .works_head h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  /*線の上下位置*/
  display: inline-block;
  width: 60px;
  /*線の長さ*/
  height: 2px;
  /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  /*位置調整*/
  background-color: #F24E35;
  /*線の色*/
  border-radius: 2px;
  /*線の丸み*/
}

.works .anker_link {
  margin-bottom: 80px;
}

.works .anker_link ul {
  display: flex;
  justify-content: center;
  gap: 30px 20px;
  flex-wrap: wrap;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 5px;
}

.works .anker_link ul li {
  padding: 10px;
  border-bottom: 1px solid var(--main_font_color);
}

.works .anker_link ul li i {
  padding-left: 5px;
}

.works .works_wrapper .works_area:not(:last-child) {
  padding: 60px 0;
  border-bottom: 1px dotted var(--main_font_color);
}

.works .works_wrapper .works_area:last-child {
  padding-top: 60px;
}

.works .works_wrapper #works1 {
  border-top: 1px dotted var(--main_font_color);
}

.works .works_wrapper .works_area .works_txt {
  margin-bottom: 40px;
}


/* テーブル */
.works .works_area table {
  background: #FFFEFA;
  border: 1px solid #A9A9A9;
  width: 100%;
}

.works .works_area table tr:not(:last-child) {
  border-bottom: 1px solid #A9A9A9;
}

.works .works_area table tr th,
.works .works_area table tr td {
  padding: 20px;
}

.works .works_area table tr th {
  width: 20%;
  border-right: 1px solid #A9A9A9;
}

.works .works_area table tr td {
  width: 80%;
}

/* スライダー */
.works .works_container {
  margin-inline: auto;
  /* max-width: 500px; */
  position: relative;
  padding: 50px 0;
}

.works .works_gallery {
  /* padding: 0 15px; */
  padding: 0;
  margin: 0;
}

.works #works1 .works_gallery {
  columns: 4;
}

.works #works2 .works_gallery {
  columns: 3;
}

.works #works3 .works_gallery {
  columns: 5;
}

.works .works_gallery li {
  margin-bottom: 10px;
  /*各画像下に余白をつける*/
}

.works .works_gallery li img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}


.works .works_item h4 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin-bottom: 20px;
}

.works .works_item h4::before,
.works .works_item h4::after {
  content: '';
  position: absolute;
  top: 38%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px #FFAE9B;
  border-bottom: solid 1px #FFAE9B;
}

.works .works_item h4::before {
  left: 0;
}

.works .works_item h4::after {
  right: 0;
}

.works .works_item .works_box:not(:last-child) {
  margin-bottom: 60px;
}

.works .works_box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.works .works_box a {
  text-decoration: underline !important;
}

.copy_name {
  font-size: 14px;
}

/* 動画 */
.works #works2 .works_video_item {
  display: flex;
  flex-direction: column;
}

.works #works2 .works_video {
  max-width: 700px;
  height: auto;
}

/* .works #works2 ul {

} */


/* .works .swiper {
  max-width: 500px;
} */

/* .works .swiper-slide .swiper-slide-img {
  height: 100%;
} */

/* .works .swiper-slide img {
  height: auto;
  width: 100%;
}

.works .main_swiper {
  margin-bottom: 10px;
}

.works .main_swiper img {
  height: 750px;
  object-fit: cover;
}

.works .thumbnail_swiper img {
  height: 175px;
  object-fit: cover;
} */

/* 矢印 */
/* .swiper-button-next,
.swiper-button-prev {
  color: #F24E35;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
} */

/* ページネーション */
/* .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
} */


/* ===============================================
# イラスト
=============================================== */
.illust {
  background: url(./img/illust_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.illust .inner {
  padding: 80px 0;
}

.illust ul {
  columns: 4;
}

.illust ul li {
  margin-bottom: 10px;
}

/* .illust ul {
  display: flex;
  gap: 30px 20px;
  flex-wrap: wrap;
} */

/* モーダル */
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/* ===============================================
# news
=============================================== */
.news ul {
  width: 90%;
  margin: 0 auto;
}

.news ul li {
  padding: 0 10px;
}

.news ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #A9A9A9;
}

.news ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news ul li a:hover {
  opacity: 0.8;
}

.news ul li a .news_arrow {
  transition: transform 0.3s ease;
}

.news ul li a:hover .news_arrow {
  transform: translateX(10px);
}

.news .news_box {
  display: flex;
  align-items: center;
  column-gap: 15px;
  width: 100%;
}

.news .news_box .date {
  width: 20%;
}

.news .news_box p {
  width: 80%;
}


.news_arrow {
  display: flex;
}

.news_arrow::after {
  content: '';
  width: 60px;
  height: 10px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(60deg);
}

.news_btn {
  margin-top: 60px;
  text-align: center;
}

.news_btn a {
  padding: 15px 60px;
  background: #1e1e1e;
  border-radius: 100px;
  color: #fff;
  position: relative;
}

.news_btn a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  font: var(--fa-font-solid);
  content: "\f105";
  transform: translate(0, -50%);
  color: #fff;
  z-index: 2;
}

/* 下層のnews */
.lower_news {
  padding-top: 120px;
}

.post {
  padding-top: 120px;
}

.post h3 {
  font-size: 20px;
  margin-bottom: 30px;
}



/* ===============================================
# footer
=============================================== */
footer {
  background: url(./img/footer_bg.png);
  background-repeat: no-repeat;

}


footer .footer_inner {
  padding: 80px 5% 20px;
  box-sizing: border-box;
}

footer .sec_head h2 {
  width: 100%;
  text-align: center;
  color: #fff;
}

footer .sec_head h2::before {
  z-index: 1;
}

footer p {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

footer .footer_btn {
  text-align: center;
}

footer .footer_btn a {
  padding: 15px 60px;
  background: #F24E35;
  border-radius: 100px;
  color: #fff;
  position: relative;
}

footer .footer_btn a:after {
  position: absolute;
  right: 30px;
  top: 50%;
  font: var(--fa-font-solid);
  content: "\f105";
  transform: translate(0, -50%);
  color: #fff;
  z-index: 2;
}

footer small {
  color: #A9A9A9;
  font-size: 14px;
  text-align: center;
  display: block;
  margin-top: 60px;
}



/* ===============================================
# 1210px以下
=============================================== */
@media screen and (max-width: 1210px) {
  .mv .mv_wrapper p {
    font-size: 15px;
  }

}

/* 1210px終わり */






/* ===============================================
# 1080px以下
=============================================== */
@media screen and (max-width: 1080px) {
  .mv .mv_wrapper {
    width: 90%;
    column-gap: 30px;
  }

  .mv .mv_wrapper .mv_img {
    width: 40%;
  }

}

/* 1080px終わり */





/* ===============================================
# スマホ
=============================================== */
@media screen and (max-width: 767px) {

  /*******************
  # 共通
  *******************/
  .inner {
    width: 95%;
    max-width: 728px;
  }

  .contents {
    margin-bottom: 90px;
  }

  .sp {
    display: block !important;
  }

  .pc {
    display: none;
  }


  .sec_head h2 {
    font-size: 20px;
    width: 30%;
  }

  .sec_head div {
    width: 65%;
  }

  /*******************
  # ヘッダー
  *******************/
  header .header_logo h1 {
    font-size: 28px;
  }

  /* ハンバーガー */
  .drawer_nav {
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fff0d3;
    /* opacity: 0.95; */
    display: block;
    top: 0;
    right: -120%;
    transition: right 0.5s;
    text-align: center;
    z-index: 1;
  }

  .drawer_nav.is-open {
    right: 0;
    z-index: 998;
  }

  .drawer_nav ul {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }

  .drawer_nav ul li {
    text-align: center;
  }

  .drawer_nav ul li a {
    padding: 10px;
  }

  .drawer_toggle {
    position: relative;
    z-index: 9999;
    cursor: pointer;
    display: inline-block;
    width: 55px;
    height: 55px;
    top: 0;
    right: 0;
    border-radius: 100px;
    background: #F24E35;
    border-radius: 50%;
  }


  .drawer_toggle span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15px;
    height: 2px;
    width: 25px;
    background: #fff;
    border-radius: 100px;
  }

  .drawer_toggle span:nth-of-type(1) {
    top: 17px;
  }

  .drawer_toggle span:nth-of-type(2) {
    top: 27px;
  }

  .drawer_toggle span:nth-of-type(3) {
    top: 37px;
  }

  .drawer_toggle.is-open span:nth-of-type(1) {
    top: 22px;
    left: 11px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
  }

  .drawer_toggle.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .drawer_toggle.is-open span:nth-of-type(3) {
    top: 34px;
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
  }

  #global_nav li:not(:last-child) {
    margin-bottom: 2rem;
  }

  #global_nav li a {
    padding: 10px;
  }

  .drawer_nav_item {
    /* display: flex;
    margin: 0 auto;
    justify-content: center;
    column-gap: 80px; */
  }

  .drawer_nav_item:first-child {
    width: 100%;
    /* margin-top: 50px; */
    display: block;
  }

  .drawer_nav_item:nth-child(2) ul {
    display: flex;
    flex-wrap: wrap;
  }

  .drawer_nav_item:nth-child(2) ul li {
    width: calc(100% / 2 - 1px);
  }

  .drawer_nav_item:nth-child(2) ul li:nth-child(odd) {}

  .drawer_nav_item:last-child {
    width: 100%;
    align-items: center;
    position: relative;
  }

  .drawer_nav_item:last-child a {
    display: block;
    text-align: center;
    font-size: 22px;
    padding: 15px 40px 15px 20px;
  }


  .drawer_nav_item:last-child::after {
    font: var(--fa-font-solid);
    content: "\f054";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: large;
  }

  .drawer_nav_item ul li {
    border-bottom: 1px dotted var(--border_drawer_nav);
  }

  .drawer_nav_item:first-child ul li:first-child {}

  .header_nav-item {
    margin-bottom: 8px;
    padding: 5px;
  }

  /* 背景（ページ部分）のスクロールを無効化 */
  .no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .hover_orange:hover {
    background: #f6f6f6;
  }

  /*******************
  # mv
  *******************/
  .mv {
    padding: 90px 0 80px;
  }

  .mv.contents {
    margin-bottom: 180px;
  }

  .mv .mv_wrapper {
    flex-direction: column-reverse;
    width: 95%;
  }

  .mv .mv_img img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    opacity: 0.85;
  }

  .mv .mv_wrapper .mv_item {
    margin-top: -100px;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .mv .mv_wrapper h2,
  .mv .mv_wrapper h3 {
    width: 60%;
    margin: 0 auto;
  }

  .mv .mv_wrapper h2 {
    font-size: 100px;
  }

  .mv .mv_wrapper h3 {
    font-size: 70px;
    margin-bottom: 30px;
  }

  .mv .mv_wrapper p {
    font-size: 14px;
  }

  .mv .mv_wrapper .mv_img {
    width: 100%;
    text-align: center;
  }



  .scrolldown {
    height: 150px;
    bottom: -70px;
  }

  .scrolldown_link {
    width: 150px;
    height: 150px;
  }

  .scroll_txt span {
    font-size: 14px;
    transform-origin: 0 75px;
  }


  /*******************
  # 自己紹介
  *******************/
  .profile .profile_container {
    flex-direction: column;
    row-gap: 30px;
  }

  .profile .profile_container .profile_img {
    width: 100%;
  }

  .profile .profile_container .profile_txt {
    width: 100%;
  }

  /*******************
  # 活動記録
  *******************/
  .works .anker_link ul li {
    font-size: 14px;
  }

  /* .works .main_swiper img {
    height: 450px;
  }

  .works .thumbnail_swiper img {
    height: 100px;
  } */

  .works .works_container ul {
    columns: 2;
    padding: 0;
  }

  .works .works_item {
    text-align: center;
  }

  .works .works_area table tr th,
  .works .works_area table tr td {
    padding: 10px;
    font-size: 14px;
  }

  .works .works_area table tr th {
    width: 35%;
  }

  .works .works_area table tr td {
    width: 65%;
  }

  /* ギャラリー */
  .works .works_container ul {
    padding: 0;
  }

  .works #works1 .works_gallery {
    columns: 2;
  }

  .works #works2 .works_gallery {
    columns: 2;
  }

  .works #works3 .works_gallery {
    columns: 2;
  }

  .works #works2 .works_video {
    max-width: 100%;
  }

  /* イラスト */
  .illust ul {
    columns: 2;
  }

  /* お知らせ */
  .news .news_box {
    flex-direction: column;
    align-items: flex-start;
  }

  .post {
    padding-top: 70px;
  }


}/* 767px以下終わり */




/* ===============================================
# 574px以下
=============================================== */
@media screen and (max-width: 574px) {

  .mv .mv_wrapper h2,
  .mv .mv_wrapper h3 {
    width: 100%;
    margin: 0 auto;
  }

  .mv .mv_wrapper h3 {
    margin-bottom: 30px;
  }

}

/* 574px終わり */
