/**
 * Fonts
 * ============================================================= */
/* media */
/* color */
/* mixin */
@import url("https://fonts.googleapis.com/css?family=Oswald");
@font-face {
  font-family: 'Noto Sans CJK JP';
  src: url(../fonts/NotoSansCJKjp-Regular.otf);
  font-weight: normal;
}
@font-face {
  font-family: 'Noto Sans CJK JP';
  src: url(../fonts/NotoSansCJKjp-Bold.otf);
  font-weight: bold;
}
@font-face {
  font-family: 'Noto Sans CJK JP';
  src: url(../fonts/NotoSansCJKjp-Medium.otf);
  font-weight: 200;
}
/**
 * reset css
 * ============================================================= */
body {
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans CJK JP', sans-serif;
  margin: 0;
  padding: 0;
  color: #555;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #555;
}

img {
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
}

/**
 * header
 * ============================================================= */
.head-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 94%;
  padding: 35px 3%;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  .head-wrapper {
    width: 90%;
    padding: 20px 5%;
  }
}

.head-logo img {
  width: 196px;
}

.head-nav {
  float: right;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
}
@media only screen and (min-width: 769px) {
  .head-nav {
    display: block !important;
  }
}
@media only screen and (max-width: 768px) {
  .head-nav {
    display: none;
    float: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 100px 0;
    background: #0092d7;
    z-index: 999;
  }
}
.head-nav-list {
  float: left;
  margin: 0 12px;
  font-size: 16px;
}
@media only screen and (max-width: 960px) {
  .head-nav-list {
    margin: 0 15px;
  }
}
@media only screen and (max-width: 768px) {
  .head-nav-list {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 0 40px;
    font-size: 21px;
  }
}
@media only screen and (max-width: 540px) {
  .head-nav-list {
    margin: 0 0 30px;
  }
}
.head-nav-list:first-child {
  margin-left: 0;
}
.head-nav-list:nth-child(7) {
  margin-right: 0;
}
.head-nav-list a {
  padding-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .head-nav-list a {
    display: block;
    padding-bottom: 0;
    color: #fff;
  }
}

/**
 * mainvisual
 * ============================================================= */
.mv-bg {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .mv-bg {
    margin: 0;
    padding-top: 0;
  }
}
.mv-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 98%;
  height: 96%;
  background: url("../images/bg-mainvisual.jpg") center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .mv-bg-img {
    width: 100%;
    height: 100%;
    background: url("../images/bg-mainvisual-sp.jpg") left center;
    background-size: cover;
  }
}

.mv-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 454px;
  margin: auto;
  z-index: 99;
}

.mv-bottom {
  display: table;
  width: 100%;
  color: #fff;
  padding: 30px 0;
}
@media only screen and (max-width: 768px) {
  .mv-bottom {
    display: block;
    position: static;
    bottom: 0;
    padding: 10px 0 30px;
  }
}
.mv-bottom a {
  color: #fff;
}
.mv-bottom-ttl {
  display: table-cell;
  vertical-align: middle;
  padding: 0 30px;
  padding-left: 0;
  border-right: 2px solid #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3em;
  font-size: 24px;
  font-weight: normal;
  width: 15%;
}
@media only screen and (max-width: 768px) {
  .mv-bottom-ttl {
    display: block;
    padding: 0;
    border-bottom: 2px solid #fff;
    border-right: none;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 28px;
  }
}
.mv-bottom-txt {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .mv-bottom-txt {
    width: 100%;
    bottom: 0;
  }
}
.mv-bottom-list {
  display: table-cell;
  vertical-align: middle;
  padding: 0 30px;
  width: 65%;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .mv-bottom-list {
    display: block;
    padding: 0;
    width: 100%;
    margin-bottom: 30px;
  }
}
.mv-bottom-list-item {
  display: table;
  margin-bottom: 8px;
}
.mv-bottom-list-item:last-child {
  margin-bottom: 0;
}

.mv-inner {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/**
 * contents
 * ============================================================= */
.content-inner {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.content-wrapper001 {
  position: relative;
}
.content-wrapper002 {
  position: relative;
  top: 0;
  padding: 170px 0 130px;
}
@media only screen and (max-width: 768px) {
  .content-wrapper002 {
    padding: 80px 0;
  }
}
.content-wrapper003 .content-inner {
  position: relative;
}
.content-wrapper004 .content-box {
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .content-wrapper004 .content-ttl {
    margin-bottom: 60px;
  }
}
.content-wrapper005 .content-box-col2 {
  padding: 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .content-wrapper005 .content-box-col2 {
    margin-bottom: 40px;
  }
}
.content-wrapper005 .content-box {
  vertical-align: top !important;
}

/* content title */
.content-ttl {
  position: relative;
  margin-bottom: 90px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3em;
  font-size: 32px;
  text-align: center;
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  .content-ttl {
    margin-bottom: 60px;
    font-size: 26px;
  }
}
.content-ttl:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: url("../images/bg_ttl.png") no-repeat;
  background-size: 100% 100%;
  z-index: -9;
}
@media only screen and (max-width: 768px) {
  .content-ttl:after {
    width: 80px;
    height: 80px;
  }
}
.content-ttl002 {
  font-size: 24px;
  text-align: center;
  color: #555;
  margin-bottom: 20px;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .content-ttl002 {
    font-size: 18px;
  }
}

/* content text */
.content-txt {
  width: 100%;
  max-width: 520px;
  margin: auto;
  font-size: 16px;
  line-height: 2em;
}
@media only screen and (max-width: 768px) {
  .content-txt {
    font-size: 14px;
  }
}

/* content box */
.content-box-list {
  display: table;
}
.content-box-list .content-box-ttl,
.content-box-list .content-box-txt {
  font-size: 14px;
  display: table-cell;
}
@media only screen and (max-width: 768px) {
  .content-box-list .content-box-ttl,
  .content-box-list .content-box-txt {
    font-size: 13px !important;
  }
}
.content-box-list .content-box-ttl {
  font-weight: bold;
  width: 80px;
}
@media only screen and (max-width: 768px) {
  .content-box-list .content-box-txt {
    line-height: 1.8em;
  }
}
.content-box-col2 {
  display: table;
  width: 100%;
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .content-box-col2 {
    display: block;
  }
}
.content-box-col2 .content-box {
  display: table-cell;
  vertical-align: middle;
  width: 44%;
  padding-right: 3%;
}
@media only screen and (max-width: 768px) {
  .content-box-col2 .content-box {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .content-box-col2 .content-box {
    padding-right: 0;
  }
}
.content-box-col2 .content-box:nth-child(even) {
  padding-left: 3%;
}
@media only screen and (max-width: 768px) {
  .content-box-col2 .content-box:nth-child(even) {
    padding-left: 0;
  }
}
.content-box-col5 .content-box {
  float: left;
  width: 176px;
  padding: 15px 30px 15px 0;
}
.content-box-col5 .content-box:nth-child(5n) {
  width: 176px;
  padding-right: 0;
}
@media only screen and (max-width: 768px) {
  .content-box-col5 .content-box {
    width: 47.5%;
    padding: 10px 0 10px 0;
  }
  .content-box-col5 .content-box:nth-child(even) {
    float: right;
  }
}
.content-box-ttl {
  display: block;
  font-size: 24px;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: 200;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .content-box-ttl {
    font-size: 20px;
  }
}
.content-box-txt {
  font-size: 14px;
  line-height: 2em;
}
@media only screen and (max-width: 768px) {
  .content-box-txt {
    font-size: 13px;
    margin-bottom: 40px;
  }
}

/* content textbox */
.content-textbox {
  margin-top: 40px;
  width: 90%;
  max-width: 500px;
  padding: 30px 30px;
  background: rgba(255, 255, 255, 0.92);
}
.content-textbox.ct_left {float: right;}
@media only screen and (max-width: 768px) {
  .content-textbox {
    margin: 30px 0 20px !important;
    width: 90% !important;
    max-width: 768px;
    padding: 5% !important;
  }
}
.content-textbox-img {
  width: 266px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .content-textbox-img {
    width: 200px;
  }
}
.content-textbox-inner {
  border-bottom: 2px dashed #999;
  margin-bottom: 15px;
}
.content-textbox-inner:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.content-textbox-ttl {
  font-weight: bold;
  font-size: 24px;
}
.content-textbox-ttl span {font-size: 13px; display: block;}
@media only screen and (max-width: 768px) {
  .content-textbox-ttl {
    font-size: 18px;
  }
}
.content-textbox-txt {
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 15px;
}
.content-textbox-txt span {color: #FF0004;}
@media only screen and (max-width: 768px) {
  .content-textbox-txt {
    font-size: 13px;
  }
}
.content-textbox-txt .content-box-col2,
.content-textbox-txt .content-box {
  padding: 0;
}

/* banner */
.banner-wrapper {
  padding: 15px 0;
}

.content-inner:after {content: ""; clear: both;display: block;}
/**
 * footer
 * ============================================================= */
.foot-wrapper {
  background: #eaeae0;
  padding: 45px 0 40px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 768px) {
  .foot-wrapper {
    padding: 38px 0 !important;
  }
}

.foot-nav-list {
  float: left;
  padding: 0 16px 0 16px;
  border-right: 2px solid #555;
  margin-top: 8px;
  font-size: 12px;
}
.foot-nav-list:first-child {
  padding: 0 16px 0 0;
}
.foot-nav-list:last-child {
  border-right: none;
}

.foot-copy {
  float: right;
  font-size: 10px;
}
@media only screen and (max-width: 768px) {
  .foot-copy {
    width: 100%;
    text-align: center;
  }
}

/**
 * module
 * ============================================================= */
/* background image */
.bg-img001 {
  background: url("../images/bg-img001.jpg") center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .bg-img001 {
    background: url("../images/bg-img001-sp.jpg") center center;
    background-size: cover !important;
  }
}
.bg-img002 {
  width: 100%;
  padding: 100px 0 60px;
  background: url("../images/bg-img002.jpg") no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .bg-img002 {
    padding: 60px 0 50px !important;
    background: url("../images/bg-img002-sp.jpg") no-repeat !important;
    background-size: cover !important;
  }
}
.bg-img005 {
  width: 100%;
  padding: 100px 0 60px;
  background: url("../images/in_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 768px) {
  .bg-img005 {
    padding: 60px 0 50px !important;
    background: url("../images/in_bg.jpg") no-repeat !important;
    background-size: cover !important;
  }
}

.bg-img003 {
  background: url("../images/bg-img003.png") no-repeat top left;
}
@media only screen and (max-width: 768px) {
  .bg-img003 {
    background: url("../images/bg-img003-sp.png") no-repeat top left !important;
    background-size: 155px auto !important;
  }
}
.bg-img004 {
  position: relative;
}
.bg-img004:after {
  content: "";
  position: absolute;
  top: -130px;
  right: 0;
  width: 118px;
  height: 258px;
  background: url("../images/bg-img004.png") no-repeat;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .bg-img004:after {
    background: url("../images/bg-img004-sp.png") no-repeat;
    background-size: 71px auto !important;
    width: 71px;
    height: 193px;
    top: -100px;
  }
}

/* background color */
.bg-white {
  background: #fff;
  padding: 20px 3%;
  transition: .3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .bg-white {
    padding: 15px 5%;
  }
}

.bg-blown {
  background: #eaeae0;
}
.bg-blown002 {
  background: #f5f5f3;
}

.bg-gray {
  background: #555;
}

/* SPnav button */
.nav-btn {
  position: relative;
  width: 27px;
  float: right;
  z-index: 9999;
}

/* topic button */
.btn001 {
  display: table-cell;
  vertical-align: middle;
  padding: 0 30px;
  border: 2px solid #fff;
  width: 235px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
  font-size: 16px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}
@media only screen and (max-width: 768px) {
  .btn001 {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .btn001 {
    padding: 20px 0;
  }
}

/* PCshop button */
.btn002 {
  display: block;
  border: solid 1px #555;
  background: #FFF;
  padding: 10px;
  color: #555;
  text-align: center;
  font-size: 16px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn003 {
  display: block;
  background: #555;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* SPshop button */
.shop-btn-list {
  display: table;
  float: left;
  width:100%;
}
.shop-btn-list:nth-child(even) {
  float: none;
}
.shop-btn-list-item {
  display: table-cell;
  vertical-align: top;
  text-align: center;
  padding: 20px 0;
  background: #0092d7;
  color: #fff;
}

/* footer button */
.foot-btn {
  display: block;
  width: 100%;
  padding: 20px 0;
  background: #555;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
  font-size: 16px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* topic time */
.date {
  display: table-cell;
  width: 85px;
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .date {
    display: block;
    margin-right: 0;
  }
}

/* topic title */
.title {
  display: table-cell;
  width: 100%;
}

/* active point */
.active {
  border-bottom: 2px solid #0092d7;
}
@media only screen and (max-width: 768px) {
  .active {
    border-bottom: none;
  }
}

/* font-size & font-weight */
.fz-large {
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .fz-large {
    font-size: 14px;
  }
}

.fw-bold {
  font-weight: bold;
}

/* padding */
.pt90 {
  padding-top: 90px;
}
@media only screen and (max-width: 768px) {
  .pt90 {
    padding-top: 60px;
  }
}

.pt135 {
  padding-top: 135px;
}
@media only screen and (max-width: 768px) {
  .pt135 {
    padding-top: 60px;
  }
}

.ptb30 {
  padding: 30px 0;
}
@media only screen and (max-width: 768px) {
  .ptb30 {
    padding: 50px 0;
  }
}

/* margin */
.mb10 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .mb10 {
    margin-bottom: 5px;
  }
}

.mb40 {
  display: block;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .mb40 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .mb50 {
    margin-bottom: 50px;
  }

  .mb60 {
    margin-bottom: 60px;
  }
}
/* display */
.sp-none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

.pc-none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc-none {
    display: block !important;
  }
}

/* map */
.map {
  width: 100%;
  height: 400px;
}
@media only screen and (max-width: 768px) {
  .map {
    height: 300px;
  }
}

/* hover */
.head-nav a:hover,
.foot-nav a:hover,
.mv-bottom-list-item a:hover {
  color: #0092d7;
}
@media only screen and (max-width: 768px) {
  .head-nav a:hover,
  .foot-nav a:hover,
  .mv-bottom-list-item a:hover {
    color: #fff;
  }
}

.topic-btn:hover,
.btn003:hover,
.foot-btn:hover {
  background: #0092d7;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn002:hover {
  color: #FFF;
  border: solid 1px #0092d7;
  background: #0092d7;
  -webkit-transition: all .3s;
  transition: all .3s;
}
@media only screen and (max-width: 768px) {
  .topic-btn:hover,
  .btn002:hover,
  .foot-btn:hover {
    background: #555;
  }
}

.topic-btn:hover {
  border: 2px solid #0092d7;
}
@media only screen and (max-width: 768px) {
  .topic-btn:hover {
    border: 2px solid #fff;
  }
}

/* clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.contact_main { width: 1000px; margin: 120px auto; padding: 30px; box-sizing: border-box; background: rgba(255, 255, 255, 0.92);}


