@charset "UTF-8";
@import "subpage.css";
html {
  background-color: #edeae5;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

body {
  color: #4d3601;
  background: #edeae5;
}

.main_wrap {
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
}

a {
  color: #4d3601;
}
a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}

.top_headline2 .ja {
  font-size: 3.3333333333vw;
}
.top_headline2 .en {
  font-size: 1.9270833333vw;
  display: block;
}

@media (max-width: 1500px) {
  .top_headline2 .ja {
    font-size: 50;
  }
  .top_headline2 .en {
    font-size: 28.90625;
  }
}
@media (min-width: 1920px) {
  .top_headline2 .ja {
    font-size: 64px; /* 最大フォントサイズを設定 */
  }
  .top_headline2 .en {
    font-size: 37px; /* 最大フォントサイズを設定 */
  }
}
@media (max-width: 600px) {
  .top_headline2 .ja {
    font-size: 30px;
  }
  .top_headline2 .en {
    font-size: 22px;
  }
}
.btn {
  background-color: #4d3601;
  color: #fff;
  padding: 20px;
  display: block;
  width: 100%;
  border-radius: 40px;
  text-decoration: none;
  max-width: 28vw;
  text-align: center;
}
.btn span {
  position: relative;
}
.btn span::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 3px;
  left: 20%;
  right: 0;
  width: 15px;
  height: 16px;
  background: url(/image/btn.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 1500px) {
  .btn {
    max-width: 380px;
  }
}

.btn_sub {
  text-decoration: none;
  font-weight: bold;
}
.btn_sub::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 10px;
  left: 10%;
  right: 0;
  width: 60px;
  height: 32px;
  background: url(/image/btn_sub.svg) no-repeat;
  background-size: contain;
}

.main_visual {
  width: 100%;
  height: 580px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.main_visual::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 114px;
  background: url(/image/mv_line.png) center/100% 130px no-repeat;
  z-index: 2;
}
.main_visual .mv_text {
  position: relative;
  bottom: -50px;
  max-width: 700px;
  width: 50%;
  padding-top: 230px;
  z-index: 2;
}

.top_intro {
  padding: 100px 0;
}
.top_intro .intro_wrap {
  display: flex;
  gap: 10px;
}
.top_intro .intro_wrap .image_content {
  flex: 1.5;
  margin: auto;
}
.top_intro .intro_wrap .image_content img {
  width: 100%;
  z-index: 1;
  position: relative;
  border-radius: 10px;
}
.top_intro .intro_wrap .text_content {
  flex: 2;
  position: relative;
}
.top_intro .intro_wrap .text_content::after {
  content: "";
  position: absolute;
  left: 80px;
  width: 100%;
  height: 100%;
  background-image: url(/image/intro_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 80vw;
  top: 40px;
  z-index: 0;
}
.top_intro .intro_wrap .text_content .btn {
  z-index: 1;
  position: relative;
}
.top_intro .intro_wrap .text_content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  background: linear-gradient(transparent 50%, #ead079 50%);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.125vw;
}
@media (max-width: 1500px) {
  .top_intro .intro_wrap .text_content h2 {
    font-size: 46.875;
  }
}
@media (min-width: 1920px) {
  .top_intro .intro_wrap .text_content h2 {
    font-size: 60px;
  }
}
@media (max-width: 600px) {
  .top_intro .intro_wrap .text_content h2 {
    font-size: 27px;
  }
}
.top_intro .intro_wrap .text_content p {
  max-width: 90%;
  margin-bottom: 30px;
}

.top_service {
  background-color: white;
  position: relative;
  padding: 100px 0 110px 0;
}
.top_service::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 154px;
  background: url(/image/bg_line_01.png) center/100% 50px no-repeat;
}
.top_service::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 44px;
  background: url(/image/bg_line_02.png) center/100% 50px no-repeat;
}
.top_service .ser_main_wrapper {
  display: flex;
}
@media (max-width: 700px) {
  .top_service .ser_main_wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.top_service .ser_main_wrapper .ser_text_group {
  margin: auto;
}
.top_service .ser_main_wrapper .ser_text_group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% + 600px);
  height: 50vh;
  background: #d7cfba;
  border-radius: 0 380px 380px 0;
}
@media (max-width: 1200px) {
  .top_service .ser_main_wrapper .ser_text_group::before {
    width: calc(50% + 330px);
    height: 40vh;
  }
}
@media (max-width: 700px) {
  .top_service .ser_main_wrapper .ser_text_group::before {
    display: none;
  }
}
.top_service .ser_main_wrapper .ser_text_group .top_headline2,
.top_service .ser_main_wrapper .ser_text_group p,
.top_service .ser_main_wrapper .ser_text_group a {
  position: relative;
}
.top_service .ser_main_wrapper .ser_text_group .top_headline2 {
  margin-bottom: 30px;
  position: relative;
}
.top_service .ser_main_wrapper .ser_text_group .top_headline2::before {
  content: "";
  position: relative;
  display: block;
  top: -60px;
  left: 3%;
  right: 0;
  width: 200px;
  height: 82px;
  background: url(/image/se_bg01.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 700px) {
  .top_service .ser_main_wrapper .ser_text_group .top_headline2::before {
    display: none;
  }
}
.top_service .ser_main_wrapper .ser_text_group .top_headline2 .en {
  color: #75643d;
}
.top_service .ser_main_wrapper .ser_text_group p {
  margin-bottom: 30px;
  position: relative;
}
.top_service .ser_main_wrapper .ser_text_group p::after {
  content: "";
  position: relative;
  display: block;
  top: 80px;
  left: 3%;
  right: 0;
  width: 240px;
  height: 82px;
  background: url(/image/se_bg02.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 700px) {
  .top_service .ser_main_wrapper .ser_text_group p::after {
    display: none;
  }
}
.top_service .ser_main_wrapper .ser_content_group {
  max-width: 774px;
  width: 100%;
  position: relative;
}
.top_service .ser_main_wrapper .ser_content_group .ser_area {
  align-items: center;
  justify-content: center;
  border-radius: 23px;
  margin-bottom: 40px;
  background-color: #fff;
  border: #d7cfba 1px solid;
  padding: 20px;
  box-shadow: 10px 10px 0px 0px rgba(197, 166, 120, 0.4);
}
.top_service .ser_main_wrapper .ser_content_group .ser_area h3 {
  font-size: 2.6041666667vw;
  margin-bottom: 10px;
}
@media (max-width: 1500px) {
  .top_service .ser_main_wrapper .ser_content_group .ser_area h3 {
    font-size: 39.0625;
  }
}
@media (min-width: 1920px) {
  .top_service .ser_main_wrapper .ser_content_group .ser_area h3 {
    font-size: 45px;
  }
}
@media (max-width: 600px) {
  .top_service .ser_main_wrapper .ser_content_group .ser_area h3 {
    font-size: 25px;
  }
}
.top_service .ser_main_wrapper .ser_content_group .ser_area .ser_item {
  display: flex;
  gap: 20px;
}
.top_service .ser_main_wrapper .ser_content_group .ser_area .ser_item .image_content {
  flex: 0.8;
}
.top_service .ser_main_wrapper .ser_content_group .ser_area .ser_item .image_content img {
  width: 100%;
}
.top_service .ser_main_wrapper .ser_content_group .ser_area .ser_item .text_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voice_wrap {
  padding: 150px 10px 70px 10px;
}

.voice_head {
  display: flex;
  justify-content: center;
}
.voice_head .voice_title {
  background-color: #c9ba91;
  border-radius: 20px 0 0 20px;
  flex: 1;
  position: relative;
}
.voice_head .voice_title h2 {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.voice_head .image_content {
  flex: 1;
}
.voice_head .image_content img {
  border-radius: 0px 20px 20px 0px;
}

.voice_main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.voice_main .vo_item {
  display: flex;
  background-color: #fff;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  max-width: 510px;
  margin-bottom: 40px;
  position: relative;
  gap: 18px;
}
.voice_main .vo_item::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 20px;
  width: 38px;
  height: 44px;
  background: url(/image/vo_01.svg) no-repeat;
  background-size: contain;
}
.voice_main .vo_item::after {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 100px;
  width: 38px;
  height: 44px;
  background: url(/image/vo_02.svg) no-repeat;
  background-size: contain;
}
.voice_main .vo_item .text_wrap .title {
  font-size: large;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 9px;
}
.voice_main .vo_item .image_wrap {
  max-width: 165px;
}
.voice_main .v01 {
  z-index: 1;
  position: relative;
  top: -30px;
}
.voice_main .v02 {
  left: -300px;
}
.voice_main .v03 {
  left: 320px;
  top: -100px;
}
.voice_main .v04 {
  top: -90px;
  left: -100px;
}
@media (max-width: 1200px) {
  .voice_main {
    margin-top: 50px;
  }
  .voice_main .v01 {
    z-index: 1;
    position: relative;
    top: -30px;
  }
  .voice_main .v02 {
    left: -180px;
    top: -30px;
  }
  .voice_main .v03 {
    left: 170px;
    top: -40px;
  }
  .voice_main .v04 {
    top: -30px;
    left: -30px;
  }
}
@media (max-width: 900px) {
  .voice_main .v01 {
    z-index: 1;
    position: relative;
    top: 0px;
  }
  .voice_main .v02 {
    left: 0px;
    top: 0px;
  }
  .voice_main .v03 {
    left: 0px;
    top: 0px;
  }
  .voice_main .v04 {
    top: 0px;
    left: 0px;
  }
}

.top_award {
  padding-top: 50px;
}
.top_award h2 {
  margin-bottom: 20px;
}
.top_award p {
  margin-bottom: 30px;
}
.top_award .item_wrap {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .top_award .item_wrap {
    flex-direction: column;
  }
}

.top_news {
  background-color: #caba91;
  position: relative;
}
.top_news::before {
  content: "";
  position: absolute;
  top: -98px;
  left: 0;
  width: 100%;
  height: 154px;
  background: url(/image/bg_line_03.png) center/100% 50px no-repeat;
}
.top_news::after {
  content: "";
  position: absolute;
  bottom: -98px;
  left: 0;
  width: 100%;
  height: 154px;
  background: url(/image/bg_line_04.png) center/100% 50px no-repeat;
}
.top_news .main_wrap {
  padding: 80px 10px;
}
.top_news .main_wrap .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.top_news .main_wrap .title_wrap .btn {
  height: 64px;
}
.top_news .news_wrap {
  list-style: none;
}
.top_news a {
  text-decoration: none;
}
.top_news a img {
  margin-bottom: 15px;
}
.top_news a .title {
  font-size: 20px;
  font-weight: bold;
}
.top_news a time {
  color: #e48100;
  font-size: 13px;
  font-weight: bold;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.post_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3px;
}
.post_wrap a {
  text-decoration: none;
}
.post_wrap a img {
  margin-bottom: 15px;
}
.post_wrap a .title {
  font-size: 20px;
  font-weight: bold;
}
.post_wrap a .time {
  color: #e48100;
  font-size: 13px;
  font-weight: bold;
}
.post_wrap li {
  list-style: none;
  width: 32.6666666667%;
}
@media (max-width: 600px) {
  .post_wrap li {
    width: 49%;
  }
}
.post_wrap::after {
  content: "";
  display: block;
  width: 33%;
}

.post_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 5/3;
}

.post_title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  padding-bottom: 0 !important;
}

.bread_crumb_wrap {
  list-style: none;
  display: flex;
  font-size: 13px;
  margin-bottom: 20px;
  position: relative;
}
.bread_crumb_wrap li {
  position: relative;
  padding-right: 20px;
  margin-left: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
}
.bread_crumb_wrap li::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  top: 8px;
  background-color: #4d3601;
  right: 0;
}
.bread_crumb_wrap li:last-of-type::after {
  display: none;
}
.bread_crumb_wrap a {
  text-decoration: none;
  color: #b88e4f;
}

.hamburger {
  margin: 0px auto 10px;
  width: 100%;
  padding: 10px 30px;
  /* max-width: 1400px; */
  display: flex;
  position: fixed;
  background-color: #edeae5;
  z-index: 3;
  box-shadow: 0px 4px 6px 0px rgba(99, 99, 99, 0.14);
}

.logo img {
  width: 56%;
}

.hamburger .btn-gNav {
  position: fixed;
  top: 23px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
}
@media (max-width: 780px) {
  .hamburger .btn-gNav {
    top: 25px;
  }
}
.hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #4d3601;
  border-radius: 10px;
  transition: all 400ms;
}
.hamburger .btn-gNav span:nth-child(1) {
  top: 0;
}
.hamburger .btn-gNav span:nth-child(2) {
  top: 10px;
}
.hamburger .btn-gNav span:nth-child(3) {
  top: 20px;
}
.hamburger .btn-gNav.open span:nth-child(1) {
  background: #ffffff;
  top: 6px;
  transform: rotate(-45deg);
}
.hamburger .btn-gNav.open span:nth-child(2), .hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #ffffff;
  transform: rotate(45deg);
}

.btn-gNav {
  display: none;
}

.gNav {
  display: flex;
  justify-content: space-between;
  padding-right: 70px;
}
.gNav .gNav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}
.gNav .gNav-menu li {
  margin: 0 auto;
  padding: 0 5px;
  margin-top: auto;
  position: relative;
}
.gNav .gNav-menu li a {
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
}
.dropdown-menu li {
  width: 240px;
  padding-bottom: 15px !important;
}
.dropdown-menu li:first-child {
  padding-top: 15px !important;
}
.dropdown-menu a {
  padding: 20px;
  font-weight: bold;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.header_right {
  margin-left: auto;
  display: flex;
}
.header_right .r_tel {
  text-align: center;
  position: relative;
}
@media (max-width: 600px) {
  .header_right .r_tel {
    display: none;
  }
}
.header_right .r_tel::before {
  content: "";
  position: absolute;
  display: block;
  top: 14px;
  left: -50px;
  width: 65px;
  height: 36px;
  background: url(/image/head_tell.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 1200px) {
  .header_right .r_tel::before {
    top: 6px;
  }
}
.header_right .r_tel .tell {
  font-weight: bold;
  font-size: 1.5625vw;
}
@media (max-width: 1200px) {
  .header_right .r_tel .tell {
    font-size: 20px;
  }
}
.header_right .r_tel .rt {
  font-size: 0.625vw;
}
@media (max-width: 1200px) {
  .header_right .r_tel .rt {
    font-size: 10px;
  }
}

.contact_wrap {
  display: none;
}

@media screen and (max-width: 1200px) {
  .btn-gNav {
    display: block;
  }
  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.89);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 3;
    padding-top: 50px;
    transition: 0.3s;
  }
  .gNav.open {
    right: 0;
  }
  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    /*justify-content: center;*/
  }
  .gNav .gNav-menu li {
    width: 86%;
    padding: 15px;
    border-bottom: #525252 1px solid;
  }
  .gNav .gNav-menu li a {
    color: #fff;
  }
  .open2.btn-gNav span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .open2.btn-gNav span:nth-child(2) {
    background: #ffffff;
    top: 6px;
    opacity: 0; /* 第2スパンを非表示にする */
  }
  .open2.btn-gNav span:nth-child(3) {
    background: #ffffff;
    top: 20px;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  .dropdown {
    color: #fff;
    margin-top: 12px;
  }
  .dropdown-menu {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .dropdown-menu li {
    border-bottom: #525252 3px dotted !important;
  }
  .dropdown-menu li:first-child {
    margin-top: 11px;
    border-top: #525252 3px dotted !important;
  }
  .dropdown-menu li:last-child {
    border-bottom: 0 !important;
  }
}
@media (max-width: 600px) {
  .header {
    position: relative;
  }
  .gNav {
    width: 100%;
  }
  .sp_bottom_nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: #211f1c;
    color: white;
    display: flex;
    justify-content: space-evenly;
  }
  .sp_bottom_nav a {
    color: white;
    text-decoration: none;
  }
  .sp_bottom_nav .tell_wrap {
    margin: auto;
    padding: 10px 20px;
    position: relative;
    width: 50%;
    text-align: center;
  }
  .sp_bottom_nav .tell_wrap a {
    position: relative;
  }
  .sp_bottom_nav .tell_wrap::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 80px;
    background-color: #ffffff;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .sp_bottom_nav .tell_wrap .tell {
    font-size: 19px;
    font-weight: bold;
  }
  .sp_bottom_nav .tell_wrap .rt {
    font-size: 10px;
    line-height: 1;
  }
  .sp_bottom_nav .contact_wrap {
    padding: 10px 20px;
    margin: auto;
    width: 50%;
    display: block;
    position: relative;
  }
  .sp_bottom_nav .contact_wrap a {
    position: relative;
  }
  .sp_bottom_nav .contact_wrap .form {
    font-size: 16px;
    font-weight: bold;
    display: block;
    text-align: center;
  }
  .sp_bottom_nav .contact_wrap .form span {
    font-size: 11px;
  }
}
.footer_contact {
  padding-top: 100px;
  margin-bottom: 70px;
}
.footer_contact h2 {
  max-width: 700px;
  text-align: center;
  margin: auto;
}
.footer_contact h2 img {
  width: 100%;
}
.footer_contact .f_content_wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
.footer_contact .f_content_wrap .tell_content,
.footer_contact .f_content_wrap .form_content {
  max-width: 634px;
  width: 100%;
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  background-color: #e48100;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer_contact .f_content_wrap .tell_content .title,
.footer_contact .f_content_wrap .form_content .title {
  font-size: 30px;
  font-weight: bold;
}
.footer_contact .f_content_wrap .tell_content .tell {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-weight: bold;
  text-decoration: none;
  color: white;
  position: relative;
  font-size: 2.6041666667vw;
}
@media (min-width: 1920px) {
  .footer_contact .f_content_wrap .tell_content .tell {
    font-size: 50px;
  }
}
@media (max-width: 1200px) {
  .footer_contact .f_content_wrap .tell_content .tell {
    font-size: 30px;
  }
}
.footer_contact .f_content_wrap .tell_content .tell::before {
  content: "";
  background-image: url(/image/tell.svg);
  background-size: contain;
  position: absolute;
  left: -27px;
  top: 13px;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media (min-width: 1920px) {
  .footer_contact .f_content_wrap .tell_content .tell::before {
    left: -37px;
  }
}
@media (max-width: 1200px) {
  .footer_contact .f_content_wrap .tell_content .tell::before {
    width: 20px;
    height: 20px;
    top: 11px;
  }
}
.footer_contact .f_content_wrap .form_content .btn {
  margin: auto;
  max-width: 380px;
}
.footer_contact .f_content_foot .add_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer_contact .f_content_foot .add_wrap .add_item {
  display: flex;
  gap: 8px;
}
.footer_contact .f_content_foot .add_wrap .add_item img {
  width: 230px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.footer_contact .f_content_foot .add_wrap .add_item p {
  margin: auto;
}
.footer_contact .f_content_foot .add_wrap .link_wrap ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer_contact .f_content_foot .map_wrap iframe {
  width: 100%;
  height: 400px;
}

footer {
  background-color: #4d3601;
}
footer .footer_bottom_wrap {
  text-align: center;
  color: #fff;
  padding: 50px 0px 30px 0;
}
footer .footer_bottom_wrap .menu_item {
  display: flex;
  gap: 13px;
  justify-content: end;
  padding-right: 30px;
}
footer .footer_bottom_wrap .menu_item ul {
  display: flex;
  gap: 10px;
  list-style: none;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer_bottom_wrap .menu_item ul a {
  text-decoration: none;
  color: #fff;
}
footer .footer_bottom_wrap .menu_item p {
  text-align: left;
  margin-bottom: 10px;
}
footer .footer_bottom_wrap .menu_item .menu_content {
  font-size: 14px;
}
footer .footer_bottom_wrap .menu_item .menu_content .sub_menu {
  padding-left: 10px;
}
footer .footer_bottom_wrap .menu_item .logo {
  margin-right: auto;
}
footer .footer_bottom_wrap .menu_item .logo img {
  max-width: 220px;
  width: 100%;
  padding-left: 20px;
}

@media (max-width: 1200px) {
  .btn span::after {
    display: none;
  }
  .voice_wrap {
    padding: 70px 10px 70px 10px;
  }
  .header_right {
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .btn {
    max-width: 200px;
    padding: 10px;
  }
  .main_visual {
    background-position: center;
  }
  .top_intro {
    padding: 30px 0 110px 0px;
  }
  .top_intro .intro_wrap {
    flex-direction: column;
  }
  .top_intro .intro_wrap .text_content {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .top_intro .intro_wrap .text_content::after {
    left: 20px;
  }
  .top_intro .intro_wrap .text_content p {
    max-width: 100%;
  }
  .top_service {
    padding: 40px 0 70px 0;
  }
  .top_service .ser_main_wrapper .ser_content_group .ser_area {
    width: 97%;
  }
  .top_service .ser_main_wrapper .ser_content_group .ser_area .ser_item {
    display: block;
  }
  .top_service .ser_main_wrapper .ser_content_group .ser_area .ser_item .image_content {
    margin-bottom: 16px;
  }
  .voice_wrap {
    padding: 70px 10px 70px 10px;
  }
  .voice_head {
    flex-direction: column;
  }
  .voice_head .voice_title {
    border-radius: 20px 20px 0 0px;
    width: 100%;
    height: 160px;
    flex: none;
  }
  .voice_head .voice_title h2 {
    left: 29%;
  }
  .voice_head .image_content img {
    border-radius: 0px 0px 20px 20px;
  }
  .top_news .main_wrap {
    padding: 40px 10px 10px 10px;
  }
  .top_news .main_wrap .title_wrap .btn {
    height: 43px;
  }
  footer {
    margin-bottom: 66px;
  }
  .footer_contact .f_content_wrap .tell_content .title,
  .footer_contact .f_content_wrap .form_content .title {
    font-size: 22px;
  }
  .footer_contact .f_content_wrap .form_content .btn {
    max-width: 270px;
  }
  .footer_contact .f_content_foot .add_wrap .add_item {
    display: block;
    margin: auto;
  }
  footer .footer_bottom_wrap .menu_item .menu_content {
    display: none;
  }
  footer .footer_bottom_wrap .menu_item .logo {
    margin: 0 auto 20px;
  }
}
#youtube-area {
  position: relative;
  z-index: 1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
  height: 570px;
}
@media (max-width: 600px) {
  #youtube-area {
    position: relative;
  }
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
  animation-name: PageAnimeAppear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 257.777778vh;
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 110%;
  min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask {
  position: absolute;
  z-index: 2; /*下から2番目に表示*/
  top: 0;
  width: 100%;
  height: 100%;
}

/*youtube 上のロゴ */
.m_v_text {
  position: absolute;
  z-index: 2;
  top: 43%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  text-shadow: 0 0 15px #666;
  max-width: 850px !important;
  padding: 70px;
}/*# sourceMappingURL=style.css.map */