@charset "utf-8";
/* CSS Document */

.root,
.footer {
  --blue-color: #d98c9e;
  --pink-color: #e4007f;
  --yellow-color: #f5e928;
  --paleblue-color: #faebee;
  --gray-color: #3e3a39;
  --text-color: #333;
}

* {
  box-sizing: border-box;
}

.site_wrap {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}

.display_pc {
  display: block;
}

.display_sp {
  display: none;
}

html {
  width: 100%;
  font-size: 62.5%;
}

body {
  line-height: 24px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: var(--text-color);
  overflow-X: hidden;
  font-size: 1.8rem;
}

img {
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.min {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.gosi {
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.center {
  text-align: center;
}

.header {
  /* height: 154px; */
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}

.header .nav_top {
  height: 100px;
  display: flex;
  align-items: center;
}

.header .home_logo {
  margin-right: auto;
  max-width: 200px;
  width: 19vw;
}

.header .home_logo img {
  width: 100%;
}

.header .nav_menu1 {
  width: 48%;
  padding-right: 20px;
}

.header .nav_menu1 ul {
  display: flex;
  justify-content: space-evenly;
  font-size: min(1.3vw, 1.6rem);
}


.header .header_contact {
  display: flex;
  justify-content: space-evenly;
}

.header .header_contact .name {
  text-align: center;
  font-size: min(1.1vw, 1.4rem);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--text-color);
  height: 48px;
}


.header .header_contact .tel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: min(2vw,2.4rem);
  font-weight: bold;
  text-align: center;
  padding-right: 10px;
}

.header .header_contact .tel_num {
  position: relative;
  padding-left: 24px;
  text-align: left;
}

.header .header_contact .tel_num::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header .header_contact .tel1 .tel_num {
  color: var(--pink-color)
}

.header .header_contact .tel2 .tel_num {
  color: var(--blue-color)
}

.header .header_contact .tel1 .tel_num::before {
  background: url(../img/common/tel_pink.png) center/contain no-repeat;
}

.header .header_contact .tel2 .tel_num::before {
  background: url(../img/common/tel_blue.png) center/contain no-repeat;
}


.header .nav_menu2 {
  background: var(--blue-color);
  height: 54px;
}

.header .nav_menu2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.header .nav_menu2 ul li {
  padding: 0 20px;
  border-right: 1px solid #fff;
}

.header .nav_menu2 ul li:first-of-type {
  border-left: 1px solid #fff;
}

.header .nav_menu2 ul li a {
  color: #fff;
}

/* main {
  margin-top: 100px;
} */

.pankuzu {
  background: #ccc;
  padding: 10px 0;
}

.pankuzu ul {
  display: flex;
  font-size: 1.6rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.pankuzu ul .arrow {
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  margin: 0 10px;
}

.footer {
  background: var(--blue-color);
  padding: 40px 0;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
}

.footer a {
  color: #fff;
  font-size: 1.6rem;
}

.footer .footer_menu1 {
  display: flex;
  justify-content: center;
}

.footer .footer_menu1 li {
  padding: 0 20px;
  margin-bottom: 5px;
}

.footer .footer_menu2 li {
  padding: 0 20px;
  border-right: 1px solid #fff;
  margin-bottom: 40px;
}

.footer .footer_menu2 li:first-of-type {
  border-left: 1px solid #fff;
}

.footer .footer_menu2 {
  display: flex;
  justify-content: center;
}

.footer_tel a {
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}

.footer_tel a::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/tel_white.png) center/contain no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer .tel_attention {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.footer_mail {
  margin-bottom: 30px;
}

.footer_mail a {
  font-size: 1.6rem;
  position: relative;
  padding-left: 30px;
}

.footer_mail a::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/mail_white.png) center/contain no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}



/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  width: 60px;
  height: 60px;
  transition: all 0.3s;
  display: block;
}

#page-top img {
  width: 100%;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}






@media screen and (max-width:768px) {

  .display_pc {
    display: none;
  }

  .display_sp {
    display: block;
  }

  body {
    font-size: 1.6rem;
  }

  /* main {
    margin-top: 60px;
  } */

  .humb {
    width: 60px;
    height: 60px;
    display: block;
    position: fixed;
    right: 0;
  }

  .humb span {
    width: 55%;
    height: 3px;
    background-color: #300;
    display: block;
    margin: 0 auto;
  }

  .humb span:nth-child(1) {
    margin-top: 16px;
    transition: all .2s;
  }

  .humb span:nth-child(2) {
    margin-top: 10px;
  }

  .humb span:nth-child(3) {
    margin-top: 10px;
    margin-bottom: .2rem;
    transition: all .2s;
  }

  .humb.move span:nth-child(1) {
    transform-origin: left;
    transform: rotate(44deg);
    transition: all .2s;
    width: 63%;
  }

  .humb.move span:nth-child(2) {
    opacity: 0;
  }

  .humb.move span:nth-child(3) {
    transform-origin: left;
    transform: rotate(-44deg);
    transition: all .2s;
    width: 63%;
  }

  .humb.move p {
    opacity: 0;
  }

  .header {
    height: 60px;
  }

  .header .home_logo_sp {
    height: 100%;
  }

  .header .home_logo_sp img {
    height: 100%;
  }

  .sp_menu {
    position: absolute;
    transform: translateX(-110vw);
    transition-duration: .5s;
    padding-top: 60px;
    height: calc(100vh - 60px);
    background-color: rgba(216, 239, 239, .95);
    padding: 40px 20px 0;
  }

  .sp_menu.move {
    transform: translateX(0);
    transition-duration: .5s;
  }

  .header .header_contact {
    flex-wrap: wrap;
  }

  .header .header_contact .tel {
    width: 100%;
    margin-bottom: 40px;
    font-size: 2.4rem;
  }

  .sp_menu {
    display: flex;
    flex-direction: column;
  }

  .header .nav_top {
    height: auto;
    flex-wrap: wrap;
    order: 2;
  }

  .header .nav_bottom {
    order: 1;
  }

  .header .nav_menu1 {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }

  .header .nav_menu1 ul {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .header .nav_menu1 ul li {
    width: 100%;
    line-height: 3;
  }

  .header .nav_menu1 ul li a {
    font-weight: bold;
    color: var(--text-color);
    font-size: 1.6rem;
  }

  .header .nav_menu2 {
    background: none;
    width: 100%;
    font-size: 1.6rem;
  }

  .header .nav_menu2 ul {
    flex-wrap: wrap;
  }

  .header .nav_menu2 ul li:first-of-type {
    border: 0;
  }

  .header .nav_menu2 ul li {
    width: 100%;
    border: 0;
    line-height: 3;
  }

  .header .nav_menu2 ul li a {
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.6rem;
  }

  .header .nav_menu2 {
    height: auto;
    text-align: center;
    font-size: 1.4rem;
  }

  .header .header_contact .name {
    height: auto;
    margin: 0 auto;
    font-size: 1.4rem;
  }

  .header .header_contact .tel_num {
    margin: 0 auto;
  }

  .footer .footer_menu1 {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .footer .footer_menu1 li {
    width: 100%;
  }

  .footer .footer_menu2 li a {
    font-size: 4vw;
  }

  .pankuzu ul {
    padding-left: 3%;
    flex-wrap: wrap;
  }



  










}