@charset "UTF-8";
/*                共通
======================================================= */
/*                leyout
======================================================= */
/*                header
======================================================= */
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header .header_inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .content_left {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .site_logo {
  max-width: 208px;
  display: block;
}
header .site_logo img:first-child {
  width: 208px;
}
header .site_logo img:last-child {
  width: 170px;
}
header .header_nav .header_nav_inner {
  display: flex;
  gap: 24px;
}
header .header_nav .main_menu {
  font-size: 14px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
header .header_nav .main_menu:hover {
  color: #FFA019;
}
header .header_nav .parent_menu {
  position: relative;
}
header .header_nav .parent_menu:hover .child_menu {
  opacity: 1;
  visibility: visible;
}
header .header_nav .child_menu {
  position: absolute;
  width: 180px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header .header_nav .child_menu.child_menu_d {
  width: 185px;
}
header .header_nav .child_menu.child_menu_d li:last-child a::before {
  right: -8px;
}
header .header_nav .child_menu .child_menu_inner {
  background-color: #9B7337;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
header .header_nav .child_menu .child_menu_inner::before {
  content: "";
  background: url(../images/common/fukidashi.webp) no-repeat center center/contain;
  width: 18px;
  height: 18px;
  top: -12px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
}
header .header_nav .child_menu .child_menu_inner li {
  width: 100%;
}
header .header_nav .child_menu .child_menu_inner li:not(:last-child) {
  margin-bottom: 10px;
}
header .header_nav .child_menu .child_menu_inner li a {
  width: 100%;
  display: block;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
header .header_nav .child_menu .child_menu_inner li a:hover {
  color: #C8C82D;
}
header .header_nav .child_menu .child_menu_inner li a:hover::before {
  background: url(../images/common/nav-arw_green.webp) no-repeat center center/contain;
}
header .header_nav .child_menu .child_menu_inner li a::before {
  content: "";
  background: url(../images/common/nav-arw_white.webp) no-repeat center center/contain;
  width: 8px;
  height: 14px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  position: absolute;
}
header .header_cta {
  display: flex;
  gap: 8px;
}
header .header_cta a {
  height: 60px;
  border-radius: 30px;
}
header .header_cta a .btn_inner {
  gap: 5px;
}
header .header_cta a.c-tel {
  width: 240px;
}
header .header_cta a.c-tel .btn_text .tel_num {
  transform: translateY(4px);
}
header .header_cta a.c-entry {
  width: 190px;
}
header .sp_nav_icon,
header .sp_nav_menu {
  display: none;
}
@media only screen and (max-width: 1200px) {
  header .header_nav,
  header .header_cta {
    display: none;
  }
  header .sp_nav_icon {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    cursor: pointer;
  }
  header .sp_nav_icon .sp_nav_icon_inner {
    position: relative;
  }
  header .sp_nav_icon img:last-child {
    display: none;
  }
  header .sp_nav_icon.is-open img:first-child {
    display: none;
  }
  header .sp_nav_icon.is-open img:last-child {
    display: block;
  }
  header .sp_nav_menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #FAF5E6;
    z-index: 99;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  header .sp_nav_menu.is-open {
    right: 0;
  }
  header .sp_nav_menu .sp_nav_menu_inner {
    padding: 40px 30px 50px;
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
  }
  header .sp_nav_menu .heading_txt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  header .sp_nav_menu .btn_wrap a {
    max-width: 340px;
    width: 100%;
    height: 72px;
    border-radius: 40px;
    margin: 0 auto;
  }
  header .sp_nav_menu .btn_wrap a .btn_inner {
    gap: 12px;
  }
  header .sp_nav_menu .btn_wrap a.c-tel {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 768px) {
  header .sp_nav_menu .btn_wrap a.c-tel .btn_text {
    text-align: left;
  }
}
@media only screen and (max-width: 1200px) {
  header .sp_nav_menu .btn_wrap a.c-tel .btn_text .tel_num {
    font-weight: bold;
  }
  header .sp_nav_menu .btn_wrap a.c-entry .btn_text {
    font-weight: bold;
  }
  header .sp_nav_menu .c-nav_wrap {
    margin-top: 36px;
  }
}

/*                sp_menu
======================================================= */
.main_view {
  width: 100%;
}
.main_view .sp_site_title {
  display: none;
}
.main_view .container {
  max-width: 1200px;
  width: 78.125%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 56px;
  position: relative;
  z-index: 3;
}
.main_view .container .img_area,
.main_view .container .txt_area {
  width: calc(50% - 15px);
}
.main_view .container .img_area {
  min-width: 510px;
}
.main_view .container .img_area .transition_img {
  position: relative;
  width: 100%;
  height: auto;
}
.main_view .main_view_inner {
  position: relative;
  height: 669px;
}
.main_view .rdm-shape {
  position: absolute;
  z-index: 1;
}
.main_view .rdm-shape:first-child {
  top: 0;
  left: 0;
  width: 223px;
}
.main_view .rdm-shape:nth-child(2) {
  top: 0;
  right: 0;
  width: 389px;
}
.main_view .rdm-shape:nth-child(3) {
  bottom: 3vh;
  left: 0;
  width: 332px;
}
.main_view .rdm-img {
  position: absolute;
  z-index: 2;
}
.main_view .rdm-img.rdm-img_01 {
  bottom: 0;
  right: 0;
  width: 313px;
}
.main_view .rdm-img.rdm-img_02 {
  bottom: -11vh;
  left: 0;
  width: 265px;
}
.main_view .transition_img .transition-slide,
.main_view .rdm-img_01 .transition-slide,
.main_view .rdm-img_02 .transition-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.main_view .transition_img .transition-slide.active,
.main_view .rdm-img_01 .transition-slide.active,
.main_view .rdm-img_02 .transition-slide.active {
  opacity: 1;
}
.main_view .transition_img .transition-slide:first-child,
.main_view .rdm-img_01 .transition-slide:first-child,
.main_view .rdm-img_02 .transition-slide:first-child {
  position: relative;
}
.main_view .transition_img .transition-slide {
  bottom: 0;
  top: auto;
}
.main_view .sp_site_title {
  display: none;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 0.6em;
  white-space: nowrap;
  -webkit-text-stroke: 8px #fff;
  text-stroke: 8px #fff;
  paint-order: stroke;
}
h1 br {
  display: none;
}
h1 br.pc_only {
  display: block;
}
h1 + p {
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
}

@media only screen and (max-width: 1200px) {
  .main_view .container {
    flex-direction: column;
    width: 100%;
  }
  h1 {
    white-space: wrap;
    line-height: 1.6;
  }
  h1 br {
    display: block;
  }
  h1 br.pc_only {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .main_view {
    height: auto;
  }
  .main_view .main_view_inner {
    height: auto;
  }
  .main_view .rdm-shape:first-child {
    width: 32.5%;
  }
  .main_view .rdm-shape:nth-child(2) {
    width: 53.75%;
  }
  .main_view .rdm-shape:nth-child(3) {
    width: 29%;
    min-width: 116px;
    bottom: -44px;
  }
  .main_view .rdm-img.rdm-img_01 {
    width: 37.5%;
    min-width: 150px;
    top: 100%;
    bottom: auto;
  }
  .main_view .rdm-img.rdm-img_02 {
    width: 40%;
    min-width: 160px;
    bottom: auto;
    top: 100%;
  }
  .main_view .container {
    padding-top: 50px;
  }
  .main_view .container .img_area {
    min-width: auto;
    width: 76.5%;
  }
  .main_view .container .txt_area {
    display: none;
  }
  .main_view .sp_site_title {
    display: block;
    padding: 0 30px;
    transform: translateY(80%);
  }
}
@media only screen and (max-width: 480px) {
  .main_view .sp_site_title {
    transform: translateY(70%);
  }
  .main_view h1 {
    font-size: 30px;
  }
  .main_view h1 + p .pc_480up {
    display: none;
  }
}/*# sourceMappingURL=home_first_view.css.map */