:root {
  font-size: 16px;
}

@media screen and (min-width:769px) {}

@media screen and (max-width:768px) {
  :root {
    font-size: 13px;
  }
}

* {
  margin: 0;
  padding: 0;
  border: none;
  /* font-family: "Noto Sans JP", sans-serif; */
  font-optical-sizing: auto;
  /* font-weight: normal;
  font-style: normal; */
  box-sizing: border-box;
  color: #4A4A4A;
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  overflow-x: hidden;
  width: 100vw;
  background-color: #F5F7FA;
}

header,
main,
footer {
  width: 100%;
}

main>section {
  padding: 80px 0;
}

.absolute {
  position: absolute;
}

.hiden {
  display: none;
}

.clear:after {
  content: " ";
  display: block;
  clear: both;
}

.one_cel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width:769px) {}

@media screen and (max-width:768px) {
  main>section {
    padding: 20px 0 50px 0;
  }
}

/* -------- 見出し -------- */
.main_h2 {
  width: 250px;
  margin: 20px 0 30px 15px;
  /* border-bottom: solid 1px #28385E;
    border-right: solid 1px #28385E;
    border-radius: 0 0 15px 0;
    box-shadow: 1px 1px 1px #F3D6CA; */
  padding: 5px 0 5px 5px;
}

.main_h2>h2 {
  font-size: 200%;
}

.main_h2>h3 {
  font-size: 200%;
}

.main_h2>p {
  color: #D79B6C;
  font-style: italic;
  line-height: 10px;
  font-weight: bolder;
}

/* -------- heder -------- */
#hed_section {
  height: 200px;
}

h1 {
  font-size: 100%;
  font-weight: normal;
  position: absolute;
  top: 5px;
  left: 0;
  color: #838383;
  font-size: 85%;
}

h1>a {
  display: inline-block;
  width: 250px;
  height: 250px;
  background: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 5px;
  box-shadow: 13px 13px 2px 0px #808080;
  border: solid 1px #79A1D4;
}

h1>a>span {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #79A1D4;
}

h1>a>span:nth-of-type(1) {
  font-size: 25px;
  padding-top: 65px;
}

h1>a>span:nth-of-type(2) {
  font-size: 50px;
}

#tel {
  width: 300px;
  position: absolute;
  right: 0;
  bottom: 45%;
}

#tel>p {
  width: 100%;
  text-align: center;
  font-size: 80%;
}

#tel>p>a {
  font-size: 29px;
  text-decoration: none;
  color: black;
}

#hed_nav {
  display: flex;
  position: absolute;
  left: 300px;
  bottom: 5px;
}

#hed_nav>div {
  width: 150px;
  text-align: center;
  border-left: solid 1px black;
  padding: 1px;
}

#hed_nav>div:last-of-type {
  border-right: solid 1px black;
}

#hed_nav>div>a,
#hed_nav>div>span {
  font-size: 130%;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

#hed_nav>div>a:hover {
  background-color: #28385e48;
}

.nav_sub {
  position: relative;
}

.nav_gp {
  visibility: hidden;
  position: absolute;
  top: 30px;
  left: -1px;
  width: 300px;
  text-align: left;
  z-index: 10;
}

.nav_sub:hover .nav_gp {
  visibility: visible;
}

.nav_gp>ul {
  list-style: none;
  background: #28385e;
  padding: 10px;
  margin-top: 7px;
}

.nav_gp>ul>li {}

.nav_gp>ul>li>a {
  color: white;
  padding: 10px 5px;
  font-size: 120%;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}

.nav_gp>ul>li>a::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: " ";
  background-color: rgba(255, 255, 255, 0.808);
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: all 500ms;
}

.nav_gp>ul>li>a:hover {
  color: rgba(255, 255, 255, 0.808);
}

.nav_gp>ul>li>a:hover:after {
  transform: scale(1);
}

/* スマホナビ */
#sumaho_main {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* スマホボタン */
.sumaho_button {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 15px;
  right: 5px;
  background-color: #4072b3f2;
  border-radius: 3px;
  transform: translateX(0px);
  transition: all 1000ms;
}

.sumaho_button>span {
  content: " ";
  display: inline-block;
  width: 70%;
  height: 6px;
  background-color: white;
  position: absolute;
  left: 15%;
  border-radius: 10px;
  transition: all 500ms;
}

.sumaho_button>span:nth-of-type(1) {
  top: calc(25% - 3px);
}

.sumaho_button>span:nth-of-type(2) {
  top: calc(50% - 3px);
}

.sumaho_button>span:nth-of-type(3) {
  top: calc(75% - 3px);
}

.sumaho_button.open {
  transform: translateX(-65vw);
}

.sumaho_button.open>span:nth-of-type(1) {
  top: calc(50% - 3px);
  transform: rotate(45deg);
}

.sumaho_button.open>span:nth-of-type(2) {
  opacity: 0;
}

.sumaho_button.open>span:nth-of-type(3) {
  top: calc(50% - 3px);
  transform: rotate(-45deg);
}

#head_sumaho_nuv_main {
  width: 65%;
  height: 100vh;
  position: absolute;
  background: #4072b3f2;
  z-index: 100;
  top: 0;
  right: 0;
  transform: translateX(101%);
  transition: all 1000ms;
  overflow: inherit;
}

#head_sumaho_nuv_main.open {
  transform: translateX(0%);
}

#head_sumaho_nuv {
  width: 100%;
  margin-top: 15px;
}

#head_sumaho_nuv>div {
  border-top: solid 1px white;
}

#head_sumaho_nuv>div>a,
#head_sumaho_nuv>div>p {
  font-size: 150%;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 10px 5px;
  color: white;
  text-decoration: none;
}

.sumaho_nav_sub {
  position: relative;
  border-bottom: solid 1px white;
}

.sumaho_nav_sub::after {
  content: "+";
  display: block;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 200%;
  color: white;
}

.sumaho_nav_sub.open::after {
  content: "-";
}

.sumaho_nav_sub .head_nuv_kanren {
  height: 0px;
  overflow-y: hidden;
  transition: all 500ms;
}

.sumaho_nav_sub.open .head_nuv_kanren {
  height: 250px;
  background-color: #AAD6EC;
}

.head_nuv_kanren>ul {
  list-style: none;
}

.head_nuv_kanren>ul>li {
  border-bottom: solid 1px #5B5B5B;
}

.head_nuv_kanren>ul>li>a {
  font-size: 135%;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #5B5B5B;
  padding: 15px 0 15px 15px;
}

#head_sumaho_tel {
  border-top: solid 1px #EEF9FF;
  margin: 20px 0;
  padding-left: 5px;
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 0;
}

#head_sumaho_tel>h3 {
  font-size: 150%;
  color: #EEF9FF;
}

#head_sumaho_tel>p:nth-of-type(1) {
  padding: 5px 0 10px 0;
}

#head_sumaho_tel>p:nth-of-type(1)>a {
  font-size: 180%;
  text-decoration: none;
  color: #EEF9FF;
}

#head_sumaho_tel>p {
  color: #EEF9FF;
}

@media screen and (min-width:769px) {
  #sumaho_main {
    display: none;
  }
}

@media screen and (max-width:768px) {
  #hed_section {
    height: 100px;
  }

  h1 {
    top: 3px;
    left: 2px;
  }

  h1>span {
    height: 0px;
    display: inline-block;
    overflow: hidden;
  }

  h1>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    box-shadow: 11px 11px 2px 0px #808080;
  }

  h1>a>span:nth-of-type(1) {
    font-size: 20px;
    padding-top: 56px;
  }

  h1>a>span:nth-of-type(2) {
    font-size: 45px;
  }

  #hed_nav {
    display: none;
  }

  #tel {
    display: none;
  }

  #sumaho_main {
    display: block;
  }
}

/* --------- topnimodoru ----- */
#top_return {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 100;
  width: 85px;
  height: 85px;
  background: #ffffffc7;
  border: solid 3px #6088C6;
  background-image: url("/img/return.svg");
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
  border-radius: 50%;
  background-position: 50%;
}

#top_return :hover {
  opacity: 0.5;
}

#top_return>div {
  width: calc(100% - 4px);
  margin: 2px auto;
  height: calc(100% - 4px);
  border: solid 2px white;
}

#top_return>div p:first-of-type {
  text-align: center;
  font-size: 26px;
  font-weight: bolder;
  vertical-align: text-top;
  margin: 0 auto;
  color: white;
}

#top_return>div p:last-of-type {
  text-align: center;
  width: 23px;
  writing-mode: vertical-lr;
  margin: 0 auto;
  color: white;
  padding: 5px 0;
}

@media screen and (min-width:769px) {}

@media screen and (max-width:768px) {
  #top_return {
    bottom: 10%;
    width: 75px;
    height: 75px;
  }
}

/* ------- footer --------- */

footer {
  padding: 0;
  color: #28385E;
}

footer section {
  width: 100%;
  margin: 0 auto;
}

#fotter_logo {
  text-align: center;
  padding: 50px 0;
}

#fotter_logo>a {
  display: inline-block;
  width: 300px;
  background: #ffffff;
  color: #79A1D4;
  border: solid 1px #79A1D4;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 8px 8px 0px 0px #80808052;
  padding: 50px 0;
  font-size: 25px;
}

#fotter_logo>a:hover {
  opacity: 0.9;
  transform: scale(1.01);
}

#fotter_logo a>span {
  font-size: 15px;
  color: #79A1D4;
}

/* SNS  */
#sns_main {
  padding: 100px 0;
  background-image: repeating-linear-gradient(45deg, #978d861c, #978d862e 1px,
      #f6e5d700 0, #f6e5d700 5px),
    repeating-linear-gradient(135deg, #978d8629, #978d8621 1px, #f6e5d700 0, #f6e5d71a 5px);
}

#sns_main h2 {
  font-size: 160%;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 25px 0;
}

#sns_gp {
  display: flex;
  align-items: flex-start;
}

#sns_gp>div {
  border-left: solid 1px black;
  padding: 5px 10px;
  min-height: 160px;
}

#sns_gp>div>h3 {
  text-align: center;
  font-size: 100%;
}

.sns_two_over {
  display: flex;
  align-items: flex-start;
}

.sn_instagram {
  padding: 10px 25px;
}

.sn_instagram img {
  width: 55px;
}

.sn_instagram a {
  width: 100px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #383838;
  font-size: 75%;
}

.sn_line {
  width: 120px;
  line-height: 12px;
  text-align: center;
}

.sn_line>a>img {
  width: 70px;
}

.sn_line>span {
  font-size: 60%;
  display: inline-block;
  width: 100%;
  line-height: 4px;
}

@media screen and (min-width:769px) {}

@media screen and (max-width:768px) {
  #sns_gp {
    flex-wrap: wrap;
  }

  #sns_gp>div {
    border-left: none;
    border-bottom: solid 1px rgb(58, 58, 58);
    width: calc(100% - 20px);
    text-align: center;
    margin: 0 10px;
  }

  .sns_two_over {
    justify-content: space-around;
    flex-wrap: wrap;
  }
}

/* サイトシール */
.siteseel {
  margin: 0 auto;
  padding: 10px 0 10px 5px;
  text-align: left;
  max-width: 1200px;
}

.siteseel>div {
    width: 200px;
    border: solid 1px #00000024;
    padding: 15px 5px;
    border-radius: 5px;
    /* box-shadow: 2px 2px 1px 0px #00000066; */
    text-align: center;
    background: #ffffff6b;
}
.siteseel>div>p {
    font-size: 65%;
    padding: 5px 0;
    margin: 0;
}

#foot_two {
  padding: 25px 0 8px 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

#foot_two>p {
  padding: 0 15px;
}

#foot_two>p>a {
  text-decoration: none;
  font-size: 100%;
  color: #79A1D4;
}

#foot_two a:hover {
  color: #515868;
}

#copylight p {
  width: 100%;
  text-align: center;
  padding: 0 0 25px 0;
}

@media screen and (min-width:769px) {}

@media screen and (max-width:768px) {
  footer {
    border-radius: 0;
    padding: 0px 0 50px 0;
  }

  #fot_sns {
    flex-direction: column;
  }

  #fot_sns>div {
    padding: 10px 5px;
    border-left: none;
    border-top: solid 1px white;
    width: 100%;
  }

  #fot_sns h3 {
    text-align: left;
  }

  #sns_main {
    padding: 10px 0;
  }

  #sns_main h2 {
    font-size: 100%;
    padding: 15px 5px;
  }

  .sns_one {
    justify-content: flex-start;
  }

  .sns_two {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column;
  }

  .sns_two p {
    text-align: left;
    padding: 0px;
    width: 100%;
  }

  #fotter_logo {
    padding: 30px 0;
  }

  #fotter_logo img {
    width: 300px;
  }

  #fotter_logo>a {
    width: 220px;
    font-size: 18px;
  }

  #fotter_logo a>span {
    font-size: 12px;
  }
}

/* ---------- loader --------- */
#loader_main {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #AEC4E5;
}

.loader {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 25%;
  max-width: 25%;
  height: 200px;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.load_p {
  font-size: 270%;
  padding-top: 20px;
  color: #4072B3;
}

@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.ball-grid-pulse {
  width: 90px;
}

.ball-grid-pulse>div:nth-child(1) {
  -webkit-animation-delay: 0.22s;
  animation-delay: 0.22s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}

.ball-grid-pulse>div:nth-child(2) {
  -webkit-animation-delay: 0.64s;
  animation-delay: 0.64s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.ball-grid-pulse>div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
  -webkit-animation-duration: 0.63s;
  animation-duration: 0.63s;
}

.ball-grid-pulse>div:nth-child(4) {
  -webkit-animation-delay: -0.03s;
  animation-delay: -0.03s;
  -webkit-animation-duration: 1.24s;
  animation-duration: 1.24s;
}

.ball-grid-pulse>div:nth-child(5) {
  -webkit-animation-delay: 0.08s;
  animation-delay: 0.08s;
  -webkit-animation-duration: 1.37s;
  animation-duration: 1.37s;
}

.ball-grid-pulse>div:nth-child(6) {
  -webkit-animation-delay: 0.43s;
  animation-delay: 0.43s;
  -webkit-animation-duration: 1.55s;
  animation-duration: 1.55s;
}

.ball-grid-pulse>div:nth-child(7) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.ball-grid-pulse>div:nth-child(8) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-duration: 0.97s;
  animation-duration: 0.97s;
}

.ball-grid-pulse>div:nth-child(9) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.63s;
  animation-duration: 0.63s;
}

.ball-grid-pulse>div {
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-pulse;
  animation-name: ball-grid-pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

@media screen and (max-width:768px) {
  .load_p {
    font-size: 120%;
    text-align: center;
  }
}