@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');


html {
  font-size: calc(10 / 16 * 100%);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

:root {
  --bg-color: #ECE5D4;
  --bg-color01: #E0E0E0;
  --main-color: #2D3C79;
  --accent-color: #C49948;
  --font-color: #3B3B3B;
  --font-color01: #FFFFFF;
  --ribbon-color: #0ABAB5;
}

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

body {
  font-family: 'Kiwi Maru', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", serif;
  background-color: var(--bg-color);
  vertical-align: bottom;
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--font-color);
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.cambria {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#contact_button_top {
  position: fixed;
  z-index: 999999999;
  top: 0;
  right: 0;

}


.contact_button {
  text-align: center !important;
  width: 140px;
  height: 50px;
  background-color: var(--main-color);
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.contact_button h1 {
  font-size: 3.0rem !important;
  color: var(--font-color01);
  transform: translateY(-1px);
}

.contact_button h2 {
  font-size: 2.4rem !important;
  display: none;
  color: var(--font-color);
}

.contact_button a {
  text-decoration: none;
}


#contact_button_top:hover .contact_button {
  background-color: white;
  outline: 1px solid var(--accent-color);
  outline-offset: -5px;
  color: var(--font-color);
}

.contact_button:hover h1 {
  display: none;
}

.contact_button:hover h2 {
  display: flex;
}


.contact_button_set {
  width: 220px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;

}

.contact_button_set p {
  color: var(--font-color);
}

.contact_button_set .contact_button {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}


.contact_comment h1 {
  color: var(--font-color);
  font-size: 2.0rem;
}

.contact_button_set:hover .contact_button {
  background-color: white;
  outline: 1px solid var(--accent-color);
  outline-offset: -5px;
  color: var(--font-color);
}


.contact_button_set:hover .contact_button h1 {
  display: none;
}

.contact_button_set:hover .contact_button h2 {
  display: flex;
}

.contact_button_set:hover p {
  color: var(--accent-color);
}



#menu {
  position: fixed;
  background-color: var(--bg-color);
  top: 0;
  right: 140px;
  z-index: 7777777;
  width: 40px;
  height: 50px;
}

#menu span {
  position: absolute;
  z-index: 88888888;
  background-color: var(--font-color);
  width: 32px;
  height: 2px;
  transition: 0.5s;
}

#menu span:nth-of-type(1) {
  left: 4px;
  top: 11px;
}

#menu span:nth-of-type(2) {
  left: 4px;
  top: 22px;
}

#menu span:nth-of-type(3) {
  left: 4px;
  top: 33px;
}

#menu.active span {
  background-color: var(--font-color);
}

#menu.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(45deg);
}

#menu.active span:nth-of-type(2) {
  opacity: 0;
}

#menu.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(-45deg);
}

nav {
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 55555;
  background-color: var(--bg-color);
  outline: 1px solid var(--accent-color);
  outline-offset: -5px;
  width: 140px;
  height: 280px;
  overflow-y: auto;
  /*フェードで出現
  opacity: 0;*/
  /*スライドで出現*/
  /*transform: translateX(100%);*/
  transform: translateY(-150%);
  pointer-events: none;
  transition: 0.5s;
}

nav.active {
  /*opacity: 1;*/
  /*transform: translateX(0);*/
  transform: translateY(0);
  pointer-events: auto;
}

nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
}

nav ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}

nav ul li a {
  display: block;
  text-align: center;
  font-size: 2.8rem;
  color: var(--font-color);
  text-decoration: none;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

@media (min-width:1000px) {
  #menu {
    display: none;
  }

  nav {
    position: fixed;
    background-color: transparent;
    width: auto;
    height: auto;
    transform: translateY(0);
    pointer-events: auto;
    outline: none;
  }

  nav ul {
    width: auto;
    min-height: auto;
    text-align: center;
  }

  nav ul li {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 20px;
  }

  nav ul li a {
    font-size: 2.4rem;
    color: var(--font-color)
  }

  nav ul li a:hover {
    color: var(--accent-color);
  }
}


.button_wrapper {
  margin-top: 40px;
  text-align: center;

}


.confirm-button,
.send-button {
  font-family: 'Kiwi Maru', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", serif;
  padding: 10px 20px;
  text-align: center;
  background-color: var(--main-color);
  color: white;
  border: none;
  border-radius: 0;
  font-size: 1.8rem;
}

.confirm-button:hover,
.send-button:hover {
  background-color: white;
  color: var(--font-color);
  outline: 1px solid var(--accent-color);
  outline-offset: -4px;
}

.back-button {
  font-family: 'Kiwi Maru', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", serif;
  padding: 10px 20px;
  text-align: center;
  background-color: white;
  color: var(--font-color);
  border: none;
  border-radius: 0;
  font-size: 1.8rem;
}

.back-button:hover {
  background-color: var(--accent-color);
  color: var(--main-color);
  outline: 1px solid var(--main-color);
  outline-offset: -4px;
}

footer {
  background-color: var(--main-color);
}

.footer01_container {
  outline: 3px solid var(--accent-color);
  outline-offset: -20px;
  padding-top: 40px;
  padding-bottom: 10px;
}

@media (min-width:650px){
  .footer01_container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width:650px){
  .footer01_container_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer01_set {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width:650px){
  .footer01_set {
    margin-left: 0;
    width: 90%;
  }
}

@media (min-width:1000px){
  .footer01_set {
    width: 65%;
  }
}


.footer_logo {
  width: 90px;
  margin-left: 5%;
}

@media (min-width:450px){
  .footer_logo {
    width: 130px;
    margin-left: 3%;
    margin-right: 5%;
  }
}

@media (min-width:650px){
  .footer_logo {
    width: 130px;
    margin-left: 3%;
    margin-right: 5%;
  }
}

.footer01_container address {
  color: var(--font-color01);
  font-size: 1.4rem;
  width: 180px;
  margin-bottom: 20px;
}

.footer01_container address a{
  color: var(--font-color01);
  text-decoration: none;
}

.footer01_container address a:hover{
  color: var(--accent-color);
}


@media (min-width:450px){
  .footer01_container address {
    width: 240px;
    margin-bottom: 20px;
  }
}

@media (min-width:750px){
  .footer01_container address {
    width: 240px;
    margin-bottom: 0;
  }
}

@media (min-width:1000px){
  .footer01_container address {
    width: 340px;
  }
}

@media screen and (min-width: 1000px) {
  .footer01_container_inner .br-sp {
    display: none;
  }
}

.footer_map {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}

@media (min-width:650px){
  .footer_map {
    width: 300px;
    margin-left: 5%;
    margin-right: 0;
    padding-bottom: 0;
  }
  
}

.footer02_container {
  padding-bottom: 15px;
}

@media (min-width:650px){
  .footer02_container {
    padding-bottom: 10px;
  }
}

.footer02 {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  color: var(--font-color01);
}

@media (min-width:650px){
  .footer02{
    font-size: 1.4rem;
  }
}

.footer02 p {
  color: var(--font-color01);
}

.footer02 a {
  text-decoration: none;
  color: var(--font-color01);
}

.footer02 a:hover {
  text-decoration: none;
  color: var(--accent-color);
}


.inner {
  padding-top: 70px;
  padding-bottom: 80px;
  margin-left: auto;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 400px;
}

@media (min-width:850px) {}

.inner_a {
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

@media (min-width:850px) {

  .inner_a {
    margin-left: 140px;
    margin-right: 140px;
    width: calc(100% - 280px);
  }

}

.inner_b {
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

@media (min-width:850px) {}

.inner_c {
  margin-left: auto;
  margin-right: auto;
  width: 85%;
}

@media (min-width:850px) {}