@charset "UTF-8";
/* フォント読込 */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #333333;
  width: 100%;
  background-size: 100%;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: normal;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-y: hidden;
}

body.no_scroll {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body div, body h1, body h2, body h3, body h4, body h5, body p, body ol, body ul {
  margin: 0;
  padding: 0;
}

body li {
  list-style: none;
}

body a {
  text-decoration: none;
  color: #333333;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body img {
  vertical-align: bottom;
}

body .grid_ctn {
  display: -ms-grid;
  display: grid;
}

body .flex_ctn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

body .btn {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body .base_width {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto 0;
}

body .pc_only {
  display: block;
}

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

body .pc_tab_only {
  display: block;
}

@media screen and (max-width: 480px) {
  body .pc_tab_only {
    display: none;
  }
}

body .sp_tab_only {
  display: none;
}

@media screen and (max-width: 768px) {
  body .sp_tab_only {
    display: block;
  }
}

body .sp_only {
  display: none;
}

@media screen and (max-width: 480px) {
  body .sp_only {
    display: block;
  }
}

body .js-animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}

body .js-animation.slide-from-top {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

body .js-animation.slide-from-right {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

body .js-animation.slide-from-bottom {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

body .js-animation.slide-from-left {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

body .js-animation.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

body .img_zoom_ctn {
  overflow: hidden;
}

body .img_zoom_ctn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 1.5s ease;
  transition: -webkit-transform 1.5s ease;
  transition: transform 1.5s ease;
  transition: transform 1.5s ease, -webkit-transform 1.5s ease;
  /* ゆっくり変化させる */
}

body .img_zoom_ctn img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  /* 拡大 */
  cursor: pointer;
}

body .inline_block {
  display: inline-block;
}

body #top_button_icon {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 20;
  cursor: pointer;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*このクラスが付与されると表示する*/
}

body #top_button_icon.active {
  opacity: 1;
  visibility: visible;
}

body #top_button_icon:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0.9;
}

body #top_button_icon img {
  width: 100%;
}

body .back_illust_1 {
  background-image: url("../img/back_illust_pc_1.png");
  background-size: 100%;
  background-repeat: space;
  background-position: center;
}

@media screen and (max-width: 768px) {
  body .back_illust_1 {
    background-size: 120%;
  }
}

@media screen and (max-width: 480px) {
  body .back_illust_1 {
    background-image: url("../img/back_illust_sp.png");
    background-size: 100%;
  }
}

body .back_illust_2 {
  background-image: url("../img/back_illust_pc_2.png");
  background-size: 100%;
  background-repeat: space;
  background-position: center;
}

@media screen and (max-width: 768px) {
  body .back_illust_2 {
    background-size: 120%;
  }
}

@media screen and (max-width: 480px) {
  body .back_illust_2 {
    background-image: url("../img/back_illust_sp.png");
    background-size: 100%;
  }
}

body .back_illust_3 {
  background-image: url("../img/back_illust_pc_3.png");
  background-size: 100%;
  background-repeat: space;
  background-position: top;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  body .back_illust_3 {
    background-size: 110%;
  }
}

@media screen and (max-width: 480px) {
  body .back_illust_3 {
    background-image: url("../img/back_illust_sp_2.png");
    background-size: 100%;
  }
}

body header {
  -ms-grid-columns: auto auto 1fr;
      grid-template-columns: auto auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 70;
}

@media screen and (max-width: 768px) {
  body header {
    height: 60px;
  }
}

body header .hb_btn_area {
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 768px) {
  body header .hb_btn_area {
    width: 60px;
    height: 60px;
  }
}

body header .logo_img {
  width: 140px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  body header .logo_img {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  body header .logo_img {
    width: 100px;
  }
}

body header .logo_img img {
  width: 100%;
  padding-bottom: 3px;
}

body header .rsv_btn {
  width: 100%;
  max-width: 400px;
  height: 100%;
  padding: 5px 10px;
  background: #C299BF;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  body header .rsv_btn {
    max-width: 280px;
  }
}

@media screen and (max-width: 480px) {
  body header .rsv_btn {
    max-width: 230px;
  }
}

body header .rsv_btn:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0.8;
}

body header .rsv_btn .grid_ctn {
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: 70px auto;
      grid-template-columns: 70px auto;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  body header .rsv_btn .grid_ctn {
    -ms-grid-columns: 50px auto;
        grid-template-columns: 50px auto;
  }
}

@media screen and (max-width: 400px) {
  body header .rsv_btn .grid_ctn {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

body header .rsv_btn .grid_ctn img {
  width: 100%;
}

@media screen and (max-width: 400px) {
  body header .rsv_btn .grid_ctn img {
    display: none;
  }
}

body header .rsv_btn .grid_ctn p {
  color: #fff;
  font-size: 1.2rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
  line-height: 1.1;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  body header .rsv_btn .grid_ctn p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  body header .rsv_btn .grid_ctn p {
    font-size: 0.95rem;
  }
}

body header .rsv_btn .grid_ctn p::after {
  content: 'Reserve';
  position: absolute;
  bottom: -20px;
  right: -85px;
  color: #fff;
  opacity: 0.2;
  rotate: -10deg;
  font-size: 1.8rem;
  font-weight: normal;
  font-family: "CoalhandLukeTRIAL", sans-serif;
}

@media screen and (max-width: 768px) {
  body header .rsv_btn .grid_ctn p::after {
    right: -58px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  body header .rsv_btn .grid_ctn p::after {
    bottom: -3vw;
    right: -3vw;
    font-size: 1.3rem;
  }
}

body #hb_btn {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  body #hb_btn {
    width: 60px;
    height: 60px;
  }
}

body #hb_btn span,
body #hb_btn span:before,
body #hb_btn span:after {
  content: '';
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #333333;
  position: absolute;
  -webkit-transition: all .5s;
  transition: all .5s;
  /*アニメーション設定*/
}

body #hb_btn span:before {
  bottom: 10px;
}

body #hb_btn span:after {
  top: 10px;
}

body #hb_btn.open span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

body #hb_btn.open span::before {
  bottom: 0;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

body #hb_btn.open span::after {
  top: 0;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

body #menu_content .menu_inner {
  background: #fff;
  width: 400px;
  max-width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -400px;
  z-index: 90;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  overflow: scroll;
  scrollbar-width: none;
}

body #menu_content .menu_inner::-webkit-scrollbar {
  display: none;
}

body #menu_content .menu_inner ul {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  body #menu_content .menu_inner ul {
    margin-top: 60px;
  }
}

body #menu_content .menu_inner ul li {
  border-top: 1px solid #ccc;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
}

body #menu_content .menu_inner ul li:last-of-type {
  border-bottom: 1px solid #ccc;
}

body #menu_content .menu_inner ul li a {
  padding: 15px 5%;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

body #menu_content .menu_inner ul li a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #707070;
  border-right: 2px solid #707070;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 43%;
  right: 5%;
}

body #menu_content .menu_inner .btn_sct {
  background: #F8F4F1;
  padding: 40px 0;
}

body #menu_content .menu_inner .btn_sct .btn_top, body #menu_content .menu_inner .btn_sct .btn_bottom {
  width: 90%;
  margin: 0 auto;
}

body #menu_content .menu_inner .btn_sct .btn_top {
  margin-top: 30px;
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #menu_content .menu_inner .btn_sct .btn_top .btn {
  display: block;
  width: 280px;
  max-width: 50%;
  background: #fff;
  font-weight: bold;
  padding: 20px 0;
  -webkit-box-shadow: 2px 2px 0px 0px #DDDADA;
          box-shadow: 2px 2px 0px 0px #DDDADA;
}

body #menu_content .menu_inner .btn_sct .btn_top .btn img {
  display: block;
  width: 50px;
  margin: 0 auto;
}

body #menu_content .menu_inner .btn_sct .btn_top .btn p {
  text-align: center;
}

body #menu_content .menu_inner .btn_sct .btn_top .btn p:nth-of-type(1) {
  color: #333333;
  font-size: 1rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media screen and (max-width: 480px) {
  body #menu_content .menu_inner .btn_sct .btn_top .btn p:nth-of-type(1) {
    font-size: 0.8rem;
  }
}

body #menu_content .menu_inner .btn_sct .btn_top .btn p:nth-of-type(2) {
  color: #666;
  font-size: 0.7rem;
}

body #menu_content .menu_inner .btn_sct .btn_bottom .btn {
  display: block;
  width: 100%;
  height: 80px;
  padding: 10px 30px 10px 10px;
  margin-bottom: 15px;
}

body #menu_content .menu_inner .btn_sct .btn_bottom .btn:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0.8;
}

body #menu_content .menu_inner .btn_sct .btn_bottom .btn .grid_ctn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

@media screen and (max-width: 768px) {
  body #menu_content .menu_inner .btn_sct .btn_bottom .btn .grid_ctn {
    -ms-grid-columns: 50px auto;
        grid-template-columns: 50px auto;
  }
}

body #menu_content .menu_inner .btn_sct .btn_bottom .btn .grid_ctn img {
  width: 100%;
}

body #menu_content .menu_inner .btn_sct .btn_bottom .btn .grid_ctn p {
  color: #fff;
  font-size: 1.2rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
  line-height: 1.1;
  position: relative;
}

@media screen and (max-width: 768px) {
  body #menu_content .menu_inner .btn_sct .btn_bottom .btn .grid_ctn p {
    font-size: 1rem;
  }
}

body #menu_content .menu_inner .btn_sct .btn_bottom .btn .grid_ctn p::after {
  position: absolute;
  bottom: -20px;
  right: -70px;
  color: #fff;
  opacity: 0.2;
  rotate: -10deg;
  font-size: 1.8rem;
  font-weight: normal;
  font-family: "CoalhandLukeTRIAL", sans-serif;
}

@media screen and (max-width: 768px) {
  body #menu_content .menu_inner .btn_sct .btn_bottom .btn .grid_ctn p::after {
    right: -40px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  body #menu_content .menu_inner .btn_sct .btn_bottom .btn .grid_ctn p::after {
    bottom: -20px;
    right: -70px;
    font-size: 1.7rem;
  }
}

body #menu_content .menu_inner .btn_sct .btn_bottom .inq_btn {
  background: #99B7C2;
}

body #menu_content .menu_inner .btn_sct .btn_bottom .inq_btn .grid_ctn {
  -ms-grid-columns: 30px auto;
      grid-template-columns: 30px auto;
  gap: 20px;
}

body #menu_content .menu_inner .btn_sct .btn_bottom .inq_btn .grid_ctn p::after {
  content: 'Inquiry';
}

body #menu_content .menu_inner .btn_sct .btn_bottom .rsv_btn {
  background: #C299BF;
}

body #menu_content .menu_inner .btn_sct .btn_bottom .rsv_btn .grid_ctn {
  -ms-grid-columns: 70px auto;
      grid-template-columns: 70px auto;
  gap: 8px;
}

body #menu_content .menu_inner .btn_sct .btn_bottom .rsv_btn .grid_ctn p::after {
  content: 'Reserve';
}

body #menu_content.open .menu_inner {
  left: 0;
}

body #menu_content.open #overlay {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 80;
}

body main .p_top_img {
  width: 100%;
  height: 30vw;
  min-height: 300px;
}

body main .p_top_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body main .breadcrumbs {
  margin-top: 10px;
  font-weight: bold;
  padding-left: 30px;
}

@media screen and (max-width: 480px) {
  body main .breadcrumbs {
    padding-left: 10px;
  }
}

body main .breadcrumbs li {
  display: inline-block;
  padding-left: 16px;
  position: relative;
}

@media screen and (max-width: 480px) {
  body main .breadcrumbs li {
    font-size: 0.8rem;
  }
}

body main .breadcrumbs li:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 11px;
  left: 0;
}

@media screen and (max-width: 480px) {
  body main .breadcrumbs li:before {
    top: 7px;
  }
}

body main .breadcrumbs li:first-of-type {
  padding-left: 0;
}

body main .breadcrumbs li:first-of-type:before {
  display: none;
}

body main .p_top_title {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 100px;
  padding-top: 50px;
  padding-bottom: 70px;
  position: relative;
  margin-left: 5vw;
  margin-top: 30px;
}

@media screen and (max-width: 480px) {
  body main .p_top_title {
    margin-left: 0;
    padding-left: 10vw;
  }
}

body main .p_top_title::before {
  content: '';
  display: block;
  width: 180px;
  height: 180px;
  background-image: url("../img/illust_04.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
}

body main .p_top_title h1 {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  body main .p_top_title h1 {
    font-size: 1.4rem;
  }
}

body main .p_top_title p {
  color: #333333;
  opacity: 0.1;
  rotate: -10deg;
  font-size: 2.5rem;
  font-weight: normal;
  font-family: "CoalhandLukeTRIAL", sans-serif;
  white-space: nowrap;
}

body main #btn_sct {
  background: #F8F4F1;
  padding: 80px 0;
  position: relative;
}

body main #btn_sct::before {
  content: '';
  display: block;
  width: 250px;
  height: 250px;
  background-image: url(../img/illust_05.png);
  position: absolute;
  top: -240px;
  right: -50px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  body main #btn_sct::before {
    width: 150px;
    height: 150px;
    top: -140px;
  }
}

body main #btn_sct .btn_top, body main #btn_sct .btn_bottom {
  width: 90vw;
  max-width: 850px;
  margin: 0 auto;
}

body main #btn_sct .btn_top {
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body main #btn_sct .btn_top .btn {
  display: block;
  width: 280px;
  max-width: 50%;
  background: #fff;
  font-weight: bold;
  padding: 20px 0;
  -webkit-box-shadow: 2px 2px 0px 0px #DDDADA;
          box-shadow: 2px 2px 0px 0px #DDDADA;
}

body main #btn_sct .btn_top .btn img {
  display: block;
  width: 50px;
  margin: 0 auto;
}

body main #btn_sct .btn_top .btn p {
  text-align: center;
}

body main #btn_sct .btn_top .btn p:nth-of-type(1) {
  color: #333333;
  font-size: 1rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media screen and (max-width: 480px) {
  body main #btn_sct .btn_top .btn p:nth-of-type(1) {
    font-size: 0.8rem;
  }
}

body main #btn_sct .btn_top .btn p:nth-of-type(2) {
  color: #DBDBDB;
  font-size: 0.7rem;
}

body main #btn_sct .btn_bottom {
  padding-top: 60px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  body main #btn_sct .btn_bottom {
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  body main #btn_sct .btn_bottom {
    padding-top: 40px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

body main #btn_sct .btn_bottom .btn {
  display: block;
  width: 100%;
  height: 80px;
  padding: 10px 30px 10px 10px;
}

body main #btn_sct .btn_bottom .btn:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0.8;
}

body main #btn_sct .btn_bottom .btn .grid_ctn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

@media screen and (max-width: 768px) {
  body main #btn_sct .btn_bottom .btn .grid_ctn {
    -ms-grid-columns: 50px auto;
        grid-template-columns: 50px auto;
  }
}

body main #btn_sct .btn_bottom .btn .grid_ctn img {
  width: 100%;
}

body main #btn_sct .btn_bottom .btn .grid_ctn p {
  color: #fff;
  font-size: 1.2rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
  line-height: 1.1;
  position: relative;
}

@media screen and (max-width: 768px) {
  body main #btn_sct .btn_bottom .btn .grid_ctn p {
    font-size: 1rem;
  }
}

body main #btn_sct .btn_bottom .btn .grid_ctn p::after {
  position: absolute;
  bottom: -20px;
  right: -70px;
  color: #fff;
  opacity: 0.2;
  rotate: -10deg;
  font-size: 1.8rem;
  font-weight: normal;
  font-family: "CoalhandLukeTRIAL", sans-serif;
}

@media screen and (max-width: 768px) {
  body main #btn_sct .btn_bottom .btn .grid_ctn p::after {
    right: -40px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  body main #btn_sct .btn_bottom .btn .grid_ctn p::after {
    bottom: -20px;
    right: -70px;
    font-size: 1.7rem;
  }
}

body main #btn_sct .btn_bottom .inq_btn {
  background: #99B7C2;
}

body main #btn_sct .btn_bottom .inq_btn .grid_ctn {
  -ms-grid-columns: 30px auto;
      grid-template-columns: 30px auto;
  gap: 20px;
}

body main #btn_sct .btn_bottom .inq_btn .grid_ctn p::after {
  content: 'Inquiry';
}

body main #btn_sct .btn_bottom .rsv_btn {
  background: #C299BF;
}

body main #btn_sct .btn_bottom .rsv_btn .grid_ctn {
  -ms-grid-columns: 70px auto;
      grid-template-columns: 70px auto;
  gap: 8px;
}

body main #btn_sct .btn_bottom .rsv_btn .grid_ctn p::after {
  content: 'Reserve';
}

body footer {
  width: 90vw;
  max-width: 850px;
  margin: 0 auto;
  padding: 50px 0 10px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
}

body footer .footer_inner {
  -ms-grid-columns: 105px 1fr 40px;
      grid-template-columns: 105px 1fr 40px;
  gap: 40px 0;
}

@media screen and (max-width: 768px) {
  body footer .footer_inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

body footer .footer_inner .footer_inner_left img {
  width: 105px;
  display: block;
}

@media screen and (max-width: 768px) {
  body footer .footer_inner .footer_inner_left img {
    margin: 0 auto;
  }
}

body footer .footer_inner .footer_inner_center {
  margin-bottom: 20px;
  margin-right: 16px;
  gap: 25px;
  -ms-grid-column-align: center;
      justify-self: center;
}

@media screen and (max-width: 768px) {
  body footer .footer_inner .footer_inner_center {
    -ms-grid-column-align: center;
        justify-self: center;
    margin: 0;
  }
}

body footer .footer_inner .footer_inner_center ul {
  width: 120px;
}

body footer .footer_inner .footer_inner_center li {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

body footer .footer_inner .footer_inner_center .footer_inner_center_right {
  gap: 25px;
}

@media screen and (max-width: 480px) {
  body footer .footer_inner .footer_inner_center .footer_inner_center_right {
    display: block;
  }
}

body footer .footer_inner .footer_inner_right {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  -ms-grid-column-align: end;
      justify-self: end;
}

@media screen and (max-width: 768px) {
  body footer .footer_inner .footer_inner_right {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}

body footer .footer_inner .footer_inner_right img {
  width: 40px;
}

body footer .footer_small {
  text-align: right;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  body footer .footer_small {
    text-align: center;
    margin-top: 30px;
  }
}

body footer .footer_small p {
  padding-top: 5px;
}
/*# sourceMappingURL=common.css.map */