@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Serif JP", serif;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

.header.change-color {
  background-color: #000;
  transition: 0.3s;
}

#lower {
  width: 100vw;
  height: 30vw;
  padding-bottom: 2vw;
  background-color: #FFCFBF;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower {
    height: 45vw;
  }
}
@media screen and (max-width: 768px) {
  #lower {
    height: 60vw;
  }
}
#lower .lower {
  width: 100%;
  height: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
}
#lower .lower .lower_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#lower .lower .lower_title h2 {
  font-weight: 400;
  color: #fff;
}

p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 3.5vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

header {
  z-index: 99999999;
  width: 100vw;
  position: fixed;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 2vw;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  width: 20%;
  padding: 0.5vw;
}
header #header_pc .header_logo img {
  width: 100%;
}
header #header_pc .header_menu > a {
  display: block;
  margin-bottom: 1vw;
  text-align: end;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-decoration: none;
  font-size: 2vw;
}
header #header_pc .header_menu > a i {
  margin-right: 1vw;
}
header #header_pc .header_menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}
header #header_pc .header_menu ul li {
  border-left: 1px solid #fff;
  height: 3.5vw;
}
header #header_pc .header_menu ul li:first-child {
  border: none;
}
header #header_pc .header_menu ul > li > a {
  display: block;
  padding: 0 1vw;
  text-decoration: none;
  color: #fff;
  font-size: 1vw;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  height: 100%;
  text-align: center;
}

#header_sp {
  height: 8vw;
  display: flex;
  align-items: top;
}
@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header_sp {
    height: 19vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp {
    height: 12vw;
  }
}
#header_sp .header_logo {
  width: 50%;
  margin-left: 3vw;
  padding: 1vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp .header_logo {
    width: 35%;
  }
}
#header_sp .header_logo img {
  width: 100%;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 13px;
  top: 12px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
  background-color: #FFBFAA;
}
@media screen and (min-width: 1441px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger {
    width: 60px;
    height: 60px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 30%;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: 70%;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  left: 42%;
  top: 28%;
  background: #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger.active span:nth-child(1) {
    left: 45%;
    top: 30%;
  }
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  left: 40%;
  top: 75%;
  background: #fff;
  transform: rotate(45deg) translate(-50%, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    left: 42%;
    top: 65%;
  }
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li {
    margin-bottom: 20px;
  }
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  color: #333;
  padding: 1em 0;
  text-decoration: none;
  font-size: 2.8vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a {
    font-size: 3.2vw;
  }
}
nav.globalMenuSp ul li a span {
  font-size: 2vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a span {
    font-size: 2.8vw;
    margin-top: 1vw;
  }
}
nav.globalMenuSp ul li a button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1vw 2vw;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a button {
    font-size: 4vw;
  }
}
nav.globalMenuSp ul li a button i {
  font-size: 4vw;
  margin-right: 2vw;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#mv {
  width: 100vw;
  height: 100vh;
}
#mv .mv {
  position: relative;
  overflow: hidden;
  height: 100%;
}
#mv .mv .slide-images {
  width: 100vw;
  height: 100%;
}
#mv .mv .slide-images .slick-list {
  height: 100%;
}
#mv .mv .slide-images .slick-list .slick-track {
  height: 100%;
}
#mv .mv .slide-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .mv .mv_headline {
  position: absolute;
  top: 40%;
  left: 10%;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#mv .mv .mv_headline h2 {
  color: #fff;
  font-size: 5vw;
  text-align: end;
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline h2 {
    font-size: 9vw;
  }
}

#top {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#top_about .top_about {
  position: relative;
  z-index: 10;
  padding: 4vw 0;
  padding-bottom: 14vw;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #top_about .top_about {
    padding: 8vw 0;
  }
}
#top_about .top_about .top_headline {
  text-align: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 4vw;
  padding: 4vw;
}
#top_about .top_about .top_headline h4, #top_about .top_about .top_headline h2 {
  letter-spacing: 0.4vw;
  font-weight: 500;
}
#top_about .top_about .top_headline p {
  letter-spacing: 0.2vw;
}
#top_about .top_about .top_about_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents {
    flex-flow: column;
  }
}
#top_about .top_about .top_about_contents .top_about_text {
  padding: 2vw;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_text {
    width: 80%;
    padding: 4vw;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_text {
    width: 95%;
    padding: 8vw;
    margin-bottom: 8vw;
  }
}
#top_about .top_about .top_about_contents .top_about_text p {
  line-height: 3vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_text p {
    line-height: 5vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_text p {
    line-height: 10vw;
    margin-bottom: 6vw;
  }
}
#top_about .top_about .top_about_contents .top_about_text .top_btn a {
  width: 45%;
  margin: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_text .top_btn a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#top_about .top_about .top_about_contents .top_about_text .top_btn a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_text .top_btn a button {
    padding: 3vw 0;
  }
}
#top_about .top_about .top_about_contents .top_about_text .top_btn a button i {
  margin-right: 1vw;
}
#top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button {
  position: relative;
  padding-right: 4.5vw;
}
#top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background-color: #000;
  top: 50%;
  right: 24%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::before {
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::before {
    right: 15%;
  }
}
#top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button:hover::before {
  width: 12%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button:hover::before {
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button:hover::before {
    width: 12%;
  }
}
#top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::after {
  position: absolute;
  content: "";
  width: 3%;
  height: 1px;
  background-color: #000;
  top: 46%;
  right: 24%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::after {
    top: 46%;
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::after {
    top: 46%;
    right: 15%;
  }
}
#top_about .top_about .top_about_contents .top_about_image {
  width: 50%;
  position: absolute;
  top: 10%;
  left: 49%;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_image {
    width: 60%;
    position: static;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_image {
    width: 95%;
    position: static;
  }
}
#top_about .top_about .top_about_contents .top_about_image img {
  width: 100%;
}

#top_eimin {
  position: relative;
  z-index: 0;
}
#top_eimin .top_eimin {
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin {
    padding: 8vw 0;
  }
}
#top_eimin .top_eimin .top_headline {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 4vw;
  padding: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_headline {
    position: static;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_headline {
    position: static;
    transform: translate(0, 0);
  }
}
#top_eimin .top_eimin .top_headline h4, #top_eimin .top_eimin .top_headline h2 {
  letter-spacing: 0.4vw;
  font-weight: 500;
}
#top_eimin .top_eimin .top_headline p {
  letter-spacing: 0.2vw;
}
#top_eimin .top_eimin .top_eimin_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_eimin_contents {
    flex-flow: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents {
    flex-flow: column-reverse;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left {
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  padding-top: 8vw;
  padding-left: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left {
    position: relative;
    width: 80%;
    margin-left: 0;
    margin-right: auto;
    z-index: 30;
    background-position: left 40vw;
    padding-bottom: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left {
    position: relative;
    z-index: 30;
    padding: 0 4vw;
    background-position: left 80vw;
    padding-bottom: 20vw;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left h5 {
  font-weight: 400;
  margin-bottom: 2vw;
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left p {
  line-height: 3vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left p {
    line-height: 5vw;
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left p {
    line-height: 10vw;
    margin-bottom: 6vw;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_eimin_images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_eimin_images {
    width: 90%;
    margin: auto;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_eimin_images {
    width: 90%;
    margin: auto;
    margin-bottom: 12vw;
    flex-flow: column;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_eimin_images img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_eimin_images img {
    width: 90%;
    margin-bottom: 2vw;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a {
  width: 45%;
  margin: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a button {
    padding: 3vw 0;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a button i {
  margin-right: 1vw;
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button {
  position: relative;
  padding-right: 4.5vw;
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background-color: #000;
  top: 50%;
  right: 24%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button::before {
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button::before {
    right: 15%;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button:hover::before {
  width: 12%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button:hover::before {
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button:hover::before {
    width: 12%;
  }
}
#top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button::after {
  position: absolute;
  content: "";
  width: 3%;
  height: 1px;
  background-color: #000;
  top: 46%;
  right: 24%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button::after {
    top: 46%;
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_left .top_btn a:last-child button::after {
    top: 46%;
    right: 15%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_right {
    position: absolute;
    right: 0;
    top: 20%;
    z-index: 0;
    text-align: end;
  }
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_right img {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_right {
    position: absolute;
    right: 0;
    top: 15%;
    z-index: 0;
    text-align: end;
  }
  #top_eimin .top_eimin .top_eimin_contents .top_eimin_right img {
    width: 60%;
  }
}

#top_senzoku .top_senzoku {
  padding-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku {
    padding-bottom: 24vw;
  }
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  #top_senzoku .top_senzoku .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_senzoku .top_senzoku .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_senzoku .top_senzoku .sp {
    display: none !important;
  }
}
#top_senzoku .top_senzoku .top_senzoku_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_senzoku_top {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
#top_senzoku .top_senzoku .top_senzoku_top .top_headline {
  width: 40%;
  text-align: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4vw 0;
}
#top_senzoku .top_senzoku .top_senzoku_top .top_headline h4, #top_senzoku .top_senzoku .top_senzoku_top .top_headline h2 {
  letter-spacing: 0.4vw;
  font-weight: 500;
}
#top_senzoku .top_senzoku .top_senzoku_top .top_headline p {
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_senzoku_top .top_headline {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_text {
  width: 30%;
  line-height: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_text {
    line-height: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_text {
    width: 100%;
    line-height: 10vw;
  }
}
#top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_image {
  width: 20%;
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_image {
    width: 100%;
  }
}
#top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_image img {
  width: 100%;
}
#top_senzoku .top_senzoku .top_senzoku_flex {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_senzoku_flex {
    flex-flow: column;
    margin-bottom: 12vw;
  }
}
#top_senzoku .top_senzoku .top_senzoku_flex img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_senzoku_flex img {
    width: 100%;
  }
}
#top_senzoku .top_senzoku .top_btn {
  width: 50%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_senzoku .top_senzoku .top_btn {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_btn {
    width: 90%;
  }
}
#top_senzoku .top_senzoku .top_btn a {
  width: 45%;
  margin: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_btn a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#top_senzoku .top_senzoku .top_btn a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_btn a button {
    padding: 3vw 0;
  }
}
#top_senzoku .top_senzoku .top_btn a button i {
  margin-right: 1vw;
}
#top_senzoku .top_senzoku .top_btn a:last-child button {
  position: relative;
  padding-right: 4.5vw;
}
#top_senzoku .top_senzoku .top_btn a:last-child button::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background-color: #000;
  top: 50%;
  right: 24%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_senzoku .top_senzoku .top_btn a:last-child button::before {
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_btn a:last-child button::before {
    right: 15%;
  }
}
#top_senzoku .top_senzoku .top_btn a:last-child button:hover::before {
  width: 12%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_senzoku .top_senzoku .top_btn a:last-child button:hover::before {
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_btn a:last-child button:hover::before {
    width: 12%;
  }
}
#top_senzoku .top_senzoku .top_btn a:last-child button::after {
  position: absolute;
  content: "";
  width: 3%;
  height: 1px;
  background-color: #000;
  top: 46%;
  right: 24%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_senzoku .top_senzoku .top_btn a:last-child button::after {
    top: 46%;
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #top_senzoku .top_senzoku .top_btn a:last-child button::after {
    top: 45%;
    right: 15%;
  }
}

@media screen and (max-width: 768px) {
  #top_orphanage .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  #top_orphanage .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_orphanage .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .sp {
    display: none !important;
  }
}
#top_orphanage .top_orphanage {
  background-position: center;
  background-size: cover;
  padding: 8vw 0;
}
#top_orphanage .top_orphanage .orphanage_contents {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2vw;
  width: 85%;
  margin: auto;
}
#top_orphanage .top_orphanage .orphanage_contents .top_headline {
  width: 40%;
  margin: auto;
  text-align: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4vw 0;
}
#top_orphanage .top_orphanage .orphanage_contents .top_headline h4, #top_orphanage .top_orphanage .orphanage_contents .top_headline h2 {
  letter-spacing: 0.4vw;
  font-weight: 500;
}
#top_orphanage .top_orphanage .orphanage_contents .top_headline p {
  letter-spacing: 0.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_headline {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_headline {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex {
    width: 90%;
    margin: auto;
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_left {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_left {
    width: 100%;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_left h4, #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_left h5 {
  font-weight: 400;
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_left h5 {
  margin-bottom: 1.5vw;
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_left p {
  line-height: 2vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_left p {
    line-height: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_left p {
    line-height: 5vw;
    margin-bottom: 6vw;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right {
  width: 45%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right {
    width: 90%;
    margin: auto;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right img {
  width: 65%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right img {
    width: 100%;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right img:first-child {
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right img:first-child {
    margin-bottom: 2vw;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right img:last-child {
  position: absolute;
  top: 60%;
  right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right img:last-child {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .orphanage_flex .orphanage_right img:last-child {
    position: static;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .top_btn {
  width: 50%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn {
    width: 90%;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .top_btn a {
  width: 45%;
  margin: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .top_btn a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn a button {
    padding: 3vw 0;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .top_btn a button i {
  margin-right: 1vw;
}
#top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button {
  position: relative;
  padding-right: 4.5vw;
}
#top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background-color: #000;
  top: 50%;
  right: 24%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button::before {
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button::before {
    right: 15%;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button:hover::before {
  width: 12%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button:hover::before {
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button:hover::before {
    width: 12%;
  }
}
#top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button::after {
  position: absolute;
  content: "";
  width: 3%;
  height: 1px;
  background-color: #000;
  top: 46%;
  right: 24%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button::after {
    top: 46%;
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #top_orphanage .top_orphanage .orphanage_contents .top_btn a:last-child button::after {
    top: 45%;
    right: 15%;
  }
}

#about .about #top_about .top_about {
  position: relative;
  z-index: 10;
  padding: 8vw 0;
  padding-bottom: 14vw;
  background-position: bottom;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about {
    padding: 8vw 0;
  }
}
#about .about #top_about .top_about .top_headline {
  text-align: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 4vw;
  padding: 4vw;
}
#about .about #top_about .top_about .top_headline h4, #about .about #top_about .top_about .top_headline h2 {
  letter-spacing: 0.4vw;
  font-weight: 500;
}
#about .about #top_about .top_about .top_headline p {
  letter-spacing: 0.2vw;
}
#about .about #top_about .top_about .top_about_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #top_about .top_about .top_about_contents {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents {
    flex-flow: column;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_text {
  padding: 2vw;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text {
    width: 80%;
    padding: 4vw;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text {
    width: 95%;
    padding: 8vw;
    margin-bottom: 8vw;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_text p {
  line-height: 3vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text p {
    line-height: 5vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text p {
    line-height: 10vw;
    margin-bottom: 6vw;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a {
  width: 45%;
  margin: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a button {
    padding: 3vw 0;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a button i {
  margin-right: 1vw;
}
#about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button {
  position: relative;
  padding-right: 4.5vw;
}
#about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background-color: #000;
  top: 50%;
  right: 24%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::before {
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::before {
    right: 15%;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button:hover::before {
  width: 12%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button:hover::before {
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button:hover::before {
    width: 12%;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::after {
  position: absolute;
  content: "";
  width: 3%;
  height: 1px;
  background-color: #000;
  top: 46%;
  right: 23%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::after {
    top: 46%;
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents .top_about_text .top_btn a:last-child button::after {
    top: 46%;
    right: 15%;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_image {
  width: 50%;
  position: absolute;
  top: 10%;
  left: 49%;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #top_about .top_about .top_about_contents .top_about_image {
    width: 60%;
    position: static;
  }
}
@media screen and (max-width: 768px) {
  #about .about #top_about .top_about .top_about_contents .top_about_image {
    width: 95%;
    position: static;
  }
}
#about .about #top_about .top_about .top_about_contents .top_about_image img {
  width: 100%;
}
#about .about #event .event .top_headline {
  text-align: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 4vw;
  padding: 4vw;
}
#about .about #event .event .top_headline h4, #about .about #event .event .top_headline h2 {
  letter-spacing: 0.4vw;
  font-weight: 500;
}
#about .about #event .event .top_headline p {
  letter-spacing: 0.2vw;
}
#about .about #event .event .event_contents {
  width: 80%;
  margin: auto;
  padding: 4vw 0;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #event .event .event_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_contents {
    width: 95%;
    padding: 8vw 0;
    margin-bottom: 16vw;
  }
}
#about .about #event .event .event_contents .event_content {
  width: 80%;
  margin: auto;
  border-bottom: 2px dotted #666;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4vw;
  margin-bottom: 1vw;
  padding-bottom: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #event .event .event_contents .event_content {
    width: 90%;
    margin-bottom: 2vw;
    padding-bottom: 1vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_contents .event_content {
    width: 95%;
    margin-bottom: 4vw;
    padding-bottom: 2vw;
  }
}
#about .about #event .event .event_contents .event_content p {
  letter-spacing: 0.3vw;
}
#about .about #event .event .event_contents .event_content p:first-child {
  width: 20%;
  font-weight: 600;
  padding-left: 2vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_contents .event_content p:first-child {
    width: 45%;
  }
}
#about .about #event .event .event_contents .event_content p:first-child::after {
  position: absolute;
  content: "";
  width: 1.2vw;
  height: 1.2vw;
  border-radius: 50%;
  background-color: #F4E2DC;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_contents .event_content p:last-child {
    width: 55%;
  }
}
#about .about #event .event .event_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  margin: auto;
  padding-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_flex {
    width: 95%;
    flex-flow: column;
    padding-bottom: 16vw;
  }
}
#about .about #event .event .event_flex .event_left {
  width: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FDF2D0;
  border-radius: 30px;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_flex .event_left {
    width: 100%;
    padding: 4vw;
    margin-bottom: 8vw;
  }
}
#about .about #event .event .event_flex .event_left img {
  width: 30%;
}
#about .about #event .event .event_flex .event_left p {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_flex .event_left p {
    margin-bottom: 4vw;
  }
}
#about .about #event .event .event_flex .event_right {
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_flex .event_right {
    width: 100%;
  }
}
#about .about #event .event .event_flex .event_right .event_right_headline {
  text-align: center;
  margin-bottom: 2vw;
}
#about .about #event .event .event_flex .event_right .event_right_headline img {
  width: 80%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #event .event .event_flex .event_right .event_right_headline img {
    width: 100%;
  }
}
#about .about #event .event .event_flex .event_right .event_right_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#about .about #event .event .event_flex .event_right .event_right_btns a {
  width: 45%;
  display: block;
  text-decoration: none;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #event .event .event_flex .event_right .event_right_btns a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_flex .event_right .event_right_btns a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#about .about #event .event .event_flex .event_right .event_right_btns a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1vw 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_flex .event_right .event_right_btns a button {
    padding: 3vw 0;
  }
}
#about .about #event .event .event_flex .event_right .event_right_btns a button i {
  margin-right: 1vw;
}
#about .about #event .event .event_flex .event_right .event_right_btns a button img {
  width: 1vw;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #event .event .event_flex .event_right .event_right_btns a button img {
    width: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #event .event .event_flex .event_right .event_right_btns a button img {
    width: 3.5vw;
  }
}

#eimin .eimin_images {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  height: 20vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #eimin .eimin_images {
    flex-flow: column;
    margin-bottom: 8vw;
    height: auto;
  }
}
#eimin .eimin_images img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#eimin .eimin_images img:first-child {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #eimin .eimin_images img:first-child {
    width: 80%;
  }
}
#eimin .eimin_images img:last-child {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #eimin .eimin_images img:last-child {
    width: 80%;
  }
}
#eimin .eimin_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 85%;
  margin: auto;
  padding-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #eimin .eimin_flex {
    width: 95%;
    flex-flow: column;
    padding-bottom: 16vw;
  }
}
#eimin .eimin_flex .eimin_left {
  width: 55%;
}
@media screen and (max-width: 768px) {
  #eimin .eimin_flex .eimin_left {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#eimin .eimin_flex .eimin_left .eimin_contents .eimin_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  margin-bottom: 2vw;
  padding-bottom: 2vw;
  border-bottom: 2px dotted #666;
}
#eimin .eimin_flex .eimin_left .eimin_contents .eimin_content p:first-child {
  width: 30%;
  padding: 1vw;
  background-color: #F4E2DC;
}
#eimin .eimin_flex .eimin_left .eimin_contents .eimin_content p:last-child {
  width: 70%;
}
#eimin .eimin_flex .eimin_right {
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #eimin .eimin_flex .eimin_right {
    width: 100%;
  }
}
#eimin .eimin_flex .eimin_right .eimin_right_headline {
  text-align: center;
  margin-bottom: 2vw;
}
#eimin .eimin_flex .eimin_right .eimin_right_headline img {
  width: 80%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #eimin .eimin_flex .eimin_right .eimin_right_headline img {
    width: 100%;
  }
}
#eimin .eimin_flex .eimin_right .eimin_right_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#eimin .eimin_flex .eimin_right .eimin_right_btns a {
  width: 45%;
  display: block;
  text-decoration: none;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #eimin .eimin_flex .eimin_right .eimin_right_btns a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #eimin .eimin_flex .eimin_right .eimin_right_btns a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#eimin .eimin_flex .eimin_right .eimin_right_btns a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1vw 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #eimin .eimin_flex .eimin_right .eimin_right_btns a button {
    padding: 3vw 0;
  }
}
#eimin .eimin_flex .eimin_right .eimin_right_btns a button i {
  margin-right: 1vw;
}
#eimin .eimin_flex .eimin_right .eimin_right_btns a button img {
  width: 1vw;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #eimin .eimin_flex .eimin_right .eimin_right_btns a button img {
    width: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #eimin .eimin_flex .eimin_right .eimin_right_btns a button img {
    width: 3.5vw;
  }
}
#eimin .eimin_flex .eimin_right .eimin_right_popup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
#eimin .eimin_flex .eimin_right .eimin_right_popup img {
  width: 20%;
}
#eimin .eimin_flex .eimin_right .eimin_right_popup p span {
  color: red;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay.active {
  display: flex;
}
.popup-overlay .popup-inner {
  position: relative;
  max-width: 35%;
  margin: auto;
  max-height: 90%;
  overflow-y: auto;
  background: #fff;
  padding: 1vw;
  margin-top: 12vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .popup-overlay .popup-inner {
    max-width: 65%;
    margin-top: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .popup-overlay .popup-inner {
    max-width: 90%;
    margin-top: 30vw;
    padding: 3vw;
  }
}
.popup-overlay .popup-inner img {
  width: 100%;
  height: auto;
  display: block;
}
.popup-overlay .popup-inner .popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  font-size: 18px;
}

.eimin_right_popup {
  cursor: pointer;
}
.eimin_right_popup span {
  font-size: 0.9em;
  opacity: 0.7;
}

.eimin_bottom_images {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  padding-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  .eimin_bottom_images {
    padding-bottom: 16vw;
    flex-flow: column;
  }
}
.eimin_bottom_images img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .eimin_bottom_images img {
    width: 80%;
  }
}

#senzoku .senzoku #top_senzoku .top_senzoku {
  padding: 8vw 0;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku #top_senzoku .top_senzoku {
    padding: 16vw 0;
  }
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .sp {
    display: none !important;
  }
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_headline {
  width: 40%;
  margin: auto;
  text-align: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4vw 0;
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_headline h4, #senzoku .senzoku #top_senzoku .top_senzoku .top_headline h2 {
  letter-spacing: 0.4vw;
  font-weight: 500;
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_headline p {
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .top_headline {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top {
    width: 90%;
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_text {
  width: 60%;
  line-height: 3vw;
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_text h3 {
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_text {
    line-height: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_text {
    width: 100%;
    line-height: 10vw;
  }
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_image {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_image {
    width: 100%;
  }
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_top .top_senzoku_image img {
  width: 100%;
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_flex {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_flex {
    flex-flow: column;
    margin-bottom: 12vw;
  }
}
#senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_flex img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku #top_senzoku .top_senzoku .top_senzoku_flex img {
    width: 100%;
  }
}
#senzoku .senzoku .event_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  margin: auto;
  padding-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku .event_flex {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex {
    width: 95%;
    flex-flow: column;
    padding-bottom: 16vw;
  }
}
#senzoku .senzoku .event_flex .event_left {
  width: 50%;
  margin: auto;
  background-color: #FDF2D0;
  border-radius: 30px;
  padding: 2vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku .event_flex .event_left {
    padding: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_left {
    width: 100%;
    padding: 8vw 4vw;
    margin-bottom: 8vw;
  }
}
#senzoku .senzoku .event_flex .event_left > img {
  width: 30%;
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_left > img {
    width: 60%;
  }
}
#senzoku .senzoku .event_flex .event_left h5 {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_left h5 {
    margin-bottom: 4vw;
  }
}
#senzoku .senzoku .event_flex .event_left ul {
  list-style: none;
  position: relative;
  z-index: 40;
}
#senzoku .senzoku .event_flex .event_left ul li {
  margin-bottom: 1vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku .event_flex .event_left ul li {
    font-size: 1.8vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_left ul li {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}
#senzoku .senzoku .event_flex .event_left ul li img {
  margin-right: 1vw;
  width: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku .event_flex .event_left ul li img {
    width: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_left ul li img {
    width: 3vw;
  }
}
#senzoku .senzoku .event_flex .event_right {
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_right {
    width: 100%;
  }
}
#senzoku .senzoku .event_flex .event_right .event_right_headline {
  text-align: center;
  margin-bottom: 2vw;
}
#senzoku .senzoku .event_flex .event_right .event_right_headline img {
  width: 80%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku .event_flex .event_right .event_right_headline img {
    width: 100%;
  }
}
#senzoku .senzoku .event_flex .event_right .event_right_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#senzoku .senzoku .event_flex .event_right .event_right_btns a {
  width: 45%;
  display: block;
  text-decoration: none;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku .event_flex .event_right .event_right_btns a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_right .event_right_btns a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#senzoku .senzoku .event_flex .event_right .event_right_btns a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1vw 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_right .event_right_btns a button {
    padding: 3vw 0;
  }
}
#senzoku .senzoku .event_flex .event_right .event_right_btns a button i {
  margin-right: 1vw;
}
#senzoku .senzoku .event_flex .event_right .event_right_btns a button img {
  width: 1vw;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #senzoku .senzoku .event_flex .event_right .event_right_btns a button img {
    width: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #senzoku .senzoku .event_flex .event_right .event_right_btns a button img {
    width: 3.5vw;
  }
}

#orphanage .orphanage {
  padding-top: 8vw;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage {
    padding-top: 16vw;
  }
}
#orphanage .orphanage .top_headline {
  width: 40%;
  margin: auto;
  text-align: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4vw 0;
}
#orphanage .orphanage .top_headline h4, #orphanage .orphanage .top_headline h2 {
  letter-spacing: 0.4vw;
  font-weight: 500;
}
#orphanage .orphanage .top_headline p {
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .top_headline {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#orphanage .orphanage .orphanage_contents01 {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  margin-top: 8vw;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents01 {
    flex-flow: column;
    margin-top: 16vw;
  }
}
#orphanage .orphanage .orphanage_contents01 .orphanage_text {
  width: 50%;
  padding: 4vw;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents01 .orphanage_text {
    width: 100%;
  }
}
#orphanage .orphanage .orphanage_contents01 .orphanage_text h4 {
  font-weight: 500;
}
#orphanage .orphanage .orphanage_contents01 .orphanage_text h5 {
  font-weight: 300;
  margin-bottom: 2vw;
}
#orphanage .orphanage .orphanage_contents01 .orphanage_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents01 .orphanage_image {
    width: 90%;
    margin: auto;
  }
}
#orphanage .orphanage .orphanage_contents01 .orphanage_image img {
  width: 100%;
}
#orphanage .orphanage .orphanage_contents02 {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  margin-top: 8vw;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents02 {
    flex-flow: column-reverse;
    margin-top: 16vw;
  }
}
#orphanage .orphanage .orphanage_contents02 .orphanage_text02 {
  width: 50%;
  padding: 4vw;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents02 .orphanage_text02 {
    width: 100%;
  }
}
#orphanage .orphanage .orphanage_contents02 .orphanage_text02 h4 {
  font-weight: 500;
  margin-bottom: 2vw;
}
#orphanage .orphanage .orphanage_contents02 .orphanage_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents02 .orphanage_image {
    width: 90%;
    margin: auto;
  }
}
#orphanage .orphanage .orphanage_contents02 .orphanage_image img {
  width: 100%;
}
#orphanage .orphanage .orphanage_contents03 {
  margin-top: 8vw;
  padding-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents03 {
    margin-top: 16vw;
    padding-bottom: 16vw;
  }
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  padding-top: 4vw;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents {
    flex-flow: column;
  }
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_image {
    width: 90%;
    margin: auto;
    margin-bottom: 8vw;
  }
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_image img {
  width: 100%;
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right {
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right {
    width: 100%;
  }
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_headline {
  text-align: center;
  margin-bottom: 2vw;
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_headline img {
  width: 80%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_headline img {
    width: 100%;
  }
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a {
  width: 45%;
  display: block;
  text-decoration: none;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1vw 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a button {
    padding: 3vw 0;
  }
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a button i {
  margin-right: 1vw;
}
#orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a button img {
  width: 1vw;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a button img {
    width: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #orphanage .orphanage .orphanage_contents03 .orphanage_contents .orphanage_right .orphanage_right_btns a button img {
    width: 3.5vw;
  }
}

#access .access {
  padding-bottom: 40vw;
}
#access .access #company_detail {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
#access .access #company_detail .company_detail {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 8vw;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail {
    padding-top: 16vw;
  }
}
#access .access #company_detail .company_detail .footer_company_headline {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
  height: 15vw;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .footer_company_headline {
    margin-bottom: 6vw;
  }
}
#access .access #company_detail .company_detail .footer_company_headline h4, #access .access #company_detail .company_detail .footer_company_headline h2, #access .access #company_detail .company_detail .footer_company_headline p {
  font-weight: 500;
  letter-spacing: 0.2vw;
}
#access .access #company_detail .company_detail .company_detail_contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  width: 90%;
  margin: auto;
  padding: 4vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents {
    flex-flow: column;
    height: auto;
    padding: 12vw 0;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_logo {
  text-align: center;
  width: 30%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_logo {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_logo {
    width: 45%;
    margin-bottom: 8vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_logo img {
  width: 100%;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text {
    width: 80%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text {
    width: 95%;
    margin: auto;
    margin-bottom: 8vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
  height: 15vw;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline {
    margin-bottom: 6vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline h4, #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline h2, #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline p {
  font-weight: 500;
  letter-spacing: 0.2vw;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1vw 0;
  margin-bottom: 2vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company {
    padding: 3vw 0;
    margin-bottom: 6vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company h5 {
  padding: 0 2vw;
  padding-bottom: 1vw;
  border-bottom: 1px dotted #000;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table {
  width: 100%;
  border-collapse: 20px 10px;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dotted #000;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr:last-child {
  border: none;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr th, #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr td {
  font-size: 1vw;
  padding: 10px 0px;
  padding: 1vw 2vw;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr th:first-child, #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr td:first-child {
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr th, #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr th, #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr td {
    font-size: 4vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns {
    flex-flow: column;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a {
  width: 45%;
  display: block;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a button {
    padding: 3vw 0;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a button i {
  margin-right: 1vw;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button {
  position: relative;
  padding-right: 4.5vw;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background-color: #000;
  top: 50%;
  right: 24%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::before {
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::before {
    right: 15%;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button:hover::before {
  width: 12%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button:hover::before {
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button:hover::before {
    width: 12%;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::after {
  position: absolute;
  content: "";
  width: 3%;
  height: 1px;
  background-color: #000;
  top: 47%;
  right: 23%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::after {
    top: 46%;
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::after {
    top: 46%;
    right: 15%;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right {
    width: 100%;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_headline {
  text-align: center;
  margin-bottom: 2vw;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_headline img {
  width: 80%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_headline img {
    width: 100%;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a {
  width: 45%;
  display: block;
  text-decoration: none;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1vw 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a button {
    padding: 2vw 3vw;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a button {
    padding: 3vw 0;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a button i {
  margin-right: 1vw;
}
#access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a button img {
  width: 1vw;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a button img {
    width: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .footer_company_text .access_right .access_right_btns a button img {
    width: 3.5vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .company_map {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access #company_detail .company_detail .company_detail_contents .company_map {
    width: 80%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .company_map {
    width: 100%;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .company_map iframe {
  width: 100%;
  height: 45vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .company_map iframe {
    height: 80vw;
    margin-bottom: 4vw;
  }
}
#access .access #company_detail .company_detail .company_detail_contents .company_map .map_text p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1vw;
}
#access .access #company_detail .company_detail .company_detail_contents .company_map .map_text p img {
  margin-right: 1vw;
  width: 2vw;
}
@media screen and (max-width: 768px) {
  #access .access #company_detail .company_detail .company_detail_contents .company_map .map_text p img {
    width: 4vw;
    margin-bottom: 2vw;
  }
}

footer #company_detail .company_detail {
  background-position: center;
  background-size: cover;
}
footer #company_detail .company_detail .company_detail_contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  width: 90%;
  margin: auto;
  padding: 4vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .company_detail_contents {
    height: 80vw;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents {
    flex-flow: column-reverse;
    height: auto;
    padding: 12vw 0;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_logo {
  text-align: center;
  width: 30%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .company_detail_contents .footer_logo {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_logo {
    width: 45%;
    margin-bottom: 8vw;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_logo img {
  width: 100%;
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text {
    width: 95%;
    margin-bottom: 8vw;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
  height: 15vw;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline {
    margin-bottom: 6vw;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline h4, footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline h2, footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_headline p {
  font-weight: 500;
  letter-spacing: 0.2vw;
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1vw 0;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company {
    padding: 3vw 0;
    margin-bottom: 6vw;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company h5 {
  margin-bottom: 1.5vw;
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table {
  width: 100%;
  border-collapse: 20px 10px;
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr {
  display: flex;
  align-items: flex-start;
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr th, footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr td {
  font-size: 1vw;
  padding: 10px 0px;
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr th:first-child, footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr td:first-child {
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr th, footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr th, footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company table tr td {
    font-size: 4vw;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns {
    flex-flow: column;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a {
  width: 45%;
  display: block;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a {
    width: 65%;
    margin-bottom: 4vw;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a button {
  width: 100%;
  background-color: #FFBFAA;
  border: none;
  padding: 1.5vw;
  border-radius: 50px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a button {
    padding: 3vw 0;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a button i {
  margin-right: 1vw;
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button {
  position: relative;
  padding-right: 4.5vw;
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background-color: #000;
  top: 50%;
  right: 24%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::before {
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::before {
    right: 15%;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button:hover::before {
  width: 12%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button:hover::before {
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button:hover::before {
    width: 12%;
  }
}
footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::after {
  position: absolute;
  content: "";
  width: 3%;
  height: 1px;
  background-color: #000;
  top: 47%;
  right: 23%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::after {
    top: 46%;
    right: 18%;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .footer_company_text .footer_company_btns a:last-child button::after {
    top: 46%;
    right: 15%;
  }
}
footer #company_detail .company_detail .company_detail_contents .company_map {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .company_map {
    width: 100%;
  }
}
footer #company_detail .company_detail .company_detail_contents .company_map iframe {
  width: 100%;
  height: 45vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .company_map iframe {
    height: 80vw;
    margin-bottom: 4vw;
  }
}
footer #company_detail .company_detail .company_detail_contents .company_map .map_text p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1vw;
}
footer #company_detail .company_detail .company_detail_contents .company_map .map_text p img {
  margin-right: 1vw;
  width: 2vw;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .company_detail_contents .company_map .map_text p img {
    width: 4vw;
    margin-bottom: 2vw;
  }
}
footer #footer_menu {
  padding: 4vw 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_menu {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_menu {
    flex-flow: column;
  }
}
footer #footer_menu .footer_logo {
  margin-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_menu .footer_logo {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_menu .footer_logo {
    margin: 0;
  }
}
footer #footer_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_menu ul {
    margin-right: 10vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_menu ul {
    flex-wrap: wrap;
  }
}
footer #footer_menu ul li {
  border-left: 1px solid #000;
  padding: 0 2vw;
  height: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer #footer_menu ul li:first-child {
  border: none;
}
@media screen and (max-width: 768px) {
  footer #footer_menu ul li {
    width: 45%;
    height: 10vw;
    margin-bottom: 4vw;
    border: none;
  }
}
footer #footer_menu ul li a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-decoration: none;
  font-size: 1vw;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_menu ul li a {
    font-size: 2vw;
  }
  footer #footer_menu ul li a span {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_menu ul li a {
    font-size: 4vw;
  }
  footer #footer_menu ul li a span {
    font-size: 2vw;
  }
}
footer #footer_menu .pageTop {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  footer #footer_menu .pageTop {
    display: none;
  }
}
footer #footer_menu .pageTop img {
  width: 100%;
}
footer .copyright {
  padding: 1.5vw 0;
  text-align: center;
  background: #FFCFBF;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding: 4vw 0;
  }
}
footer .copyright p {
  color: #000;
}
footer .footer_sp {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15vw;
}
@media screen and (min-width: 1441px) {
  footer .footer_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  footer .footer_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_sp {
    display: none;
  }
}
footer .footer_sp .footer_sp_tel {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_sp .footer_sp_tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-decoration: none;
  color: #000;
  font-size: 4vw;
}
footer .footer_sp .footer_sp_tel a i {
  font-size: 5vw;
  margin-bottom: 1vw;
}
footer .footer_sp > a {
  width: 30%;
  height: 100%;
  display: block;
  background-color: #F4E2DC;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-decoration: none;
  color: #000;
  font-size: 3.5vw;
}
footer .footer_sp .pageTop {
  width: 20%;
  margin: 0 auto;
  height: 100%;
  background-color: #F9EBBE;
}
footer .footer_sp .pageTop a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  height: 100%;
}
footer .footer_sp .pageTop a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}/*# sourceMappingURL=style.css.map */