@charset "UTF-8";

/* 開発中 */
/*
section {min-height:600px; background:rgba(255,240,192,.3);}
section:nth-child(odd) {background:rgba(255,255,255,.3);}
.container .row {background:rgba(255,240,192,.5);}
*/
/* pagetop */
.pagetop {
  display: inline-block;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  border: 1px solid #666;
  background: rgba(255, 255, 255, .7);
  position: fixed;
  z-index: 20;
}

.pagetop::after {
  content: "";
  position: fixed;
  width: 20px;
  height: 20px;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
  transform: rotate(45deg);
  bottom: 34px;
  right: 40px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}

.pagetop:hover {
  background-color: #86d5da;
  border: 1px solid #fff;
}

.pagetop:hover::after {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.scroll_top .pagetop {
  display: none;
}


/* general */
html,
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1em;
}

body {
  min-width: 1170px;
  padding-top: 88px;
  line-height: 1.7;
}

@media screen and (min-width: 0px) and (max-width: 767px) {

  html,
  body {
    font-size: 14px;
  }

  body {
    min-width: auto;
  }
}


h2 {
  font-size: 28px;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}

/* container custom */
.container {
  max-width: 1170px;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .container {
    min-width: auto;
    max-width: 100%;
  }
}


/* section alternative basecolor */
.ivorybase {
  background: #f1f0ec;
}

.darkbase {
  background: #333333;
  color: #FFF;
}


/* href custom-reset */
a {
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  transition: 0.2s;
}

/* href button */
.btn {
  display: inline-block;
  border: 1px solid #666666;
  width: 400px;
  height: 60px;
  padding: 15px 30px;
  text-align: center;
  vertical-align: middle;
  margin: auto;
  color: #666;
}

.btn:hover {
  color: #FFF;
  background-color: #666;
}

.btn.arrow {
  position: relative;
}

.btn.arrow:after {
  content: "";
  display: inline-block;
  right: 10px;
  top: 22px;
  vertical-align: middle;
  position: absolute;
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  border-left: 1px solid #666;
  border-top: 1px solid #666;
}

.btn:hover.arrow:after {
  border-left: 1px solid #FFF;
  border-top: 1px solid #FFF;
}

.btn.back {
  position: relative;
}

.btn.back:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  display: flex;
  align-items: center;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: rotate(-45deg);
  border-left: 1px solid #666;
  border-top: 1px solid #666;
}

.btn:hover.back:after {
  border-color: #fff;
}

.btn.white {
  border: 1px solid #fff;
  color: #fff;
}

.btn.arrow.white:after {
  border-color: #fff;
}

@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
}


.hover_box .btn_nohover {
  display: inline-block;
  border: 1px solid #666666;
  width: 400px;
  height: 60px;
  padding: 15px 30px;
  text-align: center;
  vertical-align: middle;
  margin: auto;
  color: #666;
  transition: 0.2s;
}

.hover_box:hover .btn_nohover {
  color: #FFF;
  background-color: #666;
  transition: 0.2s;
}

.hover_box .btn_nohover.arrow {
  position: relative;
  transition: 0.2s;
}

.hover_box .btn_nohover.arrow:after {
  content: "";
  display: inline-block;
  right: 10px;
  top: 22px;
  vertical-align: middle;
  position: absolute;
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  border-left: 1px solid #666;
  border-top: 1px solid #666;
  transition: 0.2s;
}

.hover_box:hover .btn_nohover.arrow:after {
  border-left: 1px solid #FFF;
  border-top: 1px solid #FFF;
  transition: 0.2s;
}











/* href underline */

a.underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #333333;
}

a.underline::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

a.underline:hover::after {
  transform: scale(1, 1);
}

.text-link-underline {
	padding: 0 5px;
	color: #333;
	text-decoration: underline;
}

.text-link-underline:hover {
  opacity: 0.8;
}


/* href alpha */
.alpha:hover {
  transition: 0.2s;
  opacity: .7;
}


/* 01.header */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  height: 88px;
  z-index: 10000;
  min-width: 1180px;
  background: #FFF;
}
header .container .row {
  display: flex;
  align-items: flex-end;
}
.header .lead {
  margin: 10px 0;
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
.header .logo {
  padding-bottom: 10px;
}
.header .contact {
  padding: 7px 20px;
  color: #FFF;
  display: inline-block;
  position: relative;
}

.header .contact_icon {
  vertical-align: baseline;
}

.header .download {
  width: 169px;
  margin-right: -4px;
  padding: 7px 20px;
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-align: center;
}

.header .download_icon {
  height:23px;
  width:auto;
  padding-bottom: 1px;
  align-items: center;
  vertical-align: middle;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-nav li {
  margin: 10px 0px 10px 20px;
}

.header .bata {
  display: none;
}

.header-nav {
  align-items: baseline;
}

.hassubmenu {
  position: relative;
  margin: 0px !important;
}

.hassubmenu > a {
  margin: 10px 0px 10px 20px;
}

.hassubmenu .submenu {
  position: absolute;
  background: rgba(255, 255, 255, .9);
  top: 44px;
  left: -35px;
  display: none;
}

.hassubmenu .submenu li {
  margin: 0px;
  border-bottom: 1px dotted #666;
}

.hassubmenu .submenu li:last-child {
  border-bottom: none;
}

.hassubmenu a + .submenu li a {
  display: inline-block;
  width: 225px;
  height: 46px;
  box-sizing: border-box;
  padding: 10px 15px;
  text-align: center;
  color: #666;
}

.hassubmenu .submenu {
  display: none;
}

.hassubmenu:hover .submenu {
  display: block;
}

@media screen and (max-width: 767px) {
  header {
    min-width: auto;
    height: 60px;
  }
  header .container {
    display: flex;
    align-items: center;
  }
  header .container > .row {
    align-items: center;
    height: 60px;
  }

  .header .lead {
    margin: 0 0 5px;
    font-size: 8px;
  }
  .header .logo {
    padding-bottom: 0;
  }
  .header-nav {
    display: none;
  }

  .header .alpha {
    display: none;
  }

  .header .bata {
    display: block;
  }

  body.drawer-open {
    overflow: hidden;
    width: 100%;
  }


  .header-nav-sp {
    width: 60px;
    height: 60px;
    background: #10674d;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 120;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header-nav-sp span {
    height: 1px;
    width: 30px;
    background: #fff;
    position: relative;
    transition: .5s;
  }

  .header-nav-sp span::before,
  .header-nav-sp span::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 30px;
    background: #fff;
    right: 0;
    left: 0;
    margin: auto;
    transition: .5s;
  }

  .header-nav-sp span::before {
    top: -12px;
  }

  .header-nav-sp span::after {
    bottom: -12px;
  }

  .header-nav.is-active .header-nav-sp span {
    background: transparent;
  }

  .header-nav.is-active .header-nav-sp span::before {
    transform: translate(0, 12px) rotate(45deg) translate3d(0, 0, 0);
  }

  .header-nav.is-active .header-nav-sp span::after {
    transform: translate(0, -12px) rotate(-45deg) translate3d(0, 0, 0);
  }

  header .logo img {
    width: 230px;
  }

  .spnav {
    position: relative;
  }

  .i-mail {
    width: 40px;
  }

  .drawer-hamburger {
    width: 2rem;
    padding: 0 15px;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:after,
  .drawer-hamburger-icon:before {
    background-color: #0dacb5;
  }

  .drawer--right.drawer-open .drawer-hamburger {
    right: 0;
    background-color: rgba(13, 172, 181, 0.8);
  }

  .drawer-hamburger-icon {
    margin-top: 0;
  }

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    background-color: #ffffff;
  }

  .drawer-nav {
    position: fixed;
    z-index: 2;
    color: #ffffff;
    background-color: rgba(13, 172, 181, 0.8);
  }

  .drawer-menu {
    height: calc(100% - 60px);
    overflow: scroll;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--right.drawer-open .drawer-nav {
    right: 0;
    width: 100%;
  }

  .drawer--right.drawer-close .drawer-nav {
    right: -100%;
  }

  .drawer-nav ul li {
    padding: 20px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
  }

  .drawer-nav ul li:last-child {
    border-bottom: 0;
  }

  .drawer-nav ul li a {
    color: #ffffff;
    font-weight: 700;
  }

	.drawer-menu .dash {
		padding-left:20px;
		margin: 5px 0 0;
		display: inline-block;
	}
	.drawer-menu .dash:before {
		content:"-";
		margin-right:15px;
	}


  .childlist_term {
    position: relative;
    font-weight: 700;
  }

  .childlist_term::before,
  .childlist_term::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
  }

  .childlist_term::before {
    transform: rotate(90deg);
  }

  .childlist_term.is-active::before {
    display: none;
  }

  .drawer-nav .js-toggle-content ul {
    margin-top: 25px;
    padding-left: 20px;
  }

  .drawer-nav .js-toggle-content ul li {
    border-bottom: 0;
    padding: 0 0 0 15px;
    position: relative;
  }

  .drawer-nav .js-toggle-content ul li::before {
    content: "";
    position: absolute;
    background: #ffffff;
    width: 6px;
    height: 1px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  .drawer-nav .js-toggle-content ul li + li {
    margin-top: 10px;
  }
}


/* 10.footer */
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-nav li {
  margin: 10px 0px 10px 25px;
}

.contact {
  transition: 0.2s;
  background: #0dacb5;
}

.contact a {
  padding: 10px 20px;
  color: #FFF;
  width: 100%;
  display: flex;
  height: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}

.contact_icon {
  width: auto;
  height: 15px;
  margin-right: 10px;
  vertical-align: middle;
}

.download {
  transition: 0.2s;
  background: #B7B7AF;
}

.download a {
  width: 175px; 
  height: 100%;
  margin: 0 auto;
  padding: 7px 20px;
  color: #ffffff;
  background-color: #B7B7AF;
  display: flex;
 
  position: relative;
  justify-content: center;
  align-items: center;
}

.download_icon {
  width: auto;
  height: 35px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer .download_icon {
  padding: 5px 0;
}

.footer-sitemap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-sitemap li {
  padding: 10px 20px;
}

.footer-sitemap li a {
  font-size: 14px;
  color: #666;
}

.footer-sitemap li:first-child {
  border-left: none;
}

.footer-sitemap li {
  padding: 0 20px;
  border-left: 1px solid #666;
}

.copyright.container .col-12 a:first-child {
	border-right: 1px solid #CCCCCC;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .logospace {
    padding: 30px 0;
  }

  .logospace .row {
    width: 100%;
  }

  .footer-nav {
    flex-direction: column;
  }

  .footer-nav li {
    margin: 10px 0;
  }
  
  .footer .hassubmenu > a {
    margin: 10px 0;
  }

  .footer .hassubmenu .submenu {
    z-index: 1;
    left: -76px;
  }

  .footer-nav .contact.alpha {
    width: 80%;
    margin: 15px auto 0;
  }

  .footer-nav .download.alpha a {
    padding: 15px;
  }
  .footer-nav .download.alpha {
    width: 80%;
    margin: 15px auto 0;
  }

  .footer-nav .contact.alpha a {
    padding: 20px;
  }

  .footer-sitemap {
    flex-wrap: wrap;
  }

  .footer-sitemap li {
    margin-bottom: 10px;
    padding: 0 10px;
  }
  
}

@media screen and (min-width: 0px) and (max-width: 507px) {
  .footer-sitemap li:nth-of-type(3) {
    border-left: 0;
  
  }

}


/* Swiper Style */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 10px;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 100%;
  background: transparent;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}

.video-wrap {
  display: block;
  width: 100%;
  height: auto;
}

.video {
  width: 100%;
  height: auto;
}

/* メインビジュアル */
body:not(#frontpage):not(.subpage):not(#top) .mainvisual {
  background: #77bcc3;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin-bottom: 60px;
}

body:not(#frontpage):not(.subpage):not(#top) .mainvisual h1 {
  font-size: 54px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}


@media screen and (min-width: 0px) and (max-width: 767px) {
  body:not(#frontpage):not(.subpage):not(#top) .mainvisual {
    height: 200px;
    margin-bottom: 0px;
  }

  body:not(#frontpage):not(.subpage):not(#top) .mainvisual h1 {
    font-size: 23px;
  }
}

/* セクション */

body:not(#frontpage):not(.subpage) section {
  padding: 40px 0 0;
}

/* 見出し */

body:not(#frontpage):not(.subpage):not(#top) h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

body:not(#frontpage):not(.subpage):not(#top) h3 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 35px;
}

body:not(#frontpage):not(.subpage):not(#top) h3 span {
  position: relative;
}

body:not(#frontpage):not(.subpage):not(#top) h3 span::before,
body:not(#frontpage):not(.subpage):not(#top) h3 span::after {
  content: "";
  position: absolute;
  left: -75px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 55px;
  height: 1px;
  background: #333333;
}

body:not(#frontpage):not(.subpage):not(#top) h3 span::after {
  left: auto;
  right: -75px;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  body:not(#frontpage):not(.subpage):not(#top) h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
  }

  body:not(#frontpage):not(.subpage):not(#top) h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* ぱんくず */

.bread-list {
  padding: 10px 0;
  background: #f1f0ec;
}

.bread-list ul:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.bread-list ul li {
  float: left;
}

.bread-list ul li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}

.bread-list ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
}

.bread-list ul li a {
  color: #333333;
}

/* 背景 */

.bg-water {
  background: #98d2d7;
}


/* swiper-btn */
.swiper-button-prev,
.swiper-button-next {
  display: none;
}

@media screen and (max-width: 767px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
    color: #444444;
  }

  .swiper-button-prev.swiper-button-disabled,
  .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }

  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    background-image: none;
    left: 10px;
    right: auto;
  }

  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    background-image: none;
    right: 10px;
    left: auto;
  }
}

.ads .alpha img {
  width: 100%;
}

.ads .alpha.forSP {
  text-align: center;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi > * {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  height: 35px;
  margin: 7px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.2;
}

.wp-pagenavi .current {
  background: #666;
  color: #fff;
}

.wp-pagenavi .page {
  border: 1px solid #666;
  background: #fff;
  color: #666;
}

.wp-pagenavi .page:hover {
  background: #666;
  color: #fff;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  border: 1px solid #666;
  background: #fff;
  color: #fff;
  text-indent: -10000px;
  overflow: hidden;
}

.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 1px solid #666;
}

.wp-pagenavi .previouspostslink:before {
  left: 7px;
  border-left: 1px solid #666;
  transform: rotate(-45deg);
}

.wp-pagenavi .nextpostslink:before {
  left: -7px;
  border-right: 1px solid #666;
  transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background: #666;
  color: #666;
}

.wp-pagenavi .previouspostslink:hover:before,
.wp-pagenavi .nextpostslink:hover:before {
  border-color: #fff;
}

#top .mainvisual.video {
  padding: 0;
}

#top .overview {
  padding: 0;
}