@charset "UTF-8";
/* BASE COLOR
-------------------------------------------------- */
/* Layout Space
-------------------------------------------------- */
/* 初期化
-------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-wrap: break-word;
  word-break: break-all;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  font-feature-settings: "palt";
}

@font-face {
  font-family: "Yu Gothic";
}
body {
  color: #333;
  font-family: "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, Verdana, "MS PGothic", "ＭＳ　Ｐゴシック", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
  margin-left: 1.5em;
}

input[type=button],
input[type=submit],
input[type=reset],
a {
  color: #333;
  text-decoration: none;
}

img {
  border: 0;
}

address {
  font-style: normal;
}

dl,
ol,
ul,
p {
  line-height: 1.7;
}

dd,
dt,
li,
p {
  overflow-wrap: break-word;
}

/* clearfix */
.clear {
  clear: both;
}

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

/* float */
.lf {
  float: left;
}

.rf {
  float: right;
}

/* font-size */
.mini {
  font-size: 0.85em;
}

/* align */
.t_left {
  text-align: left;
}

.t_center {
  text-align: center;
}

.t_right {
  text-align: right;
}

/* google chrome input button padding */
input[type=button],
input[type=submit],
input[type=reset],
input[type=file]::-webkit-file-upload-button, button {
  padding: 1px 6px;
}

.imgBox {
  font-size: 0;
  line-height: 0;
}
.wrap {
  margin: 0 auto;
  text-align: left;
  width: 1000px;
  position: relative;
}

.inWrap {
  margin: 0 auto;
  text-align: left;
  max-width: 800px;
  position: relative;
}

.table {
  display: table;
  line-height: 1.5;
  margin: 0 auto 25px;
  text-align: left;
  width: 80%;
}

table {
  border-collapse: collapse;
  width: 100%;
}

ul.indent li,
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

ul.indent {
  padding-left: 0;
  text-indent: 0;
}

.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "HG明朝E", serif;
}

.bg01 {
  background: #f2f2f2;
}

.iframe iframe {
  width: 100%;
}

#wrapper {
  min-width: 1000px;
  position: relative;
  z-index: 1;
}

/* flex
-------------------------------------------------- */
.flex {
  display: flex;
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.flexCenter {
  align-items: center;
}

/* header
-------------------------------------------------- */
#header {
  background: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}
#header .logo {
  position: absolute;
  left: 0;
  top: 18.5px;
  width: 186px;
}
#header .hBtn {
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.5s;
  opacity: 1;
}
#header .hBtn img {
  transition: all 0.25s;
  opacity: 1;
}
#header .hBtn img:hover {
  transition: all 0.5s;
  opacity: 0.6;
}

@media screen and (max-width: 667px) {
  #header .wrap {
    height: 57px;
  }
  #header .logo {
    width: 156px;
    left: 10px;
    top: 15.75px;
  }
  #header .hBtn {
    width: 130px;
    right: 57px;
    top: 0;
  }
}
/* globalNav
-------------------------------------------------- */
#globalNav {
  padding-left: 450px;
}
#globalNav ul {
  font-size: 0;
  line-height: 0;
}
#globalNav li {
  display: inline-block;
  font-size: 13px;
  line-height: 67px;
}
#globalNav li a {
  display: block;
  padding: 0 12.5px;
}
#globalNav li ul {
  background: #fff;
  display: none;
  padding: 0 30px;
  margin-left: -30px;
  text-align: center;
  position: absolute;
  top: 67px;
}
#globalNav li:hover ul {
  display: block;
}
#globalNav > ul > li.on li.on a,
#globalNav > ul > li.on > a,
#globalNav > ul > li a:hover {
  color: #4472c4;
}

/*
#globalNav > ul > li.on:nth-child(odd) li.on a,
#globalNav > ul > li.on:nth-child(odd) > a,
#globalNav > ul > li:nth-child(odd) a:hover {
	color: $color_01;
}

#globalNav > ul > li.on:nth-child(even) li.on a,
#globalNav > ul > li.on:nth-child(even) > a,
#globalNav > ul > li:nth-child(even) a:hover {
	color: $color_02;
}
*/
@media screen and (max-width: 667px) {
  #globalNav {
    background: rgba(155, 194, 230, 0.9);
    display: none;
    padding: 78px 0 78px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    color: #fff;
  }
  #globalNav a {
    color: #fff;
  }
  #globalNav ul {
    display: table;
    margin: auto;
    font-size: 0;
    line-height: 0;
  }
  #globalNav li {
    display: block;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 20px;
  }
  #globalNav li a {
    position: relative;
    display: inline;
  }
  #globalNav li a:hover, #globalNav li a.on {
    color: #fff;
  }
  #globalNav li a[href="javascript: void(0);"] {
    pointer-events: none;
  }
  #globalNav li ul {
    background: none;
    display: block;
    padding: 0;
    margin: 20px 0 0 13px;
    text-align: left;
    position: static;
  }
  #globalNav li ul li {
    font-weight: normal;
    margin-bottom: 19px;
  }
  #globalNav li ul li:before {
    content: "-";
    margin-right: 5px;
  }
  #globalNav li:not(.on) a:not([href="javascript: void(0);"])::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5em;
    content: "";
    border-width: 5px 0 5px 8.7px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
  }
  #globalNav li:not(.on) a:not([href="javascript: void(0);"]):hover::after {
    border-color: transparent transparent transparent #4472c4;
  }
  #globalNav > ul > li.on:nth-child(even) li.on a,
  #globalNav > ul > li.on:nth-child(even) > a,
  #globalNav > ul > li:nth-child(even) a:hover {
    color: #4472c4;
  }
}
/* sns
-------------------------------------------------- */
.sns {
  font-size: 0;
  z-index: 1;
}

.sns li {
  display: inline-block;
  margin-left: 16px;
}

.sns li:first-child {
  margin-left: 0;
}

.sns li a {
  background: no-repeat 0 0;
  background-size: 100%;
  display: block;
  height: 37px;
  width: 37px;
}

.sns li:nth-child(1) a {
  background-image: url("../images/fb.png");
}

.sns li:nth-child(2) a {
  background-image: url("../images/tw.png");
}

/* pagetop
-------------------------------------------------- */
#pagetop {
  background: url("../images/pagetop.png") no-repeat 0 0;
  background-size: cover;
  display: none;
  height: 48px;
  width: 48px;
  position: fixed;
  bottom: 3%;
  right: 5.6%;
  z-index: 100;
}

/* footer
-------------------------------------------------- */
#footer {
  position: relative;
}

#footer .wrap {
  height: 250px;
  padding: 25px 0 0;
  text-align: center;
}

#footer:after,
#footer:before,
#footer .wrap:after,
#footer .wrap:before {
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.topbg #footer:after,
.topbg #footer:before {
  content: none;
}

#footer:before,
#footer .wrap:before {
  background-color: #9bc2e6;
  left: 0;
}

#footer:after,
#footer .wrap:after {
  background-color: #4472c4;
  right: 0;
}

#footer a,
#footer {
  color: #fff;
}

#footer address,
#footer .sns,
#footer p,
#footer .logo {
  position: relative;
  z-index: 1;
}

#footer .logo {
  margin-bottom: 20px;
}

#footer .sns {
  margin: 18px 0 25px;
}

#footer address {
  font-size: 12px;
  letter-spacing: 0.2em;
}

/* ---------------------------------------------------------

■■■ SP ■■■■■■■■■■

--------------------------------------------------------- */
img.sp,
br.sp,
span.sp,
.sp {
  display: none !important;
}

br.sp {
  width: 0;
}

.pc {
  display: block !important;
}

span.pc,
img.pc,
br.pc {
  display: inline !important;
}

.post a:hover {
  color: #9bc2e6;
  text-decoration: underline;
}

.post a img {
  transition: all 0.25s;
  opacity: 1;
}

.post a img:hover {
  transition: all 0.5s;
  opacity: 0.6;
}

@media screen and (max-width: 667px) {
  .sp {
    display: block !important;
  }
  span.pc,
  br.pc,
  img.pc,
  .pc {
    display: none !important;
  }
  img.sp,
  br.sp,
  span.sp {
    display: inline !important;
  }
  body {
    font-size: 13px;
  }
  p {
    line-height: 1.5;
  }
  .wrap {
    margin: 0 auto;
    text-align: left;
    width: auto;
  }
  .inWrap {
    width: auto;
  }
  img {
    height: auto;
    width: 100%;
  }
  /* iframe
  -------------------------------------------------- */
  .iframe {
    padding-top: 62.5%;
    position: relative;
  }
  .iframe iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  #wrapper {
    min-width: auto;
  }
  /* menu
  -------------------------------------------------- */
  #menu {
    height: 57px;
    width: 57px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10001;
  }
  #menu:after,
  #menu:before {
    content: "";
    width: 23px;
    position: absolute;
    left: 17px;
  }
  #menu:before {
    border-bottom: 2px solid #333;
    border-top: 2px solid #333;
    height: 15px;
    top: 19px;
  }
  #menu:after {
    background: #333;
    height: 2px;
    top: 27px;
  }
  #menu.on:before {
    background: #fff;
    border: 0;
    height: 2px;
    top: 27px;
    transform: rotate(45deg);
  }
  #menu.on:after {
    background: #fff;
    transform: rotate(-45deg);
  }
  /* sns
  -------------------------------------------------- */
  .sns li {
    margin-left: 20px;
  }
  .sns li:first-child {
    margin-left: 0;
  }
  .sns li a {
    height: 37px;
    width: 37px;
  }
  /* pagetop
  	-------------------------------------------------- 
  	#pagetop {
  		background: url("../images/pagetop.png") no-repeat 0 0;
  		background-size: cover;
  		display: none;
  		height: 48px;
  		width: 48px;
  		position: fixed;
  		bottom: 3%;
  		right: 5.6%;
  		z-index: 100;
  	}
  */
  /* footer
  -------------------------------------------------- */
  #footer .wrap {
    font-size: 11px;
    height: auto;
    padding: 31px 0 6px;
  }
  #footer .logo {
    margin: 0 auto 23px;
    width: 185px;
  }
  #footer .sns {
    display: none;
  }
  #footer address {
    font-size: 9px;
    letter-spacing: 0.2em;
    margin-top: 33px;
  }
}/*# sourceMappingURL=base.css.map */