@charset "UTF-8";
/* wp */
:root :where(.is-layout-flow) > * { 
    margin-block-start: 0;
    margin-block-end: 0;
}
/* ---- */

@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Poppins:wght@600&family=Titillium+Web&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Poppins:wght@600&family=Titillium+Web&display=swap");
#header {
  width: 100%;
  height: 90px;
  background-color: #0082ae;
}

.logo {
  position: absolute;
  left: 30px;
  top: 10px;
  width: 120px;
  font-family: "BIZ UDPGothic", sans-serif;
}

.logo img {
  width: 100%;
  height: 100%;
}

/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #0082ae;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  -webkit-animation-name: gnaviAnime;
          animation-name: gnaviAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
  font-size: 20px;
}

#g-nav li a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#g-nav li a:hover {
  transition: 0.4s;
  font-size: large;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 20px;
  right: 40px;
  z-index: 9999;
  cursor: pointer;
  width: 60px;
  height: 50px;
  color: rgb(255, 255, 255);
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 20px;
  height: 3px;
  border-radius: 2px;
  background-color: rgb(255, 255, 255);
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

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

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    height: 65px;
    background-color: #0082ae;
  }
  #g-nav li {
    text-align: center;
    list-style: none;
    font-size: 13px;
  }
  .logo {
    position: absolute;
    left: 30px;
    top: 7px;
    width: 100px;
    font-family: "BIZ UDPGothic", sans-serif;
  }
  .logo img {
    width: 90%;
    height: 90%;
  }
  .openbtn {
    position: fixed;
    top: 10px;
    right: 40px;
    z-index: 9999;
    cursor: pointer;
    width: 60px;
    height: 50px;
    color: rgb(255, 255, 255);
  }
}
.hero {
  height: calc(100vh - 80px);
}
.hero__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__bgimage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__textarea {
  position: absolute;
  text-align: center;
  width: 500px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
.hero__text {
  color: #333333;
  font-size: 46px;
  margin-bottom: 5px;
  background-color: aliceblue;
}
.hero__last {
  margin: 0 auto;
  width: 400px;
}

@media screen and (max-width: 768px) {
  .hero__container {
    width: 100%;
    height: 100%;
  }
  .hero__bgimage {
    height: 90vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__textarea {
    width: 90%;
    text-align: center;
  }
  .hero__text {
    font-size: 30px;
  }
  .hero__last {
    margin: 0 auto;
    width: 280px;
  }
}
.news {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.news__container {
  width: 70%;
  max-width: 1024px;
  height: 400px;
  margin: 100px auto;
  background-color: rgba(255, 255, 255, 0.1); /* 背景色 */
  border: 1px solid rgba(255, 255, 255, 0.4); /* ボーダー */
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  -webkit-backdrop-filter: blur(20px); /* ぼかしエフェクト */
  backdrop-filter: blur(20px);
  box-shadow: 0 5px 20px rgba(82, 82, 82, 0.5); /* 薄い影 */
}

.section__title--left {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
}

.title__text {
  padding-top: 15px;
  padding-left: 30px;
  font-size: 35px;
  color: #333333;
}

.title__text a {
  color: #333333;
}

.section__underbar {
  width: 100px;
  height: 5px;
  margin-left: 30px;
  background-color: #0EA8FF;
}

/*ニュース1行の周りの余白*/
.slider a {
  display: block;
  background: #fff;
  padding: 30px;
}

/*日付*/
.slider span {
  display: inline-block;
  font-size: 0.8rem;
  padding-left: 10px;
  margin-right: 10px;
  color: #777;
}

/*768px以下の見た目 ※1行のままにしたい場合は不要　*/
@media screen and (max-width: 768px) {
  .news {
    width: 100%;
    height: 600px;
  }
  .news__container {
    width: 90%;
    height: 85%;
    margin-top: 30px;
  }
  .slider {
    padding: 20px;
    background: #fff;
  }
  .slider li {
    border-bottom: 1px dashed #ccc;
  }
  .slider li:last-child {
    border-bottom: none;
  }
  .slider span {
    display: block;
    padding-bottom: 10px;
  }
}
.about {
  width: 100%;
  height: 900px;
  max-height: 900px;
  overflow: hidden;
}
.about__container {
  width: 75%;
  max-width: 1024px;
  margin: 100px auto;
  height: 700px;
  overflow: hidden;
}

.about__title--center {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  text-align: center;
}

.title__text--center {
  font-size: 35px;
  color: #333333;
}

.section__underbar--about {
  width: 200px;
  height: 5px;
  background-color: #0EA8EF;
  margin: 5px auto;
}

.about__content {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: space-around;
}

.about__textbox {
  width: 45%;
}

.about__texttitle {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 35px;
  font-size: 25px;
  font-weight: 600;
  color: #333333;
}

.blue__text {
  color: #0EA8EF;
}

.about__maintext {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
}

.about__imagearea {
  width: 45%;
}

.about__image {
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .about {
    width: 100%;
    height: 1200px;
    margin-bottom: 20px;
  }
  .about__container {
    width: 85%;
    height: 100%;
  }
  .about__content {
    display: block;
  }
  .about__textbox {
    width: 100%;
  }
  .about__texttitle {
    font-size: 24px;
  }
  .about__maintext {
    font-weight: 500px;
  }
  .about__maintext {
    font-size: 15px;
  }
  .about__imagearea {
    width: 100%;
  }
  .about__image {
    display: block;
    width: 90%;
    margin: 30px auto;
  }
}
.service {
  width: 100%;
  height: 900px;
  overflow: hidden;
}
.service__container {
  width: 75%;
  max-width: 1024px;
  margin: 100px auto;
  height: 800px;
  overflow: hidden;
}

.service__title__left {
  width: 100%;
  heidht: 60px;
  margin-bottom: 20px;
  text-align: left;
}

.section__text--left {
  font-size: 35px;
  color: #333;
}

.section__underbar--service {
  width: 180px;
  height: 5px;
  margin-top: 5px;
  background-color: #0EA8EF;
}

.service__content {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: space-around;
}

.service__imagearea {
  width: 45%;
}

.service__image {
  width: 100%;
  margin-top: 70px;
}

.service__textbox {
  width: 45%;
}

.service__texttitle {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 35px;
  font-size: 25px;
  font-weight: 600;
  color: #333;
}

.service__maintext {
  font-size: 17px;
  font-weight: 600;
  color: #333;
}

.morebtn__area {
  width: 100%;
  margin-top: 30px;
}

a.btn_12 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 120px;
  margin: auto;
  padding: 1rem 4rem 1rem 3rem;
  font-weight: bold;
  background: #27acd9;
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}

a.btn_12::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

a.btn_12:hover {
  background: #44c6f2;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .service {
    width: 100%;
    height: 1000px;
  }
  .service__container {
    width: 85%;
    height: 100%;
  }
  .service__content {
    display: block;
    margin-top: 30px;
  }
  .service__textbox {
    width: 100%;
  }
  .service__texttitle {
    font-size: 22px;
  }
  .service__maintext {
    font-weight: 500px;
  }
  .service__maintext {
    font-size: 15px;
  }
  .service__imagearea {
    width: 100%;
  }
  .service__image {
    display: block;
    width: 90%;
    margin: 30px auto;
  }
}
.member {
  width: 100%;
  /*height: 1400px;*/
  height: auto;
  background-color: #22b9ff;
  overflow: hidden;
  padding-bottom: 20px;
}
.member__container {
  width: 80%;
  max-width: 1024px;
  margin: 100px auto;
  overflow: hidden;
}

.member__title--center {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  text-align: center;
}

.service__title--center {
  font-size: 35px;
  color: #ffffff;
}

.section__underbar--member {
  width: 100px;
  height: 5px;
  background-color: #ffffff;
  margin: 5px auto;
}

.member__content {
  width: 100%;
  margin-top: 30px;
}

.member__list {
  width: 95%;
  margin: 0 auto;
  height: 350px;
  margin-top: 10px;
  margin-bottom: 30px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 30px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(0, 191, 255, 0.075);
  box-shadow: rgba(0, 0, 0, 0.3) 2px 8px 8px;
  border: 2px rgba(255, 255, 255, 0.4) solid;
  border-bottom: 2px rgba(40, 40, 40, 0.35) solid;
  border-right: 2px rgba(40, 40, 40, 0.35) solid;
}

.member__imagearea {
  width: 20%;
  border-radius: 50%;
  margin-right: 100px;
}

.member__image {
  width: 100%;
  height: 100%;
  margin-top: 2px;
  border-radius: 50%;
}

.member__textarea {
  width: 50%;
}

.member__name {
  font-size: 25px;
}

.member__work {
  margin-bottom: 20px;
}

.member__snsarea {
  margin-top: 20px;
}

.member__snsarea a {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .member {
    width: 100%;
    /* height: 2300px; */
  }
  .member__container {
    width: 90%;
  }
  .member__list {
    height: 650px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .member__imagearea {
    width: 40%;
    margin: 50px auto;
  }
  .member__image {
    width: 100%;
  }
  .member__textarea {
    width: 95%;
    margin: 0 auto;
  }
}
.sponsor {
  width: 100%;
  height: 2500px;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 50px;
}
.sponsor__container {
  width: 95%;
  max-width: 1024px;
  margin: 80px auto;
}
.sponsor__titlearea {
  width: 100%;
  height: 100px;
  margin-bottom: 50px;
  text-align: center;
}
.sponsor__title {
  font-size: 30px;
  color: #333;
}
.sponsor__underbar {
  width: 600px;
  height: 5px;
  margin: 14px auto;
  background-color: #0EA8EF;
}
.sponsor__attention {
  width: 100%;
  height: 50px;
  margin-bottom: 30px;
}
.sponsor__attention__text {
  font-size: 15px;
  color: #333333;
  text-align: center;
}
.sponsor__content {
  width: 100%;
}

.company__area {
  width: 100%;
  height: 580px;
  padding-top: 50px;
}

.company__column {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}

.company__logobox {
  width: 200px;
  height: 200px;
}

.company__logoimg {
  text-align: center;
  margin: auto;
  width: 100%;
}

.company__textarea {
  width: 90%;
  margin: 0 auto;
  justify-content: space-around;
  margin-bottom: 50px;
}

.company__text {
  font-size: 26px;
  text-align: center;
}

.bigname__area {
  width: 100%;
  height: 1100px;
  padding-top: 50px;
}

.bigname__column {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-around;
}

.bigname__textbox {
  width: 48%;
  height: 70px;
  font-size: 15px;
  text-align: center;
  line-height: 70px;
}

.smallname__area {
  width: 100%;
  height: 300px;
  padding-top: 50px;
}

.smallname__column {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}

.smallname__textbox {
  width: 30%;
  height: 60px;
  text-align: center;
  line-height: 60px;
}

.smallname__longtext {
  width: 100%;
  height: 60px;
}

.smallname__text--long {
  width: 100%;
  line-height: 60px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sponsor__attention__text {
    font-size: 4px;
    padding-top: 30px;
    text-align: center;
  }
  .company__area {
    width: 100%;
    height: 300px;
  }
  .company__column {
    width: 100%;
    height: 100px;
  }
  .company__logobox {
    width: 100px;
    height: 100px;
  }
  .bigname__area {
    width: 100%;
    height: 800px;
  }
  .bigname__column {
    height: 50px;
  }
  .bigname__textbox {
    height: 50px;
    line-height: 50px;
    font-size: 10px;
  }
  .smallname__area {
    height: 200px;
  }
  .smallname__column {
    height: 30px;
  }
  .smallname__textbox {
    height: 30px;
    line-height: 30px;
    font-size: 10px;
  }
  .smallname__longtext {
    width: 100%;
    height: 30px;
  }
  .smallname__text--long {
    line-height: 30px;
    font-size: 9px;
  }
}
.sponsor__three {
  width: 90%;
  height: 200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.sponsor__two {
  width: 90%;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-around;
}

.sponsor__one {
  width: 30%;
}

.sponsor__one--two {
  width: 50%;
  text-align: center;
  align-items: center;
}

.sponsor__one--two--text {
  display: block;
  margin: 0 auto;
  font-size: 20px;
  text-align: center;
  line-height: 100px;
}

.sponsor__one img {
  width: 100%;
  height: 100%;
}

.sponsor__name--big {
  width: 100%;
  margin-bottom: 30px;
}

.sponsor__name__three {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.sponsor__name__one {
  text-align: center;
}

.sponsor__name__one--text {
  font-size: 20px;
  line-height: 40px;
}

.sponsor__name--small {
  width: 100%;
}

.sponsor__name__two {
  width: 100%;
  height: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.sponsor__name--small--textarea {
  width: 50%;
  height: 40px;
  text-align: center;
}

.sponsor__name__two--text {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .sponsor {
    width: 100%;
    height: 2400px;
    height: auto;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .sponsor__container {
    width: 90%;
    margin: 0 auto;
  }
  .sponsor__titlearea {
    height: 150px;
    margin-bottom: 30px;
  }
  .sponsor__title {
    font-size: 20px;
  }
  .sponsor__underbar {
    width: 300px;
  }
  .sponsor__attention {
    width: 100%;
    text-align: center;
  }
  .sponsorattention__text {
    font-size: 20px;
    color: #333333;
    text-align: center;
  }
  .sponsor__three {
    width: 100%;
    height: 100px;
  }
  .sponsor__two {
    width: 100%;
    height: 100px;
  }
  .sponsor__one {
    width: 50%;
  }
  .sponsor__one--two--text {
    font-size: 18px;
  }
  .company__text {
    font-size: 15px;
    text-align: center;
  }
  .sponsor__name--big {
    width: 100%;
  }
  .sponsor__name__three {
    width: 100%;
    height: 80px;
  }
  .sponsor__name__one--text {
    font-size: 12px;
    line-height: 30px;
  }
  .sponsor__name--small {
    width: 100%;
    height: 250px;
  }
  .sponsor__name__two {
    height: 50px;
  }
  .sponsor__name__two--textarea {
    font-size: 10px;
  }
  .sponsor__name__two--text {
    font-size: 11px;
  }
}
.question {
  width: 100%;
  height: 900px;
  overflow: hidden;
  padding: 0;
}

.question__container {
  width: 80%;
  height: 90%;
  margin: 100px auto;
  max-width: 1024px;
  overflow: hidden;
}

.question__titlearea {
  width: 100%;
  margin-left: 50px;
  margin-top: 50px;
  margin-bottom: 80px;
}

.question__title {
  font-size: 35px;
  text-align: left;
  color: #333;
}

.question__underbar {
  width: 220px;
  height: 5px;
  margin-top: 5px;
  background-color: #0EA8FF;
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 92%;
  max-width: 900px;
  margin: 5% auto;
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

.question__listarea {
  width: 90%;
  margin: 0 auto;
}

/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}

.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}

.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

@media screen and (max-width: 768px) {
  .question {
    width: 100%;
    height: 100vh;
  }
  .question__container {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .question {
    width: 100%;
    height: 620px;
    overflow: hidden;
  }
  .question__container {
    width: 90%;
  }
  .title {
    font-size: 0.8rem;
  }
  .box__text {
    font-size: 0.9rem;
  }
}
.contact {
  width: 90%;
  height: 420px;
  background-color: #0EA8EF;
  border-radius: 30px;
  margin: 0 auto;
  padding: 30px;
  margin-bottom: 50px;
}
.contact__container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.contact__text {
  width: 50%;
  margin-top: 30px;
  margin-bottom: 40px;
  color: aliceblue;
}
.contact__title {
  font-size: 27px;
  margin-bottom: 70px;
}
.contact__text {
  font-weight: 600;
}
.contact__imagearea {
  width: 60%;
  margin-top: 50px;
}
.contact__image {
  width: 100%;
}

.bn3637 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 0.3rem solid transparent;
  border-radius: 3rem;
}

.bn37 {
  border-color: transparent;
  background-color: #fff;
  color: #000;
  transition: transform 0.2s cubic-bezier(0.235, 0, 0.05, 0.95);
}

.bn37:hover {
  transform: perspective(1px) scale3d(1.044, 1.044, 1) translateZ(0) !important;
}

@media screen and (max-width: 768px) {
  .contact {
    width: 80%;
    height: 500px;
    margin: 0 auto;
    margin-bottom: 60px;
    height: 400px;
  }
  .contact__container {
    width: 90%;
  }
  .contact__text {
    width: 100%;
    text-align: center;
  }
  .contact__title {
    font-size: 25px;
  }
  .contact__imagearea {
    display: none;
  }
}
.footer {
  width: 100%;
  height: 230px;
  background-color: #0082ae;
}
.footer__container {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.footer__logoarea {
  margin-top: 20px;
  width: 150px;
}
.footer__logoarea img {
  width: 100%;
}
.footer__logo {
  color: white;
}
.footer__navarea {
  margin-top: 20px;
}
.footer__navarea ul li a {
  color: white;
}

.copyright {
  display: block;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__container {
    width: 95%;
  }
  .footer__logoarea {
    margin-top: 20px;
    width: 120px;
  }
  .footer__logoarea img {
    width: 90%;
  }
}
.service__main {
  width: 80%;
  height: 100vh;
  margin: 0 auto;
}

.service__topimg {
  width: 100%;
  height: 200px;
}

.service__topimg img {
  height: 100%;
}

.service__textarea {
  width: 100%;
  padding-top: 100px;
}

.service__pagetitle {
  width: 100%;
  height: 100px;
  font-size: 40px;
  text-align: center;
}

.service__pagetext {
  width: 90%;
  line-height: 40px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
}

.returnButtonArea {
  margin-top: 80px;
  width: 100%;
  height: 80px;
}

.returnButton {
  display: block;
  width: 200px;
  height: 60px;
  border-radius: 10px;
  margin: 0 auto;
  background-color: #0EA8EF;
  cursor: pointer;
}

.returnButton a {
  color: white;
  font-size: 20px;
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "BIZ UDPGothic`", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0EA8EF;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

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

/*　左の動き　*/
#page-top.LeftMove {
  -webkit-animation: LeftAnime 0.5s forwards;
          animation: LeftAnime 0.5s forwards;
}

@-webkit-keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove {
  -webkit-animation: RightAnime 0.5s forwards;
          animation: RightAnime 0.5s forwards;
}

@-webkit-keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}/*# sourceMappingURL=style.css.map */

/* 480px以下の場合のみ改行 */
@media screen and (min-width:480px) {
  .br-480 {
    display: none;
  }
}
/* 480px以下の場合のみ改行しない */
@media screen and (max-width:480px) {
  .br-480r {
    display: none;
  }
}