@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/mplus1p.css);
@import url(http://fonts.googleapis.com/earlyaccess/sawarabimincho.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

body {
  background: #2b6c97;
  color: #333;
  font-size: 13px;
  line-height: 1.6em;
  font-family: "Mplus 1p";
}

/*----- ul -----*/
article ul {
  padding: 10px 30px;
  margin: 1.5em 0;
  border-left: 8px solid #91bac6;
  background: #f5f5f5;
}

article ul li {
  padding: 10px 0;
}

article ul li:before {
  content: "●";
  margin-right: 8px;
  color: #91bac6;
}

/*----- ol -----*/
article ol {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0 20px;
  background: #f5f5f5;
  border-left: solid 8px #3b5998;
}

article ol li {
  position: relative;
  line-height: 1.5em;
  padding: 10px 30px;
}

article ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  border: solid 2px #3b5998;
  color: #3b5998;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*----- blockquote -----*/
blockquote {
  background: #8dc1d3;
  padding: 3em 1em;
  position: relative;
  color: #fff;
  text-align: center;
}

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #3b5998;
  position: absolute;
}

blockquote:before {
  content: "“";
  left: 10px;
  top: 0;
  line-height: 1em;
}

blockquote:after {
  content: "“";
  right: 10px;
  bottom: 0;
}

/*----- table -----*/
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 30%;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 5px solid #fff;
  background: #8dc1d3;
}

table td {
  padding: 10px;
  vertical-align: top;
  border: 5px solid #fff;
  background: #f5f5f5;
}

/*----- other -----*/
pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
  display: inline-block;
  border: 3px solid #eee;
  margin: 1em 0;
  padding: 1em;
}

strong {
  color: #b42b59;
  padding: 2px;
}

strong,
b {
  font-size: 100%;
}

em {
  color: #3b5998;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
  background: #d9d9d9;
  margin-bottom: 3px;
}

address {
  background: #a9cedb;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

[class^="align"] img {
  display: inline-block;
}

/*----- 見出し -----*/
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
  font-family: "Sawarabi Mincho";
  margin-bottom: 20px;
}

/* +下層用 */
h2,
.under h1 {
  position: relative;
  margin: 0 -58px 40px;
  padding: 15px 58px;
  background-color: #00416a;
  text-align: center;
  font-size: 22px;
  color: #fff;
}

h2:before,
h2:after,
.under h1:before,
.under h1::after {
  content: "";
  position: absolute;
  bottom: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

h2:before,
.under h1:before {
  left: 0;
  border-width: 0 18px 18px 0;
  border-right-color: #bbb;
}

h2:after,
.under h1::after {
  right: 0;
  border-width: 18px 18px 0 0;
  border-top-color: #bbb;
}

h3,
.under h2 {
  margin-bottom: 40px;
  padding: 10px;
  border-top: 2px solid #00416a;
  border-bottom: 2px solid #ececec;
  font-size: 20px;
}

h4,
.under h3 {
  margin-bottom: 30px;
  padding: 6px 20px;
  background-color: #edf5f9;
  font-size: 16px;
  border-left: 5px solid #00557f;
}

.under h3 {
  margin-top: 40px;
}

h5 {
  margin-bottom: 30px;
  padding: 6px 20px;
  background: #edf5f9;
  font-size: 16px;
}

h6 {
  font-size: 14px;
  font-weight: bold;
  border: solid 1px #bbb;
  padding: 10px 15px;
}

img {
  max-width: 100%;
  font-weight: bold;
}

/*----- リンク -----*/
a {
  color: #333;
  display: block;
}

a:hover {
  color: #b42b59;
}

/*■■■■■ 大枠　■■■■■*/
#all {
  max-width: 950px;
  margin: 0 15% 0 auto;
  /*0 auto*/
}

main {
  max-width: 950px;
  margin-bottom: 30px;
}

#sub-area {
  /*min-*/
  width: 160px;

  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}

/*■■■■■ top page　■■■■■*/
/*----- header -----*/
#head {
  background: #fff;
  width: 100%;
}

#head-area {
  width: 950px;
  margin: 0 auto;
  text-align: center;
}

.head-ttl a {
  width: 100%;
  font-family: "Sawarabi Mincho";
  text-align: center;
  font-size: 32px;
  line-height: 1.3em;
  color: #0d4b72;
}

.index .head-ttl a {
  position: absolute;
  top: 30px;
  left: 0;
  font-size: 38px;
  z-index: 99;
}

.head-copy {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 2em;
  font-family: "Sawarabi Mincho";
  font-weight: bold;
}

.index .head-copy {
  font-size: 20px;
  position: absolute;
  top: 550px;
  left: 0;
}

#head-bar {
  width: 100%;
  background-color: rgba(0, 65, 106, 0.95);
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2;
}

.fixed {
  /*ヘッドナビ固定*/
  position: fixed;
  top: 0;
  z-index: 2;
}

#head-bar ul {
  max-width: 960px;
  margin: 0px auto;
  text-align: center;
  display: table;
}

#head-bar ul li {
  display: table-cell;
  text-align: center;
  height: 60px;
  line-height: 60px;
  width: 27%;
}

#head-bar li a {
  color: #fff;
  font-size: 14px;
}

#head-bar li a:hover {
  background: rgba(0, 48, 78, 0.83);
}

.slicknav_menu {
  display: none;
}

/*----- slider -----*/
.vvv-btn {
  width: 100%;
}

#vvv-area {
  width: 950px;
  height: 600px;
  margin: 0 auto;
  position: relative;
}

.white {
  background: url(../images/slider.png) no-repeat;
  width: 950px;
  height: 600px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.bx-wrapper {
  width: 100%;
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

/*----- main -----*/
main article {
  background: #fff;
}

main article img {
  margin: 0 auto 10px;
  display: block;
}

/*----- 本文 -----*/
.topPage-box {
  width: 100%;
  padding: 10px 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  background: #fff;
}

/*----- 下層リンク -----*/
.layout-col {
  width: 100%;
  margin: 30px 0;
}

.layout-col article {
  overflow: hidden;
}

.layout-col article:nth-child(1) {
  background: #dc574e;
}

.layout-col article:nth-child(2) {
  background: #e38c00;
}

.layout-col article:nth-child(3) {
  background: #09715a;
}

.kasou-box {
  color: #fff;
}

.kasou-box>div {
  width: 60%;
  padding: 25px 30px 0;
  float: right;
}

.kasou-box img {
  width: 40%;
  float: left;
  margin-bottom: 0;
}

.kasou-box h2 {
  position: static;
  margin: 0 0 25px;
  padding: 0;
  background: none;
  text-align: center;
  font-size: 22px;
}

.kasou-box h2:before,
.kasou-box h2:after {
  display: none;
}

/*----- もっと読む -----*/
.more-btn a {
  width: 180px;
  flex: 1 1 auto;
  margin: 10px auto;
  padding: 20px;
  border: 2px solid #f7f7f7;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(..//images/icon_btn_arrow.png) no-repeat 100% 50%;
  color: #fff;
}

.more-btn a:after {
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  height: 3px;
  background: #f7f7f7;
}

.more-btn a:hover {
  cursor: pointer;
  border-radius: 30px;
  color: #fff;
}

.more-btn a:hover:after {
  width: 0;
  left: 0;
}

/*----- おすすめ -----*/
.reco-box {
  background: none;
  width: 100%;
}

.reco-box>div {
  width: 50%;
  float: left;
}

.reco-box h3 {
  width: 96%;
  margin: 0 auto 5px;
}

.reco-box h3 a {
  width: 100%;
  display: block;
  color: #fff;
  position: relative;
}

.reco-box h3 a:after {
  content: ">";
  position: absolute;
  right: 5%;
}

.reco-box h3:hover {
  transition: 0.3s;
  border-right: 2px solid #00416a;
  border-left: 2px solid #ececec;
}

.reco-box p {
  width: 100%;
  text-align: right;
  padding-right: 2%;
  padding-bottom: 40px;
  color: #fff;
  clear: both;
}

/*----- aside -----*/
#sub-area li {
  width: 100%;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.81);
  text-align: center;
  border-top: 5px solid #dc574e;
}

#sub-area li:nth-child(2) {
  border-top: 5px solid #e38c00;
}

#sub-area dt {
  padding: 15px 0;
  font-size: 18px;
  font-family: "Sawarabi Mincho";
}

#sub-area img {
  width: 90%;
  margin: 5% 5% 5px;
}

#sub-area .sub-box1 a {
  padding: 15px 0;
}

#sub-area dd a:hover {
  background: #dc574e;
  color: #fff;
}

#sub-area li:nth-child(2) a {
  padding-bottom: 5px;
}

#sub-area li:nth-child(2) a:hover {
  background: #e38c00;
}

/*----- footer -----*/
#foot-area {
  width: 100%;
  background: #fff;
  padding: 40px 0;
}

#foot-area ul {
  width: 720px;
  margin: 0 auto;
}

#foot-area dl {
  display: flex;
  justify-content: flex-start;
  line-height: 16px;
  padding: 15px 0;
}

#foot-area dt {
  width: 90px;
  font-size: 16px;
  padding: 3px 0 3px 5px;
  font-family: "Sawarabi Mincho";
  border-left: 4px solid #dc574e;
}

#foot-area ul li:nth-child(2) dt {
  border-left: 4px solid #e38c00;
}

#foot-area dd {
  margin-right: 10px;
  text-align: center;
}

#foot-area a:after {
  content: "|";
  margin: 0 5px;
}

#foot-area a:hover:after {
  color: #333;
}

#foot-area dd a:hover {
  color: #dc574e;
}

#foot-area ul li:nth-child(2) dd a:hover {
  color: #e38c00;
}

.foot-copy {
  width: 950px;
  margin: 30px auto 0;
  font-size: 90%;
  text-align: center;
}

.back-btn {
  width: 67px;
  height: 67px;
  background-color: #464646;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.back-btn::before {
  content: "";
  display: blcok;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 30px;
  left: 25px;
}

/*----- 404 -----*/
.page404 {
  height: 850px;
  padding-left: 20px;
}

.page404 b {
  font-size: 50px;
  line-height: 1.5em;
  color: #dc574e;
  font-family: "Sawarabi Mincho";
}

/*----- pan nav -----*/
#pan-bar {
  margin: 10px 0;
}

#pan-bar li {
  display: inline-block;
  margin-right: 5px;
  color: #fff;
}

#pan-bar a {
  color: #fff;
}

#pan-bar a:hover {
  color: #fff;
}

/*----- SNS -----*/
#sns-area {
  width: 100%;
  margin: 50px 0;
  text-align: center;
}

#sns-area dt {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 14px;
  padding: 6px 15px;
  margin-bottom: 10px;
  background: #333;
  color: #fff;
}

#sns-area dd {
  width: 24%;
  float: left;
  margin: 0 0.5%;
}

#sns-area dd .fa {
  font-weight: bold;
}

#sns-area dd a {
  flex: 1 1 auto;
  margin: 10px;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

#sns-area dd a:hover {
  border-radius: 30px;
  transition: 0.3s;
}

/*----- SNS背景色 -----*/
#twitter {
  border: solid 3px #00acee;
  color: #00acee;
}

#hatena {
  border: solid 3px #2d4c86;
  color: #2d4c86;
}

#facebook {
  border: solid 3px #3b5998;
  color: #3b5998;
}

#ggl-plus {
  border: solid 3px #dd4b39;
  color: #dd4b39;
}

@charset "utf-8";

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

  /*■■■■■ 大枠　■■■■■*/
  #all,
  main {
    width: 100%;
    float: none;
  }

  /*----- 見出し -----*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
    font-size: 110%;
  }

  h2 {
    margin: 0 -4% 1em;
    padding: 15px 20px;
  }

  h2:before,
  h2:after {
    display: none;
  }

  .head-ttl a,
  .index .head-ttl a {
    padding: 5px 0 0;
    font-size: 120%;
  }

  /*----- ul ol -----*/
  article ul {
    padding: 2%;
  }

  article ol li {
    margin: 3px 0;
  }

  /*■■■■■ top page　■■■■■*/
  /*----- header -----*/
  #head {
    padding-top: 30px;
  }

  #head-area {
    width: 100%;
  }

  .index .head-copy {
    font-size: 90%;
    position: static;
  }

  .head-copy {
    font-size: 90%;
    line-height: 1.5em;
  }

  /*----- slider -----*/
  #vvv-area {
    width: 100%;
    height: auto;
  }

  .white {
    display: none;
  }

  .bx-wrapper .bx-prev,
  .bx-wrapper .bx-next {
    background: none;
  }

  /*----- 本文 -----*/
  .topPage-box {
    width: 96%;
    margin: 0 2% 4%;
    padding: 10px;
  }

  /*----- 下層リンク -----*/
  .layout-col {
    display: inline-block;
  }

  .layout-col article {
    width: 96%;
    margin: 0 2% 4%;
  }

  .kasou-box>div {
    width: 94%;
    margin: 0 auto;
    padding: 0;
    float: none;
  }

  .kasou-box img {
    width: 100%;
    float: none;
  }

  .kasou-box h2 {
    position: static;
    margin: 1em 0;
    text-align: center;
    font-size: 120%;
  }

  .more-btn {
    text-align: center;
  }

  /*----- おすすめ -----*/
  .reco-box {
    background: none;
    width: 96%;
    margin: 2%;
  }

  .reco-box h2 {
    width: 100%;
    margin: 0 0 1em;
  }

  .reco-box h3 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1em;
    float: none;
  }

  .reco-box h3 a:after {
    margin-left: 55%;
  }

  /*----- 404 -----*/
  .page404 {
    height: auto;
  }

  .page404 b {
    font-size: 250%;
  }

  /*----- footer -----*/
  #foot-area {
    padding: 0;
  }

  #foot-area ul,
  .foot-copy {
    width: 100%;
    text-align: center;
  }

  #foot-area dl {
    width: 96%;
    margin: 2%;
    padding: 0;
    display: inline-block;
    line-height: 2em;
  }

  #foot-area dt,
  #foot-area ul li:nth-child(2) dt {
    border: none;
    width: 100%;
  }

  #foot-area a {
    line-height: 3em;
  }

  #foot-area a:after {
    display: none;
  }

  #foot-area dd a:hover {
    background: #dc574e;
    color: #fff;
  }

  #foot-area ul li:nth-child(2) dd a:hover {
    background: #e38c00;
    color: #fff;
  }

  /*----- nav -----*/
  #head-bar,
  #sub-area {
    display: none;
  }

  .slicknav_menu {
    display: block;
    padding: 0.5em 0.5em 0.5em 0;
    background: #0d4b72;
    position: fixed;
    width: 100%;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  .slicknav_menu a {
    padding: 0;
    margin: 0;
  }

  .slicknav_menu img {
    display: none;
  }

  .slicknav_nav a {
    padding: 5px 15px;
    border-radius: 0;
    background: #0d4b72;
    color: #fff;
  }

  .slicknav_nav a:hover {
    background: #2b6c97;
    color: #fff;
    border-radius: 0;
  }

  .sticky {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
  }

  /*----- sns -----*/
  #sns-area dd a {
    display: block;
    width: 90%;
    margin: 0 auto 10px;
  }

  #sns-area dd {
    width: 48%;
  }

  .fa-twitter {
    width: 1em;
    height: 1em;
    overflow: hidden;
  }
}