@charset "utf-8";

.header {
  position: fixed;
  top: 48px;
  left: calc(50% + 1120px / 2 + 20px);
  z-index: 999;
}
.header-menu li {
  margin-bottom: 16px;
}
.header-menu a {
  display: inline-flex;
  padding: 0 4px;
  font-size: 18px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.3);
  align-items: center;
}
.header-menu a span {
  display: block;
  margin: 4px 0 0 3px;
  font-size: 0;
}
.header-menu li.link_twitter {
  margin: 0;
}
.header-menu li.link_twitter a {
	background: none;
}
.header-menu li.link_twitter a span {
  display: block;
  width: 28px;
  margin: 0;
}

@media screen and (max-width: 1380px) {
  .header {
    left: auto;
    right: 20px;
  }
  .header-menu a {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    top: 0;
    right: 0;
  }
  .hamburger {
    position: relative;
    width: 80px;
    height: 74px;
    background: url(../images/hum_bg.png) 50% 50% / 100% 100% no-repeat;
    filter: drop-shadow(0 3px 6px rgba(167,167,167,0.48));
    z-index: 1;
  }
  .hamburger span {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 3px;
    background: #625654;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    z-index: 9;
  }
  .hamburger span:first-child {
    top: 20px;
    width: 40px;
  }
  .hamburger span:last-child {
    top: 40px;
  }
  .hamburger.active {
    filter: none;
  }
  .hamburger.active span:first-child {
    top: 30px;
    left: 20px;
    width: 52px;
    transform: rotate(35deg);
  }
  .hamburger.active span:last-child {
    top: 30px;
    left: 20px;
    width: 52px;
    transform: rotate(-35deg);
  }
  .hamburger.active span:nth-child(2) {
    height: 0;
  }
  .hamburger-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    padding: 0;
    text-align: center;
    background: url(../images/hum_bg_open.png) 0 0 / 100% 100% no-repeat;
    filter: drop-shadow(0 3px 6px rgba(167,167,167,0.48));
    transition: 0.3s ease-in-out;
    overflow-y: auto;
  }
  .hamburger-menu.open {
    width: 100%;
    height: 100vh;
    padding: 80px 40px 140px;
  }
  .header-menu-inner {
    height: calc(100vh - 80px - 140px);
    overflow-y: auto;
  }
  .header-menu-inner ul {
    margin-bottom: 40px;
    white-space: nowrap;
  }
}

footer {
  background: #EFEFEF;
}
.footer {
  display: flex;
  max-width: 1200px;
  padding: 74px 40px;
  margin: 0 auto;
  gap: 0 110px;
}
.footer-logo {
  width: 222px;
  font-size: 0;
}
.footer-menu ul {
  display: flex;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  gap: 0 38px;
}
.footer-menu li a span {
  display: inline-block;
  margin: 0 0 2px 4px;
  font-size: 0;
  vertical-align: middle;
}
.copyright {
  padding: 20px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
  background: #625654;
}

@media screen and (max-width: 1380px) {
  .footer {
    gap: 0 40px;
  }
  .footer-menu ul {
    margin-bottom: 10px;
    font-size: 16px;
    gap: 0 28px;
  }
  .footer-menu ul li a {
    display: flex;
    align-items: center;
  }
  .footer-menu li a span {
    min-width: 14px;
    margin: 2px 0 0 2px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 20px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .footer-menu {
    margin-bottom: 54px;
  }
  .footer-menu ul {
    display: block;
    font-size: 20px;
    text-align: center;
  }
  .footer-menu ul li {
    display: flex;
    margin-bottom: 16px;
    justify-content: center;
  }
  .footer-menu ul li.link_twitter {
    margin-bottom: 0;
    font-size: 0;
  }
  .footer-logo {
    width: 233px;
    margin: 0 auto;
  }
  .copyright {
    padding: 9px 20px;
    font-size: 15px;
  }
}

main {
  display: block;
  padding-bottom: 160px;
}

.f-kv {
  position: relative;
}
.kv_img {
  font-size: 0;
}
.kv_img img {
	width: 100%;
}
.kv_name {
  position: absolute;
  width: 100%;
  max-width: 1120px;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
}
.kv_name_jp {
  display: inline-block;
  padding: 4px 20px 5px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.11);
}
.kv_name_fi svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.kv_name_en {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 9px;
}

.content_inner {
	width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.white_btn,
input[type="submit"].white_btn {
  display: flex;
  width: 100%;
  max-width: 333px;
  height: 76px;
  font-size: 20px;
  font-weight: 700;
  color: #625654;
  background: #FFF;
  border: 1px solid #625654;
  align-items: center;
  justify-content: center;
}

.f_profile {
  padding: 70px 40px 80px;
  background: #F7F5F5;
}
.f_profile .content_inner {
  display: flex;
  gap: 0 76px;
}
.f_profile_img {
  width: 318px;
  min-width: 318px;
  filter: drop-shadow(10px 10px 0 #EFEEED);
}
.f_profile_info {
  width: 100%;
}
.f_profile_name {
  margin-bottom: 32px;
  font-size: 25px;
  font-weight: 700;
  color: #625654;
}
.f_profile_name span {
  display: block;
  font-size: 20px;
  letter-spacing: 4px;
}
.f_profile_txt {
  margin-bottom: 72px;
  font-weight: 700;
  line-height: 1.8;
}
.f_profile_btn {
  display: flex;
  justify-content: flex-end;
}

.f_news {
  padding: 70px 40px 0;
}
.f_news .content_inner {
  display: flex;
  gap: 0 90px;
}
.f_title {
  display: block;
  font-size: 25px;
  font-weight: 700;
  color: #625654;
  letter-spacing: 8px;
  white-space: nowrap;
}
.f_title svg {
  display: block;
}
.f_rt_content {
  width: 100%;
}
.news_list {
  margin-bottom: 54px;
}
.news_item {
  display: flex;
  padding: 14px 0;
  font-weight: 600;
  border-bottom: 2px solid #F7F5F5;
  gap: 0 60px;
}
.news_item time {
  display: block;
  color: #FFC400;
  letter-spacing: 1px;
  white-space: nowrap;
}
.news_item a {
  display: inline-block;
  text-decoration: underline;
}
.f_news_btn {
  display: flex;
  justify-content: flex-end;
}

.f_regular {
  padding: 0 40px;
}
.f_regular .f_title {
  margin-bottom: 40px;
}
.regular_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
}
.regular_list::before,
.regular_list::after {
	content: "";
	width: 32%;
	order: 1;
}
.regular_item {
  width: 32%;
}
.regular_img {
  position: relative;
  margin-bottom: 18px;
  font-size: 0;
  border: 1px solid #DFDEDE;
  overflow: hidden;
}
.regular_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 64%;
}
.regular_img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.regular_tag span {
  display: inline-block;
  min-width: 124px;
  padding: 4px 20px;
  margin-bottom: 14px;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  background: #ddd;
}
.regular_tag span.tag_terebi {
  background: #5ECFF0;
}
.regular_tag span.tag_radio {
  background: #F09C5E;
}
.regular_tag span.tag_rensai {
  background: #6BC764;
}
.regular_info {
  font-weight: 800;
}
.regular_info p:not(:last-child) {
	margin-bottom: 8px;
}

@media screen and (max-width: 1380px) {
  .kv_img img {
    height: 60vw;
    object-fit: cover;
  }
  .kv_name {
    left: 20px;
    right: 20px;
    width: auto;
    transform: none;
  }
  .kv_name_jp {
    padding: 4px 10px 5px;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .kv_name_fi {
    max-width: 80%;
  }
  .kv_name_en {
    font-size: 17px;
  }

  .white_btn,
  input[type="submit"].white_btn {
    max-width: 280px;
    height: 64px;
    font-size: 16px;
  }

  .f_profile .content_inner {
    gap: 0 40px;
  }
  .f_profile_img {
    width: 280px;
    min-width: 280px;
  }

  .f_news .content_inner {
    gap: 0 40px;
  }
  .news_item {
    gap: 0 48px;
  }
}

@media screen and (max-width: 767px) {
  main {
    padding-bottom: 36px;
  }

  .kv_img img {
    height: auto;
  }
  .kv_name_jp {
    display: block;
    padding: 4px 13px;
    font-size: 13px;
    text-align: center;
    letter-spacing: 4px;
    color: #625654;
  }
  .kv_name_fi {
    width: calc(100% + 38px);
    max-width: none;
    margin: 0 -19px 3px;
    font-size: 0;
  }
  .kv_name_en {
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 7px;
  }

  .white_btn,
  input[type="submit"].white_btn {
    max-width: 235px;
    height: 57px;
    font-size: 15px;
    letter-spacing: 2px;
  }

  .f_profile {
    padding: 32px 20px 44px;
  }
  .f_profile .content_inner {
    display: block;
  }
  .f_profile_img {
    width: 55%;
    min-width: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(1px 5px 0 #EFEEED);
  }
  .f_profile_name {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 6px;
  }
  .f_profile_name span {
    letter-spacing: 6px;
  }
  .f_profile_txt {
    margin-bottom: 22px;
  }
  .f_profile_btn {
    justify-content: center;
  }

  .f_news {
    padding: 50px 20px;
  }
  .f_news .content_inner {
    display: block;
  }
  .f_title {
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
  }
  .f_title svg {
    width: auto;
    height: 14px;
    margin: 0 auto 7px;
  }
  .news_list {
    margin-bottom: 40px;
  }
  .news_item {
    display: block;
    padding: 13px 0;
    line-height: 1.5;
    border-width: 1px;
  }
  .news_item time {
    margin-bottom: 7px;
    line-height: 1.2;
  }
  .f_news_btn {
    justify-content: center;
  }

  .f_regular {
    padding: 50px 20px 0;
  }
  .f_regular .f_title {
    margin-bottom: 35px;
  }
  .regular_list {
    gap: 35px 0;
  }
  .regular_item {
    width: 100%;
  }
  .regular_img::before {
    padding-top: 69.5%;
  }
  .regular_img {
    margin-bottom: 7px;
  }
  .regular_tag span {
    min-width: 68px;
    padding: 8px 11px;
    margin-bottom: 7px;
    line-height: 1.2;
  }
}

.page_kv {
  padding: 300px 40px 40px;
  background: #F7F5F5;
}
.page_title {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 100px;
  letter-spacing: 4px;
}
.page_title span {
  display: none;
  font-size: 0;
}
.page_title svg {
  display: block;
  width: auto;
  height: 74px;
}

.page-content {
  padding: 40px;
}

main.page_profile {
  padding-bottom: 20px;
}
.page_profile .page-content {
  padding-top: 90px;
}
.profile_card {
  position: relative;
  display: flex;
  padding: 98px 50px 70px 0;
  margin-left: 40px;
  background: #F2F8FF;
  border-radius: 32px;
}
.profile_card_img {
  border-radius: 32px;
  transform: translateX(-40px) translateY(-150px);
  overflow: hidden;
}
.profile_card_name {
  margin-bottom: 7px;
  font-size: 25px;
  color: #625654;
  letter-spacing: 8px;
}
.profile_card_name span {
  display: block;
  font-size: 20px;
  letter-spacing: 7px;
}
.profile_card_table,
.profile_card_table table {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}
.profile_card_table table th {
  padding: 20px 0;
  color: #62A6E0;
  vertical-align: text-top;
  white-space: nowrap;
}
.profile_card_table table td {
  padding: 20px 0 20px 64px;
}

.profile_foreword {
  padding: 68px 40px;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 1px;
}
.profile_tags {
  position: relative;
  display: flex;
  margin-bottom: -31px;
  font-size: 20px;
  font-weight: 700;
  color: #625654;
  text-align: center;
  line-height: 1.2;
  gap: 0 26px;
  justify-content: center;
  z-index: 1;
}
.profile_tag {
  display: flex;
  width: 200px;
  height: 62px;
  background: #FFF;
  border: 1px solid #625654;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}
.profile_tag.active,
.profile_tag:hover {
  color: #FFF;
  background: #625654;
}
.profile_tag_item {
  display: none;
  padding-top: 94px;
  background: #F5F5F5;
  border-radius: 20px;
}
.profile_tag_item.active {
  display: block;
}
.personal_history {
  padding: 0 40px 80px;
  font-size: 20px;
}
.personal_history table {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}
.personal_history table th {
  padding: 13px 0;
  color: #62A6E0;
  vertical-align: text-top;
  white-space: nowrap;
}
.personal_history table td {
  padding: 13px 0 13px 44px;
}
.profile_title {
  padding: 18px 20px;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 12px;
  color: #625654;
  background: #EAEAEA;
}
.profile_title:empty {
  display: none;
}
.profile_txt {
  padding: 52px 40px 90px;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 800;
}

.profile_books {
  display: flex;
  padding: 20px 40px 120px;
  gap: 40px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.profile_book {
  width: 32%;
  max-width: 330px;
}
.book_img {
  display: block;
  margin-bottom: 19px;
  font-size: 0;
  border: 1px solid #DFDEDE;
}
.book_name {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  letter-spacing: 1px;
}
.book_publisher {
  font-size: 15px;
  font-weight: 600;
}

.profile_content {
  margin-bottom: 56px;
}
.content_gallery_img {
  margin: 0 -40px;
}
.content_gallery_img .slick-slide {
  padding: 0 13px;
}
.content_gallery_item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.content_gallery_item::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 90%;
}
.content_gallery_item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1380px) {
  .page_kv {
    padding-top: 200px;
  }

  .profile_card {
    padding-bottom: 40px;
  }
  .profile_card_table,
  .profile_card_table table {
    font-size: 16px;
  }
  .profile_card_table table th {
    padding: 12px 0;
  }
  .profile_card_table table td {
    padding: 12px 0 12px 40px;
  }

  .profile_foreword {
    font-size: 16px;
  }

  .profile_tags {
    padding: 0 20px;
    margin-bottom: -24px;
    font-size: 16px;
    gap: 0 16px;
  }
  .profile_tag {
    width: 100%;
    height: 48px;
  }
  .profile_tag_item {
    padding-top: 64px;
  }
  .personal_history table {
    font-size: 16px;
  }
  .profile_txt {
    padding: 40px 40px 64px;
    font-size: 16px;
  }
  .profile_title {
    padding: 12px 20px;
    font-size: 19px;
  }
}

@media screen and (max-width: 767px) {
  .page_kv {
    padding: 100px 20px 20px;
  }
  .page_title {
    max-width: 100%;
    font-size: 45px;
  }
  .page_title svg {
    height: 32px;
  }

  .page-content {
    padding: 0 20px;
  }
  .page_profile .page-content {
    padding-top: 66vw;
  }

  .profile_card {
    display: block;
    padding: 0 16px 52px;
    margin-left: 0;
  }
  .profile_card_img {
    width: 100%;
    margin-bottom: -58vw;
    transform: translateY(-58vw);
  }
  .profile_card_name {
    padding: 18px 0;
    margin-bottom: 0;
    font-size: 15px;
    letter-spacing: 5px;
    text-align: center;
  }
  .profile_card_name span {
    font-size: 15px;
  }
  .profile_card_table,
  .profile_card_table table {
    font-size: 15px;
  }
  .profile_card_table table th {
    padding: 10px 0;
  }
  .profile_card_table table td {
    padding: 10px 0 10px 30px;
  }

  .profile_foreword {
    padding: 30px 15px;
    font-size: 15px;
  }

  .profile_content {
    margin: 0 -20px 34px;
  }
  .profile_tags {
    width: 100%;
    font-size: 15px;
    gap: 0 7px;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .profile_tags::-webkit-scrollbar{
    display: none;
  }
  .profile_tag {
    width: 135px;
    min-width: 135px;
    height: 45px;
  }
  .personal_history table th,
  .personal_history table td {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
  }
  .personal_history table td {
    padding: 8px 0 26px;
  }
  .personal_history {
    padding: 0 20px 30px;
  }
  .profile_title {
    padding: 23px 20px;
    font-size: 20px;
  }
  .profile_txt {
    padding: 35px 20px 80px;
    font-size: 15px;
  }

  .profile_books {
    padding: 37px 20px 120px;
    gap: 70px 0;
  }
  .profile_book {
    width: 100%;
  }

  .content_gallery_img {
    margin: 0 -20px;
  }
  .content_gallery_img .slick-slide {
    padding: 0 10px;
  }
}


.page_news .news_item {
  padding: 10px 0;
  border: none;
}
.news_item .news_item_img {
  display: block;
  margin-top: 10px;
  font-size: 0;
}
.news_item img {
  width: 100%;
  max-width: 480px;
  height: auto;
}
.page_news a.news_item p {
  text-decoration: underline;
}
.pager .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 0 11px;
}
.pager .wp-pagenavi > * {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 0;
  margin: 0;
  font-size: 20px;
  color: #625654;
  border-color: #625654;
  align-items: center;
  justify-content: center;
}
.pager .wp-pagenavi > a:hover,
.pager .wp-pagenavi > span.current {
  color: #FFF;
  background: #625654;
}
.pager .wp-pagenavi > span.extend {
  width: auto;
  border: none;
}

@media screen and (max-width: 1380px) {
  .pager .wp-pagenavi > * {
    width: 48px;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
  }
}

@media screen and (max-width: 767px) {
  .page_news .page-content {
    padding: 20px;
  }
  .pager .wp-pagenavi {
    gap: 0 8px;
  }
  .pager .wp-pagenavi > * {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}

.single_title {
  display: block;
  font-size: 22px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #625654;
  border-bottom: 2px solid #625654;
}
.single_top {
  margin-bottom: 20px;
}
.single_top time {
  display: block;
  font-size: 17px;
  font-weight: bold;
  text-align: right;
  letter-spacing: 1px;
  color: #FFC400;
}
.single_img {
  margin-bottom: 24px;
}
.single_inner {
  margin-bottom: 120px;
}
.single_inner a {
  display: inline-block;
  color: #625654;
  font-weight: 600;
  text-decoration: underline;
}
.single_btn {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .single_title {
    font-size: 16px;
  }
  .single_top time {
    font-size: 12px;
  }
  .single_inner {
    margin-bottom: 64px;
  }
}

.link_list li {
  position: relative;
  display: block;
  padding-left: 22px;
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: bold;
}
.link_list li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #62A6E0;
  border-radius: 50%;
}

@media screen and (max-width: 1380px) {
  .link_list li {
    font-size: 18px;
  }
  .link_list li::before {
    top: 11px;
  }
}

@media screen and (max-width: 767px) {
  .page_link .page-content {
    padding: 80px 20px 40px;
  }
  .link_list li {
    padding-left: 16px;
    font-size: 15px;
  }
  .link_list li::before {
    top: 9px;
    width: 6px;
    height: 6px;
  }
}

.form_table {
  width: 100%;
  margin-bottom: 40px;
}
.form_table dl {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 700;
}
.form_table dl dt {
  display: flex;
  margin-bottom: 12px;
  color: #62A6E0;
  align-items: center;
  gap: 0 18px;
}
.form_table dl dt span {
  display: flex;
  width: 53px;
  height: 22px;
  font-size: 12px;
  color: #655958;
  background: #EDEDED;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}
.form_table dl dt span.st {
  color: #FFF;
  background: #D94E4E;
}
.input_item {
  width: 100%;
  max-width: 546px;
}
.input_item input {
  width: 100%;
  height: 54px;
  padding: 0 10px;
  font-weight: bold;
  background: #F4F4F4;
  border: 1px solid #CECECE;
}
.form_flex_item {
  display: flex;
  gap: 0 18px;
}
.input_item .mwform-tel-field {
  display: flex;
  width: 100%;
  gap: 0 6px;
  align-items: center;
}
.input_item .mwform-tel-field input[type="text"] {
  width: 100%;
}
.textarea_item textarea {
  width: 100%;
  padding: 19px 12px;
  height: 380px;
  font-weight: 800;
  background: #F4F4F4;
  border: 1px solid #CECECE;
}
.file_item {
  position: relative;
}
.file_item input {
  width: 100%;
  height: 54px;
  border: 1px solid #CECECE;
}
.mw_wp_form .file_item input[type="file"] {
  display: block;
  padding: 7px;
}
.mwform-file-delete {
  position: absolute;
  display: flex;
  top: 16px;
  right: 10px;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}
.form_btns {
  display: flex;
  justify-content: center;
  gap: 0 24px;
}
.mw_wp_form .form_table dl .error {
  display: block;
  font-size: 12px;
  text-align: right;
  color: #D94E4E;
}

.mw_wp_form_confirm dd {
  padding: 20px 10px 10px;
}
.mw_wp_form_confirm .form_table {
  margin-bottom: 200px;
}

.thanks {
  padding: 180px 0 280px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.thanks_btns {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1380px) {
  .form_table dl {
    font-size: 16px;
  }
  .mw_wp_form .file_item input[type="file"] {
    padding: 11px 7px;
  }

  .thanks {
    padding: 120px 0 200px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .page_contact .page-content {
    padding: 40px 20px;
  }
  .form_table dl {
    margin-bottom: 24px;
    font-size: 15px;
  }
  .form_table dl dt {
    margin-bottom: 8px;
    gap: 0 10px;
  }
  .form_table dl dt span {
    width: 48px;
    height: 20px;
    font-size: 10px;
  }
  .input_item input {
    height: 44px;
    padding: 0 16px;
    font-weight: 600;
  }
  .textarea_item textarea {
    height: 240px;
  }
  .mw_wp_form .file_item input[type="file"] {
    height: 44px;
    padding: 7px;
  }

  .mw_wp_form_confirm .form_table {
    margin-bottom: 80px;
  }
  .form_btns {
    gap: 0 10px;
  }

  .thanks {
    padding: 80px 0 120px;
    font-size: 15px;
  }
}