/** reset **/
/* =============================================== */
* { box-sizing: border-box; }
html, body, div, h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
address, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset {
  margin: 0; padding: 0; box-sizing: border-box;
}
table { border-collapse: collapse; border-spacing: 0; }
ul, ol { list-style: none; }
img { border: 0; }
img, input { vertical-align: middle; }

/** common **/
/* =============================================== */
html {
  font-size: 62.5%;
}
body {
  color: #333;
  font: 1.5rem/1.6 "繝｡繧､繝ｪ繧ｪ", Meiryo, "�ｭ�ｳ �ｰ繧ｴ繧ｷ繝�け", "MS PGothic", sans-serif;
}

a[href]:not([class]) {
  color: #333333;
  transition: all 0.2s linear;
}
a[href]:not([class]):hover {
  color: #028ac3;
}
a img {
  transition: all 0.2s linear;
}
a:hover img {
  opacity: 0.8;
}

/* ---flex--- */
.flex-center,
.flex-left,
.flex-end,
.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  -flex-pack:justify;
}
.flex-center {
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-left {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-two > li {
  width: 47%;
  margin-right: 6%;
}
.flex-four > li {
  width: 23.5%;
  margin-right: 2%;
}
.flex-five > li {
  width: 18%;
  margin-right: 2.5%;
}
.flex-two > li:nth-of-type(2n),
.flex-four > li:nth-of-type(4n),
.flex-five > li:nth-of-type(5n) {
  margin-right: 0;
}

/* ---thumb--- */
.thumb {
  display: block;
  position: relative;
  width: 100%;
  transition: all 0.2s linear;
}
.thumb:before {
  content:"";
  display: block;
  padding-top: 100%;
}
.thumb > div {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eee;
}

/* ---link--- */
.linkbtn {
  display: block;
  position: relative;
  width: 80%;
  max-width: 250px;
  padding: .5rem .8rem;
  margin: 2rem auto 0;
  background-color: rgba(42, 165, 216, 1);
  border: 1px solid #ddd;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s linear;
}
.linkbtn[target="_blank"] {
  padding-right: 2.6rem;
}
.linkbtn[target="_blank"]::after {
  position: absolute;
  content: '\f08e';
  font: 1.2rem/1.6 'FontAwesome';
  top: .1rem;
  right: 0.8rem;
  color: #fff;
  transition: all 0.15s linear;
}
.linkbtn:hover {
  background: transparent;
  color: #227aab !important;
}
.more_btn {
  display: block;
  width: 225px;
  height: 35px;
  line-height: 35px;
  margin: 0 auto;
  background-color: #0860a8;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s linear;
}
.more_btn:hover {
  border-radius: 5px;
  background-color: #3399ff;
}

/** headline **/
/* =============================================== */
h1 {

}

/** nav **/
/* =============================================== */
#header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
}
@media print {
  #header {
    position: absolute;
  }
}
#header > .inner {
  max-width: 1120px;
  height: 65px;
  margin: 0 auto;
  -webkit-align-items: baseline;
  align-items: baseline;
}

#header h1 {
  margin: 0;
  padding: 0;
  line-height: 65px;
}

/* sub nav */
#header > .inner li {
  height: 65px;
  margin-left: 1.2rem;
}
#header > .inner ul a {
  font-size: 1.2rem;
  text-decoration: none;
}
#header > .inner ul i {
  margin-right: 0.5rem;
}

/* main nav */
#header > nav {
  width: 100%;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
#header > nav ul {
  max-width: 1120px;
  height: 55px;
  margin: 0 auto;
}
#header > nav li {
  position: relative;
  width: 20%;
}
#header > nav li::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 63.63%;
  border-left: 1px solid #ececec;
  top: 18.185%;
  left: 0;
}
#header > nav li:last-of-type::after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 63.63%;
  border-right: 1px solid #ececec;
  top: 18.185%;
  right: 0;
}
#header > nav a {
  display: block;
  position: relative;
  width: 100%;
  line-height: 55px;
  color: #333;
  text-align: center;
  text-decoration: none;
}
#header > nav a::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: 0;
  background-color: #028ac3;
  transition: all 0.2s linear;
}
#header > nav a:hover::before {
  width: 98%;
  left: 1.5%;
}

/* smartphone */
#spheader {
  display: none;
  position: absolute;
  width: 100%;
  height: 45px;
  top: 0;
  left: 0;
  z-index: 10;
}
#spheader .smart h1 img {
  vertical-align: top;
}
#spheader .smart > div {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  padding: 13px;
  cursor: pointer;
}
#spheader .smart > div > span {
  display: block;
  position: absolute;
  width: 19px;
  height: 3px;
  border-radius: 3px;
  background-color: #2a2a2a;
  transition: all 0.5s;
}
#spheader .smart > div > span:first-of-type  { top: 14px; }
#spheader .smart > div > span:nth-of-type(2) { top: 21px; }
#spheader .smart > div > span:last-of-type   { top: 28px; }

#spheader .smart .nav {
  display: none;
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  top: 45px;
  left: 0;
  list-style: none;
}
#spheader .smart .nav a {
  display: block;
  width: 100%;
  height: 5.5rem;
  line-height: 5.5rem;
  border-bottom: 1px solid #ececec;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
}
#spheader .smart .nav > li:first-of-type {
  border-top: 1px solid #ececec;
}
#spheader .smart .subnav li {
  width: 50%;
  text-align: center;
}
#spheader .smart .subnav li:first-of-type {
  border-right: 1px solid #ececec;
}

@media (max-width: 999px) {
  #header   { display: none; }
  #spheader { display: block;  }
}
@media (max-width: 320px) {
  #spheader .smart h1 {
    padding-right: 45px;
  }
  #spheader .smart h1 img {
    width: 100%;
    vertical-align: middle;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
}
.overlay_active {
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 1);
  z-index: 7;
}



/** front **/
/* =============================================== */
#wrpper {
  position: relative;
  top: 120px;
}
@media (max-width: 999px) {
  #wrpper { top: 45px;  }
}
#main_view {
  display: block;
  width: 100%;
  height: 28vw;
}
#sp_main_view {
  display: none;
  width: 100%;
  height: 40vw;
}
#small_main_view {
  display: none;
  width: 100%;
  height: 55vw;
}
#main_view .txt-left {
  position: absolute;
  width: 45%;
  padding: 5rem;
  top: 50%;
  right: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.4rem;
}
#main_view .txt-right {
  position: absolute;
  width: 45%;
  padding: 5rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.4rem;
}
@media (min-width: 1200px) {
  #main_view .txt-left,
  #main_view .txt-right {
    width: 550px;
  }
}
@media (max-width: 999px) {
  #sp_main_view { display: block; }
  #main_view { display: none; }
  #sp_main_view .txt-left,
  #sp_main_view .txt-right,
  #small_main_view .txt-left,
  #small_main_view .txt-right {
    position: absolute;
    padding: 3rem;
    top: 50%;
    width: 80%;
    left: 10%;
    right: 10%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  #sp_main_view {
    height: 55vw;
  }
}
@media (max-width: 580px) {
  #sp_main_view { display: none; }
  #small_main_view { display: block; }
  #small_main_view .txt-left,
  #small_main_view .txt-right {
    width: 90%;
    left: 5%;
    right: 5%;
  }
  #small_main_view .txt-left h2,
  #small_main_view .txt-right h2 {
    font-size: 1.9rem;
    font-weight: bold;
  }
}
.slide_link {
  display: block;
  width: 80%;
  margin: 2rem auto 0;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #db7c0e;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  color: #db7c0e;
  transition: all 0.2s linear;
}
.slide_link:hover {
  opacity: 0.8;
}

#contents h2 {
  position: relative;
  line-height: 2.2rem;
  margin-bottom: 30px;
  padding-left: 2rem;
  font-size: 1.8rem;
}
#contents h2::before {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 2.5px;
  background: #2aa5d8;
}

/* pickup */
.front .pickup {
  padding: 30px 0;
  text-align: center;
}
.front .pickup img {
  max-width:100%;
  height: auto;
}

.front .pickup > dl {
  max-width: 1000px;
  margin: 0 auto;
  border: 2px solid #eee;
  border-radius: 5px;
}
.front .pickup > dl > dt {
  position: relative;
  width: 50%;
  height: 146px;
}
.front .pickup > dl > dd {
  position: relative;
  width: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.front .pickup > dl > dd > span {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.front .pickup > dl > dd > span > a {
  display: block;
  width: 100%;
  padding: 1rem;
  letter-spacing: 2px;
  border-radius: 4px;
  border-bottom: 1px solid #db7c0e;
  background-color: #f4911c;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.2s linear;
}
.front .pickup > dl > dd > span > a:hover {
  background-color: #fba034;
  color: #fff;
}

@media (max-width: 768px) {
  .front .pickup > .flex-center {
    display: block;
    position: relative;
    width: 85%;
    height: auto;
    margin: 0 auto;
  }
  .front .pickup > dl > dt,
  .front .pickup > dl > dd {
    display: block;
    width: 100%;
    height: auto;
  }
  .front .pickup > dl > dt {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
  }
  .front .pickup > dl > dd {
    position: relative;
    z-index: 2;
    padding: 1rem;
  }
  .front .pickup > dl > dd > span {
    position: relative;
    top: 0;
    left: 0;
  }
  .front .pickup > dl > dd > span > p {
    margin-bottom: .8rem;
  }
  .front .pickup > dl > dd > span > p + br {
    display: none;
  }
  .front .pickup > dl > dd > span > a {
    letter-spacing: 1px;
    font-size: 1.6rem;
  }
}
@media (max-width: 580px) {
  .front .pickup > .flex-center {
    width: 90%;
  }
}

/* business */
.front .business {
  width: 100%;
  padding: 45px 0 20px;
  background-color: #f1f1f1;
}
.front .business ul {
  -ms-flex-wrap:wrap;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.front .business li {
  margin-bottom: 25px;
}
.front .business li a {
  text-decoration: none;
}
.front .business .thumb div {
  border-radius: 5px 5px 0 0;
}
.front .business li a:hover .thumb {
  opacity: 0.8;
}
.front .business .thumb:before {
  padding-top: 46.8%;
}
.front .business li span {
  display: block;
  position: relative;
  padding: 0.8rem 0;
  border-radius: 0 0 5px 5px;
  background-color: #2aa5d8;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 768px) {
  .front .business .flex-four > li {
    width: 48%;
    margin: 0 auto 2.5rem;
  }
}
@media (max-width: 400px) {
  .front .business .flex-four > li {
    width: 98%;
  }
}

/* topics */
.front .topics {
  padding: 45px 0;
}
.front .topics > ul {
  max-width: 1000px;
  margin: 0 auto;
}
#contents .front .topics .flex-two li h2 {
  display: inline-block;
  position: relative;
  width: calc(100% - 90px);
}
.front .topics .more {
  display: inline-block;
  position: relative;
  width: 90px;
  padding: .5rem 1.9rem .5rem 0;
  color: #232323;
  font-weight: normal;
  font-size: 1.3rem;
  text-align: right;
  transition: all 0.2s linear;
}
.front .topics .more::after {
  content: '\f0da';
  display: block;
  position: absolute;
  top: .5rem;
  left: calc(100% - 0.7rem);
  color: #2aa5d8;
  font: 1.3rem/1.6 'FontAwesome';
  transition: all 0.2s linear;
}
.front .topics .more:hover {
  color: #2aa5d8;
}
.front .topics > ul ul {
  border-top: 1px dotted #dcdcdc;
}
@media (max-width: 768px) {
  .front .topics > ul ul {
    margin-bottom: 4rem;
  }
}
.front .topics > ul ul li {
  min-height: 60px;
  border-bottom: 1px dotted #dcdcdc;
  font-weight: bold;
}
.front .topics > ul a {
  display: block;
  width: 100%;
  padding: 0.8rem 0;
  text-decoration: none;
}
.front .topics .date {
  display: block;
  margin-bottom: 0.2rem;
  color: #666;
  font-size: 1.3rem;
  font-weight: normal;
}
@media (max-width: 1000px) {
  .front .topics .flex-two > li {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .front .topics .flex-between {
    display: block;
  }
  .front .topics .flex-two > li {
    width: 98%;
    margin: 0 auto;
    padding: 0;
  }
}

.front .sake {
  width: 100%;
  padding: 45px 0;
  background-color: #f5fafa;
}
.front .sake dl {
  width: 1000px;
  -ms-flex-wrap:wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .front .sake dl {
    width: 98%;
  }
}
.front .sake dt {
  width: 40%;
}
.front .sake dd {
  width: 55%;
}
@media (max-width: 768px) {
  .front .sake dt {
    display: block;
    width: 98%;
    padding: 0.5rem;
    margin: 0 auto 2rem;
  }
  .front .sake dt img {
    width: 100%;
    height: auto;
  }
  .front .sake dd {
    display: block;
    width: 98%;
    margin: 0 auto;
    padding: 0.5rem;
  }
}
#contents .front .sake dd h2 {
  padding-left: 0;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ccc;
}
#contents .front .sake dd h2::before {
  display: none;
}

.front .bnr_area {
  padding: 45px 0;
  background: #e8eceb url(./img/fba_bg.jpg);
}
.front .bnr_area ul {
  -ms-flex-wrap:wrap;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
}
.front .bnr_area li {
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  border: 1px solid #cdcdcd;
  background-color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .front .bnr_area .flex-five > li {
    width: 48%;
    margin: 0 auto 2.5rem;
  }
}

#pagetop {
  display: block;
  position: fixed;
  z-index: 5;
  width: 43px;
  height: 43px;
  right: 2rem;
  bottom: 5.1rem;
  line-height: 43px;
  background-color: #028ac3;
  color: #fff;
  font-size: 2.9rem;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s linear;
}
#pagetop:hover {
  background-color: rgba(42, 165, 216, 0.8);
}
@media print {
  #pagetop {
    display: none;
  }
}
#footer {
  position: relative;
  max-width: 100%;
  padding: 35px;
  background-color: #323232;
}
#footer .sp_fnav { display: none; }
#footer .fnav,
#footer .sp_fnav {
  max-width: 1120px;
  margin: 0 auto;
}
#footer .fnav li,
#footer .sp_fnav li {
  width: auto;
}
#footer .sp_fnav li {
  margin-right: 0;
}
#footer .sp_fnav li + li {
  border-left: 1px solid #555;
}
#footer .fnav a,
#footer .sp_fnav a {
  display: block;
  position: relative;
  padding: 0.5rem 0;
  line-height: 1;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}
#footer .sp_fnav a {
  padding: 0 2rem;
}
#footer .fnav a:hover,
#footer .sp_fnav a:hover {
  text-decoration: underline;
}
#footer .fnav .subcontents {
  margin-bottom: 1.5rem;
}
#footer .fnav .subcontents a {
  padding: 0.5rem 0 0.5rem 1rem;
  font-weight: normal;
}
#footer .fnav .subcontents a::before {
  content: '\f0da';
  display: block;
  position: absolute;
  top: .25rem;
  left: 0;
  font: 1.3rem/1.6 'FontAwesome';
  transition: all 0.2s linear;
}
@media (max-width: 999px) {
  #footer .fnav { display: none; }
  #footer .sp_fnav { display: block; }
}
.copyright {
  margin: 1.6rem 0 1.5rem;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.05rem;
}

/** respond **/
/* =============================================== */
@media (max-width: 1200px) {
}
@media (max-width: 1000px) {
}
@media (max-width: 768px) {
  html {
    font-size: 58.8%;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 55.55%;
  }
}


/* =============================================== */
/** for Youtube 2024.05.28 **/
.youtube-ratio {
  max-width: 560px;
  margin: 0 auto;
}
.youtube-ratio iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
/* =============================================== */
