
/*
  common.css
*/
body {
  font-size: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2;
  min-width: 1300px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    min-width: 100%;
  }
}

.sp_item {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_item {
    display: block;
  }
  .pc_item {
    display: none;
  }
}

header {
  background-color: #fff;
  box-shadow: 0px 5px 5px 1px rgb(0 0 0 / 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  header {
    height: 50px;
  }
}

header + * {
  margin-top: 60px;
}
header .logo {
  margin-left: 20px;
  text-align: center;
  line-height: 1;
}
header .logo a {
  display: inline-block;
  width: 180px;
}
header .logo a img {
  width: 100%;
}
header .logo a:hover {
  opacity: 0.7;
}
header .logo span {
  display: block;
  margin: 3px 0 0;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  header .logo {
    display: block;
    line-height: 1.3;
  }
  header .logo a {
    width: 140px;
    margin-top: 3px;
  }
  header .logo span {
    display: block;
    margin: 0;
  }
}
header .hdr_r {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .hdr_r .fontSize {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
header .hdr_r .fontSize dt {
  margin-right: 20px;
}
header .hdr_r ul {
  display: flex;
  align-items: center;
}
header .hdr_r ul li {
  margin-left: 15px;
}
header .hdr_r ul li:first-child {
  margin: 0;
}
header .navBtn {
  background: linear-gradient(to left,#238ea7,#067994);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1em;
  font-weight: bold;
  height: 70px;
  width: 200px;
  padding: 0 50px 0 15px;
  position: relative;
  z-index: 9999;
}
header .navBtn:hover {
  opacity: 0.7;
}
header .navBtn::before {
  content: "";
  display: block;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto 0;
}
header .navBtn::after {
  content: "";
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  border-right: 8px solid transparent;
  width: 0;
  height: 0;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
}
header .navBtn.open::after {
  content: "＋";
  display: block;
  border: none;
  width: auto;
  height: auto;
  font-size: 24px;
  font-weight: bold;
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 18px;
  right: 9px;
}
header .navBtn .navBtn_close,
header .navBtn.open .navBtn_open {
  display: none;
}
header .navBtn.open .navBtn_close {
  display: inline-block;
}
header .navArea {
  background-color: #fff;
  box-shadow: 0px 0px 4px 4px rgb(0 0 0 / 0.2);
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  z-index: 9998;
  overflow-y: auto;
  transform: translateX(410px);
  transition: all 0.3s ease-in-out;
}
header .navArea.open {
  transform: translateX(0);
}
header .rsvBtn a {
  background: linear-gradient(to left,#f2871e,#d66f0a);
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  margin: 20px 20px 0;
  padding: 15px 0;
  width: calc(100% - 40px);
  position: relative;
}
header .rsvBtn a:hover {
  opacity: 0.7;
}
header .rsvBtn a::before {
  content: "";
  display: block;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
header .rsvBtn a::after {
  content: "";
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  border-right: 8px solid transparent;
  width: 0;
  height: 0;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
}
header nav {
  margin-top: 70px;
}
header nav a {
  box-sizing: border-box;
  border-bottom: 1px solid #067994;
  display: block;
  width: 100%;
  color: #000;
  text-decoration: none;
  padding: 15px 20px;
  position: relative;
}
header nav a::before {
  content: "";
  border-top: 2px solid #067994;
  border-right: 2px solid #067994;
  width: 15px;
  height: 15px;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transform: rotate(45deg);
}
header nav a:first-child {
  border-top: 1px solid #067994;
}
@media screen and (max-width: 767px) {
  header .navArea {
    width: 100%;
    transform: translateX(100%);
    padding-bottom: 80px;
  }
  header .navBtn {
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    padding: 0;
  }
  header nav {
    margin-top: 50px;
  }
  header nav a:hover {
    opacity: 1;
  }
  header .navBtn::before {
    background-color: #fff;
    border-radius: 0;
    border: none;
    width: 30px;
    height: 4px;
    top: 0;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .navBtn span {
    background-color: #fff;
    width: 30px;
    height: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .navBtn::after {
    background-color: #fff;
    border: none;
    width: 30px;
    height: 4px;
    top: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .navBtn.open::before {
    transform: rotate(45deg);
    bottom: 0;
  }
  header .navBtn.open span {
    transform: rotate(-45deg);
  }
  header .navBtn.open::after {
    opacity: 0;
  }
}

.access {
  display: flex;
  align-items: center;
  height: 500px;
}
.access .txt_wrap {
  background-color: #666;
  box-sizing: border-box;
  padding: 50px;
  width: 50%;
  height: 100%;
}
.access .txt_wrap h2 {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 1.8em;
  padding: 20px 10px;
  margin-bottom: 30px;
}
.access .txt_wrap p {
  color: #fff;
}
.access iframe {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access {
    display: block;
    height: auto;
  }
  .access .txt_wrap {
    padding: 40px;
    width: 100%;
    height: auto;
  }
  .access .txt_wrap h2 {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 1.8em;
    padding: 20px 10px;
    margin-bottom: 30px;
  }
  .access iframe {
    width: 100%;
    height: 300px;
  }
}

footer {
  background-color: #055f74;
  color: #fff;
  padding: 50px 0;
}
.ftr_wrap {
  display: flex;
  flex-wrap: wrap;
}
.ftr_text {
  box-sizing: border-box;
  border-right: 1px solid #e3faff;
  padding-right: 50px;
  margin-right: 50px;
  width: 350px;
}
.ftr_text p {
  margin-top: 10px;
}
.ftr_text p:first-child {
  margin-top: 0;
}
.ftr_text p span {
  font-size: 0.8em;
  display: block;
}
.sitemap {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
}
.sitemap li {
  box-sizing: border-box;
  width: 50%;
}
.sitemap li a {
  color: #fff;
  position: relative;
  padding-right: 20px;
}
.sitemap li a::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 6px;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: 10px;
  height: 1px;
  transform: rotate(-45deg);
}
.sitemap li a::after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 6px;
  right: 0;
  margin: auto 0;
  width: 10px;
  height: 1px;
  transform: rotate(45deg);
}
footer address {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
  .ftr_wrap {
    display: block;
  }
  .ftr_text {
    border-right: none;
    border-bottom: 1px solid #e3faff;
    padding: 0 20px 30px;
    margin: 0 0 30px;
    width: 100%;
  }
  .ftr_text p a {
    color: #fff;
  }
  .sitemap {
    width: 100%;
  }
  footer address {
    margin-top: 30px;
  }
}

.snsBnr {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 9990;
}
.snsBnr div {
  background-color: #fff;
  border-radius: 10px 0 0 10px;
  margin-top: 10px;
}
.snsBnr div i {
  font-family: "Font Awesome 6 Brands";
  color: #fff;
  font-size: 25px;
  width: 25px;
  text-align: center;
  vertical-align: middle;
  margin-right: 15px;
}
.snsBnr div {
  width: 180px;
}
.snsBnr div a {
  border-radius: 10px 0 0 10px;
  color: #fff;
  display: block;
  font-size: 1.2em;
  padding: 10px 10px 10px 20px;
}
.snsBnr div a:hover {
  opacity: 0.7;
}
.snsBnr_line a {
  background: #00b900;
}
.snsBnr_inst a {
  background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
}
.snsBnr_fb a {
  background: #1877f2;
}
@media screen and (max-width: 767px) {
  .snsBnr div {
    width: 40px;
  }
  .snsBnr div a {
    padding: 5px 10px;
  }
}

.goTop {
  background-color: #238ea7;
  border-radius: 60px 60px 0 0;
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 120px;
  height: 60px;
}
.goTop::before {
  content: "";
  background-color: #fff;
  border-radius: 3px;
  width: 30px;
  height: 5px;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 22px;
  margin: 0 auto;
  transform: rotate(-35deg);
}
.goTop::after {
  content: "";
  background-color: #fff;
  border-radius: 3px;
  width: 30px;
  height: 5px;
  position: absolute;
  bottom: 25px;
  left: 22px;
  right: 0;
  margin: 0 auto;
  transform: rotate(35deg);
}
@media screen and (max-width: 767px) {
  .goTop {
    border-radius: 30px 30px 0 0;
    width: 60px;
    height: 40px;
    right: 10px;
  }
  .goTop::before {
    width: 15px;
    height: 3px;
    bottom: 15px;
    left: 0;
    right: 11px;
  }
  .goTop::after {
    width: 15px;
    height: 3px;
    bottom: 15px;
    left: 11px;
    right: 0;
  }
}

.inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
  }
}

p a {
  color: #067994;
}
p a:hover {
  text-decoration: underline;
}

.txt_c {
  text-align: center;
}

.btn {
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  margin: 20px 20px 0;
  padding: 15px 0;
  width: calc(100% - 40px);
  position: relative;
}
.btn:hover {
  opacity: 0.7;
}
.btn::before {
  content: "";
  display: block;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.btn::after {
  content: "";
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  border-right: 8px solid transparent;
  width: 0;
  height: 0;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
}
.btn01 {
  background: linear-gradient(to left,#f2871e,#d66f0a);
}
.btn02 {
  background: linear-gradient(to left, #238ea7, #067994);
}

.col2 {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 0 -20px;
}
.col2_item {
  width: 490px;
  margin: 20px 0 0 20px;
}

.col3 {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 0 -20px;
}
.col3_item {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 5px 5px 5px 1px rgb(0 0 0 / 0.2);
  display: block;
  width: 320px;
  margin: 20px 0 0 20px;
}
a.col3_item:hover {
  opacity: 0.7;
}
.col3_item_img {
  height: 200px;
}
.col3_item_img img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.col3_item_text {
  padding: 15px 10px;
}
@media screen and (max-width: 767px) {
  .col3_item {
    width: 100%;
  }
}