@charset "UTF-8";
.c-white {
  color: #fff;
}

.c-blue {
  color: #3B9CD9;
}

.c-orange {
  color: #EAA640;
}

.c-brown {
  color: #F29257;
}

.c-gold {
  color: #D6BB5F;
}

.bg-white {
  background-color: #fff;
}

.bg-blue {
  background-color: #3B9CD9;
}

.bg-orange {
  background-color: #EAA640;
}

.bg-brown {
  background-color: #FBE4D4;
}

/****************************************************************************
        エディター検索用

        共通
        ヘッダー
        フッター
        レスポンシブ
****************************************************************************/
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-break: break-all;
}

body {
  transition: 1.4s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  color: unset;
  text-decoration: none;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p, li, div, span {
  font-size: 100%;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.flex {
  display: flex;
}

.jus-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.loading {
  opacity: 0;
}

.scroll {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}

.scroll-left {
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}

.scroll-right {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}

.fadein {
  transform: translateX(0);
  opacity: 2;
  visibility: visible;
}

.contents-wrap {
  width: calc(100% - 60px);
  margin: 0 auto;
}

#contents {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.floating-bg_wrap {
  width: 100%;
  max-width: 960px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  z-index: 9995;
}

.floating-bg_left, .floating-bg_right {
  width: 50%;
  height: 100px;
  text-align: center;
  border: solid 3px #fff;
  transition: 0.4s;
}
.floating-bg_left a, .floating-bg_right a {
  font-size: 28px;
  line-height: 100px;
  font-weight: bold;
  display: block;
  width: 100%;
  height: 100%;
}
.floating-bg_left:hover, .floating-bg_right:hover {
  opacity: 0.8;
}

h2.sec-title {
  text-align: center;
}
h2.sec-title img {
  width: 100%;
  border-radius: 35px;
}

.main-logo {
  max-width: 190px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9995;
}
.main-logo img {
  width: 100%;
}

.menu-icon {
  width: 100px;
  height: 100px;
  background-color: #3B9CD9;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  border: solid 1px #fff;
}
.menu-icon span {
  position: relative;
  width: 50px;
  height: 2px;
  background-color: #fff;
  transition: 0.4s;
}
.menu-icon span:first-child {
  top: 30px;
  left: 25px;
  position: absolute;
}
.menu-icon span:nth-child(2) {
  top: 40px;
  left: 25px;
  position: absolute;
}

p.menu-text {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  top: 55px;
  left: 20px;
  position: absolute;
}

.menu-icon_open span:first-child {
  top: 30px;
  transform: rotate(225deg);
}
.menu-icon_open span:nth-child(2) {
  top: 30px;
  transform: rotate(-225deg);
}
.nav-menu_list {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  background-color: #3B9CD9;
  z-index: 9995;
  transition: 0.4s;
}

.menu-list_open {
  right: 0;
}

nav {
  width: 100%;
  height: 100%;
  position: relative;
}

ul.menu-list_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

li.menu-list {
  margin-right: 0px;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
  font-weight: bold;
}

#footer {
  /*padding: 40px 0 160px;*/

}

p.copyright {
  font-size: 16px;
  font-weight: 400;
}

/**      Tab　以下      **/
@media screen and (max-width: 780px) {
  .pc_part {
    display: none;
  }
  .contents-wrap {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .floating-bg_wrap {
    width: 100%;
    max-width: 960px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    z-index: 9995;
  }
  .floating-bg_left, .floating-bg_right {
    width: 50%;
    height: 70px;
  }
  .floating-bg_left a, .floating-bg_right a {
    font-size: 20px;
    line-height: 70px;
  }
  .main-logo {
    max-width: 120px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9995;
  }
  .main-logo img {
    width: 100%;
  }
  .menu-icon {
    width: 70px;
    height: 70px;
  }
  .menu-icon span {
    position: relative;
    width: 35px;
    height: 2px;
    background-color: #fff;
    transition: 0.4s;
  }
  .menu-icon span:first-child {
    top: 15px;
    left: 17px;
    position: absolute;
  }
  .menu-icon span:nth-child(2) {
    top: 25px;
    left: 17px;
    position: absolute;
  }
  p.menu-text {
    font-size: 14px;
    top: 35px;
    left: 12px;
  }
  .menu-icon_open span:first-child {
    top: 15px;
  }
  .menu-icon_open span:nth-child(2) {
    top: 15px;
  }
  .nav-menu_list {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #3B9CD9;
    z-index: 9995;
    transition: 0.4s;
  }
  .menu-list_open {
    right: 0;
  }
  nav {
    width: 100%;
    height: 100%;
    position: relative;
  }
  ul.menu-list_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  li.menu-list {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 30px;
  }
  #footer {
    padding: 0;
    margin-top: -250px;
  }
  p.copyright {
    font-size: 12px;
  }
}
/**      SP　以下      **/