@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@500&display=swap');

body {
  background-color: #fff;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
main {
  color: #333;
}
section {
  width: 100%;
  height: 100vh;
}
.inner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.inner p {
  font-size: 0.8rem;
  line-height: 1.5rem;
}
a {
  text-decoration: none;
}
.ttl_bg {
  width: 90%;
  height: 60vh;
  margin: 5vh auto 0 0;
  border-radius: 0 30px 30px 0 ;
  background-color: #002147;
  padding: 5%;
  color: #fff;
}
h1 {
  font-family: 'Kiwi Maru', serif;
  color: #fff;
}
.ttl_bg_txt {
  margin: 0 0 1rem 1rem;
}
.inn_main {
  width: 80%;
  position: absolute;
  top:auto;
  right: 0;
  border-radius: 30px 0 0 30px ;
  background-color: #ccc;
  z-index: 1;
  padding: 8% 5%;
  font-size: .8rem;
  line-height: 1.5rem;
}
.menu_box {
  margin-bottom: 1rem;
}
.menu_box p {
  margin: 5px 0;
  color: #333;
}
.button_fz {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap:1.5rem;
}
.menu_contact {
  margin-top: 20vh;
}
.button {
  width: 300px;
}
.button p {
  margin-top: 5px;
  text-align: right;
}
.button a {
    background: #002147;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    border-radius: 30px;
}
.button a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button a:hover {
  opacity: .8;
}
.button a:hover:after {
  right: 1.4rem;
}
.button_fz .button a {
    letter-spacing: .3rem;
}
@media only screen and (max-width: 767px) {
  .button {
      width: 100%;
}
}
