@charset "UTF-8";

/* ------------------------------------------------------------
   base.css
------------------------------------------------------------ */
/*
* header
* footer
* common
* layer
*/
/* common
------------------------------------------------------------ */

.more__btn {
  border: solid 2px #023894;
  border-radius: 100px;
  max-width: 300px;
  margin: auto;
  transition: all 0.4s ease-in-out;
}

.more__btn:hover {
  background: #023894;
}
.more__btn a {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  color: #023894;
  padding: 12px 20px;
  background: url(../img/arrow_wh2_r.png) no-repeat right 15px center/18px auto;
}

.more__btn a:hover {
  color: #fff;
  background-image: url(../img/arrow_wh_r.png);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

/* header
------------------------------------------------------------ */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 28%;
  padding-left: 2%;
  max-width: 288px;
}
header .logo a {
  transition: all 0.4s ease-in-out;
  display: block;
}
header .logo a:hover {
  opacity: 0.7;
}
header img {
  width: 100%;
}
header .right {
  width: 60%;
  max-width: 600px;
  display: flex;
  justify-content: flex-end;
}
header .right .btn {
  width: 40%;
  transition: all 0.4s ease-in-out;
}
header .right .btn a {
  display: block;
  padding: 30px 40px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 130%;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  background: no-repeat right 15px center / 16px auto;
}
/* header .right .btn a br {
  display: none;
} */
header .right .contact {
  background: #efef52;
}
header .right .contact:hover {
  background: #4d4d4d;
}
header .right .contact a {
  color: #4d4d4d;
  background-image: url(../img/arrow_black_r.png);
}
header .right .contact a:hover {
  color: #fff;
  background-image: url(../img/arrow_wh_r.png);
}
header .right .entry {
  background: #ad674e;
}
header .right .entry:hover {
  background: #f39876;
}
header .right .entry a {
  color: #fff;
  background-image: url(../img/arrow_wh_r.png);
}
header .right .menu__btn {
  width: 20%;
  background: #6cbcd9;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
header .right .menu__btn:hover {
  background: #7dcae6;
}
header .right #nav_toggle {
  /* display: block; */
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10%;
  position: relative;
  z-index: 100;
}
header .right #nav_toggle div {
  position: relative;
  width: 80px;
  height: 32px;
  margin: auto;
}
header .right #nav_toggle span {
  display: block;
  height: 3px;
  background: #fff;
  position: absolute;
  width: 60%;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.4s ease-in-out;
}
header .right #nav_toggle span:nth-child(1) {
  top: 0px;
}
header .right #nav_toggle span:nth-child(2) {
  top: 0;
  bottom: 0;
}
header .right #nav_toggle span:nth-child(3) {
  bottom: 0;
}
header .right nav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #6cbcd9;
  z-index: 99;
}
header .right nav .sitemap {
  max-width: 900px;
  margin: auto;
  width: 90%;
  margin-top: 130px;
  display: flex;
  justify-content: space-around;
  flex-flow: wrap;
}
header .right nav .sitemap li {
  flex-basis: 48%;
  font-size: 1.6rem;
  font-weight: bold;
  background: #549fba url(../img/arrow_wh_r.png) no-repeat left 16px center /
    16px auto;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
header .right nav .sitemap li.sitemap__row {
  flex-basis: 98%;
}
header .right nav .sitemap li:hover {
  background-color: #134197;
}
header .right nav .sitemap li a {
  padding: 16px;
  padding-left: 42px;
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
header .right nav .sitemap li.contact__btnsp {
  background-color: #efef52;
  background-image: url(../img/arrow_black_r.png);
}
header .right nav .sitemap li.contact__btnsp a {
  color: #4d4d4d;
}
header .right nav .sitemap li.contact__btnsp a:hover {
  color: #fff;
}
header .right nav .sitemap li.contact__btnsp:hover {
  background-color: #134197;
  background-image: url(../img/arrow_wh_r.png);
}
header .right nav .sitemap li.entry__btnsp {
  background-color: #ad674e;
  flex-basis: 98%;
}
header .right nav .sitemap li.entry__btnsp:hover {
  background-color: #134197;
}
header .right nav .banner {
  max-width: 900px;
  margin: 30px auto;
  width: 90%;
}
header .right nav .banner ul {
  display: flex;
  justify-content: center;
}
header .right nav .banner li {
  width: 35%;
  margin: 1%;
}
header .right nav .banner a {
  display: block;
  transition: all 0.4s ease-in-out;
}
header .right nav .banner a:hover {
  opacity: 0.7;
}
header.open .right #nav_toggle span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
header.open .right #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
header.open .right #nav_toggle span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

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

footer .entry {
  background: url(../img/entry__bg.png) no-repeat right bottom,
    url(../img/entry__pt.gif) repeat;
  padding: 6% 0;
}
footer .read {
  font-size: calc(100vw / 34);
  font-weight: bold;
  text-align: center;
  color: #134197;
  margin-bottom: 5%;
  position: relative;
}
footer .read::after {
  content: "";
  position: absolute;
  width: 67%;
  height: 5px;
  background: #134197;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}
footer .enyry__btngroup {
  display: flex;
  max-width: 1000px;
  margin: auto;
}
footer .enyry__btngroup .more__btn {
  max-width: inherit;
  flex-basis: 48%;
}
footer .foot {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  width: 90%;
  padding: 4% 0;
}
footer img {
  width: 100%;
}
footer .info {
  width: 30%;
}
footer .logo {
  max-width: 288px;
  margin-bottom: 60px;
}
footer h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}
footer p {
  font-size: 1.4rem;
}
footer .sitemap {
  /* width: 15%; */
  width: 35%;
  /* margin-left: 17%; */
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  margin-right: 2%;
  gap: 20px;
}
footer .sitemap li {
  font-size: 1.6rem;
  font-weight: bold;
  background: url(../img/arrow_bl_r.png) no-repeat left center/16px auto;
  padding-left: 24px;
  margin-bottom: 10px;
}

footer .sitemap li.sub {
  font-size: 1.4rem;
  font-weight: normal;
  margin-left: 23px;
  background: url(../img/arrow_breadcrumb.gif) no-repeat left center/ 4px auto;
  padding-left: 13px;
}
footer .sitemap a {
  color: #4d4d4d;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}
footer .sitemap a:hover {
  color: #134197;
}
footer .banner {
  width: 28%;
}
footer .banner li {
  max-width: 280px;
  margin-bottom: 20px;
}
footer .banner a {
  display: block;
  transition: all 0.4s ease-in-out;
}
footer .banner a:hover {
  opacity: 0.7;
}
footer address {
  background: #6cbcd9;
  font-size: 1.6rem;
  font-style: normal;
  text-align: center;
  color: #fff;
  padding: 10px;
}

/* layer
------------------------------------------------------------ */
.layer header {
  max-width: 1200px;
  margin: 2% auto;
  width: 90%;
}
.layer header .logo {
  padding-left: 0;
}

.subhead {
  background: #f2f2f2;
  padding: 4% 0;
}
.subhead h1 {
  max-width: 300px;
  margin: auto;
}
.subhead img {
  width: 100%;
}
.breadcrumb {
  max-width: 1200px;
  margin: 2% auto 4%;
  width: 90%;
}
.breadcrumb ul {
  display: flex;
  position: relative;
  padding-left: 30px;
}
.breadcrumb ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/breadcrumb.gif) no-repeat left center/20px auto;
  width: 21px;
  height: 20px;
}
.breadcrumb li {
  font-size: 1.6rem;
  font-family: Avenir Next;
  margin-right: 30px;
  white-space: nowrap;
}
.breadcrumb a {
  color: #6cbcd9;
  text-decoration: none;
  position: relative;
}
.breadcrumb a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow_breadcrumb.gif) no-repeat 0 0/4px auto;
  right: -16px;
  top: 3px;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 7px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.layer__contents {
  max-width: 1200px;
  margin: auto;
  width: 90%;
}
.layer__contents p,
.layer__contents div,
.layer__contents li,
.layer__contents th,
.layer__contents td {
  font-size: 1.6rem;
  line-height: 190%;
}
.layer__contents h2.read__blue {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 190%;
  color: #023894;
}
.layer__contents h3.subtit__blue {
  background: #6cbcd9;
  border-radius: 4px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 25px;
  margin-bottom: 50px;
}
.layer__contents .blue_bg {
  background: #c8edfa;
}
.sp {
  display: none;
}

@media screen and (min-width: 1090px) and (max-width: 1300px) {
  /* ▼PC用================================================================== */

  /* ▲PC用================================================================== */
}

@media screen and (min-width: 768px) and (max-width: 1089px) {
  /* ▼Tab用================================================================= */

  /* header
	------------------------------------------------------------ */
  header .right {
    width: 65%;
  }
  header .right .btn a {
    line-height: 120%;
    padding: 20px 30px 20px 20px;
  }
  header .right .btn a br {
    display: inline;
  }

  /* footer
	------------------------------------------------------------ */
  footer .sitemap {
    width: auto;
    margin-left: auto;
    margin-right: 7%;
    flex-direction: column;
  }

  /* ▲Tab用================================================================= */
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  /* ▼SP用================================================================ */
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .more__btn {
    width: 60%;
  }
  .more__btn a {
    font-size: 1.6rem;
  }

  /* header
    ------------------------------------------------------------ */
  header {
    align-items: inherit;
  }
  header .logo {
    width: 60%;
  }
  header .right {
    width: 62px;
    height: 62px;
  }
  header .right .btn {
    display: none;
  }
  header .right .menu__btn {
    width: 100%;
  }
  header .right nav .sitemap {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  header .right nav .sitemap li {
    width: 100%;
    font-size: 1.4rem;
    font-weight: normal;
    background-size: 12px auto;
    background-position: left 12px center;
  }
  header .right nav .sitemap li.sitemap__row {
    flex-basis: 100%;
  }
  header .right nav .sitemap li a {
    padding: 12px;
    padding-left: 32px;
  }
  header .right nav .banner {
    margin-bottom: 30px;
  }
  header .right nav .banner ul {
    flex-direction: column;
  }
  header .right nav .banner ul li {
    width: 70%;
    margin: 0 auto 10px;
  }
  header .right #nav_toggle div {
    width: 50px;
    height: 25px;
  }
  header.open .right #nav_toggle span:nth-child(1) {
    top: 12px;
  }
  header.open .right #nav_toggle span:nth-child(3) {
    top: 2px;
  }

  /* footer
	------------------------------------------------------------ */
  footer .entry {
    background-size: 40% auto, auto;
    padding: 10% 0;
  }
  footer .read {
    font-size: 20px;
    margin-bottom: 9%;
  }
  footer .read::after {
    width: 72%;
  }
  footer .enyry__btngroup {
    flex-direction: column;
    gap: 20px;
  }
  footer .enyry__btngroup .more__btn {
    width: 80%;
  }
  footer .foot {
    flex-direction: column;
    padding: 4% 0;
  }
  footer .info {
    width: auto;
    text-align: center;
  }
  footer .logo {
    max-width: 288px;
    width: 70%;
    margin: auto;
    margin-bottom: 30px;
  }
  footer h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  footer p {
    font-size: 1.4rem;
  }
  footer .sitemap {
    width: auto;
    margin-left: 0;
    margin: 30px 0;
  }
  footer .sitemap {
    flex-direction: column;
  }
  footer .sitemap li {
    font-size: 1.4rem;
    background-size: 12px auto;
    background-position: left 15px center;
    background-color: #f2f2f2;
    border-radius: 5px;
    padding-left: 0;
  }

  footer .sitemap li.sub {
    background-color: #f2f2f2;
    background-position: left 20px center;

    background-size: 4px auto;
    margin-left: 10px;
    font-size: 1.2rem;
  }
  footer .sitemap a {
    padding: 15px;
    padding-left: 35px;
    display: block;
  }

  footer .sitemap li.sub a {
    padding-left: 25px;
  }
  footer .banner {
    width: auto;
  }
  footer .banner li {
    max-width: 280px;
    margin: auto;
    margin-bottom: 10px;
    width: 70%;
  }
  footer .banner a {
    display: block;
    transition: all 0.4s ease-in-out;
  }
  footer .banner a:hover {
    opacity: 0.7;
  }
  footer address {
    font-size: 1.2rem;
  }

  /* layer
	------------------------------------------------------------ */
  .mainimg header .logo {
    margin-left: 4%;
    width: 70%;
  }
  .layer header {
    margin: 4% auto;
    align-items: center;
  }
  .subhead {
    padding: 8% 0;
  }
  .breadcrumb {
    overflow-x: scroll;
    margin-top: 4%;
  }
  .breadcrumb ul {
    align-items: stretch;
    background: #f2f2f2;
    border-radius: 6px;
    padding: 2%;
    padding-left: 40px;
  }
  .breadcrumb ul::before {
    left: 10px;
  }
  .layer__contents p,
  .layer__contents div,
  .layer__contents li,
  .layer__contents th,
  .layer__contents td {
    font-size: 1.4rem;
  }
  .layer__contents h2.read__blue {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .layer__contents h3.subtit__blue {
    font-size: 1.6rem;
    padding: 20px;
    margin-bottom: 30px;
  }

  /* ▲SP用================================================================ */
}

/*# sourceMappingURL=style.css.map */
