@charset "UTF-8";
/* 点滅 */
/* ローディングアニメ */
/* スクロールアニメ */
/* ページトップボタン */
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* 全体設定
---------------------------------------------*/
html {
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  background-image: none;
  width: 100%;
  overflow-x: hidden;
  font-size: 1.3rem;
  letter-spacing: 0.12rem;
  line-height: 2.2rem;
  color: #1b1b1b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .m70 {
    margin-top: 70px;
  }
}

/* link setting
--------------------------------------*/
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  transition: all 0.4s ease-out;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

#wrap {
  width: 100%;
}

/* ページトップ
-------------------------*/
.fv {
  width: 100%;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 70vh;
  }
}
.fv .main_img {
  background-image: url(../images/main_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .fv .main_img {
    background-image: url(../images/main_sp.jpg);
    width: 100%;
    height: 70vh;
    /*padding-top: calc(1000 / 1000 * 100%); calc(画像高さ ÷ 画像横幅 × 100%) */
    justify-content: center;
    align-items: flex-start;
  }
}
.fv .h1_bg {
  background: rgba(255, 255, 255, 0.4);
  margin: 5%;
}
@media screen and (max-width: 768px) {
  .fv .h1_bg {
    background: rgba(255, 255, 255, 0.6);
    /*margin: 20% 5%;*/
  }
}
.fv h1 {
  font-size: 4rem;
  padding: 30px;
  line-height: 1.5;
  text-align: center;
  filter: drop-shadow(0 3px 5px rgba(255, 255, 255, 0.6));
}
@media screen and (max-width: 768px) {
  .fv h1 {
    font-size: 2.5rem;
  }
}
.fv h1 span {
  font-size: 2.5rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .fv h1 span {
    font-size: 1.5rem;
  }
}
.fv h1 img {
  width: 50%;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .fv h1 img {
    width: 60%;
  }
}

#page-top,
#page-top span {
  display: inline-block;
  box-sizing: border-box;
}

#page-top {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 9999;
  right: 3%;
  bottom: 3%;
  transition: all 0.4s;
  box-sizing: border-box;
  background: #1f1f1f;
}
@media screen and (max-width: 768px) {
  #page-top {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
  }
}
#page-top:hover {
  opacity: 0.8;
}
#page-top span {
  position: absolute;
  height: 2px;
  background: #fff;
}
#page-top span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
  width: 17px;
  left: 22%;
}
@media screen and (max-width: 768px) {
  #page-top span:nth-of-type(1) {
    width: 12px;
    left: 25%;
  }
}
#page-top span:nth-of-type(2) {
  top: 50%;
  transform: rotate(45deg);
  width: 17px;
  right: 22%;
}
@media screen and (max-width: 768px) {
  #page-top span:nth-of-type(2) {
    width: 12px;
    right: 25%;
  }
}

/* コンテンツ
--------------------------------------*/
#contents {
  width: 100%;
  margin: 0px auto;
  max-width: 950px;
}
#contents .read_txt {
  width: 90%;
  text-align: center;
  font-size: 1.3rem;
  line-height: 2.5rem;
  letter-spacing: 0.08rem;
  margin: 70px auto;
}
@media screen and (max-width: 768px) {
  #contents .read_txt {
    text-align: left;
  }
}
#contents .read_txt p {
  font-size: 1.1rem;
  text-align: right;
}
#contents .video {
  position: relative;
  height: 0;
  padding: 30px 0 56.25%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #contents .video {
    margin-bottom: 50px;
  }
}
#contents .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#contents .category_area {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #contents .category_area {
    box-sizing: border-box;
    border-top: dotted 3px #a7a7a7;
  }
}
#contents .ttl {
  width: 100%;
  margin: 100px auto 50px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
#contents .ttl img {
  height: 50px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents .ttl {
    margin: 50px auto;
  }
  #contents .ttl img {
    height: 26px;
  }
}
#contents .ttl2 {
  width: 100%;
  margin: 170px auto 50px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
#contents .ttl2 img {
  height: 50px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents .ttl2 {
    margin: 50px auto;
  }
  #contents .ttl2 img {
    height: 26px;
  }
}
#contents .frame {
  margin-bottom: 20px;
}
#contents h3 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #contents h3 {
    font-size: 2rem;
  }
}
#contents .balloon1 {
  position: relative;
  display: block;
  margin: 0 0 1.5em;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #fff4e7;
}
#contents .balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff4e7;
}
#contents .balloon1 h4 {
  margin: 0;
  padding: 0;
}
#contents h4 {
  margin-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents h4 {
    font-size: 1.4rem;
    line-height: 1.6em;
  }
}
#contents h4 span {
  display: block;
  font-size: 1.8rem;
}
#contents .select_box {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}
#contents .select_box:after {
  content: "";
  display: block;
  height: 0;
}
@media screen and (max-width: 768px) {
  #contents .select_box {
    margin: 0 auto 20px;
    width: 95%;
  }
}
#contents .select_box .box_item {
  width: calc(100% / 3);
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  #contents .select_box .box_item {
    width: 49%;
  }
}
#contents .select_box .box_item img {
  border: 1px solid #ccc;
}
#contents .select_box .credit {
  width: 100%;
  margin: 10px auto 0;
  text-align: center;
  line-height: 2rem;
  box-sizing: border-box;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #contents .select_box .credit {
    font-size: 1.2rem;
  }
}
#contents .select_box .credit .name {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #contents .select_box .credit .name {
    font-size: 1.3rem;
    line-height: 1.4rem;
    margin-bottom: 4px;
  }
}
#contents .select_box .credit span {
  font-size: 1.2rem;
  position: relative;
  bottom: 1px;
  right: 2px;
}
@media screen and (max-width: 768px) {
  #contents .select_box .credit span {
    font-size: 1.1rem;
  }
}
#contents .select_box .credit a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  margin: 6px auto 0px;
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  font-weight: 700;
  border-bottom: solid 1px;
  padding-left: 2px;
}
@media screen and (max-width: 768px) {
  #contents .select_box .credit a {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
  }
}
#contents .select_box .credit a:hover {
  color: #ffa12c;
}
#contents .select_box2 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}
#contents .select_box2:after {
  content: "";
  display: block;
  height: 0;
}
@media screen and (max-width: 768px) {
  #contents .select_box2 {
    margin: 0 auto 20px;
    width: 95%;
  }
}
#contents .select_box2 .box_item {
  width: calc(100% / 3);
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  #contents .select_box2 .box_item {
    width: 80%;
    margin: 0 auto 30px;
  }
}
#contents .select_box2 .box_item img {
  border: 1px solid #ccc;
}
#contents .select_box2 .credit {
  width: 100%;
  margin: 10px auto 0;
  text-align: center;
  line-height: 2rem;
  box-sizing: border-box;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #contents .select_box2 .credit {
    font-size: 1.2rem;
  }
}
#contents .select_box2 .credit .name {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #contents .select_box2 .credit .name {
    font-size: 1.3rem;
    line-height: 1.4rem;
    margin-bottom: 4px;
  }
}
#contents .select_box2 .credit span {
  font-size: 1.2rem;
  position: relative;
  bottom: 1px;
  right: 2px;
}
@media screen and (max-width: 768px) {
  #contents .select_box2 .credit span {
    font-size: 1.1rem;
  }
}
#contents .select_box2 .credit a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  margin: 6px auto 0px;
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  font-weight: 700;
  border-bottom: solid 1px;
  padding-left: 2px;
}
@media screen and (max-width: 768px) {
  #contents .select_box2 .credit a {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
  }
}
#contents .select_box2 .credit a:hover {
  color: #ffa12c;
}
#contents .category_box {
  width: 100%;
  box-sizing: border-box;
  border-top: dotted 3px #a7a7a7;
  margin: 70px auto 70px;
}
@media screen and (max-width: 768px) {
  #contents .category_box {
    margin: 0 auto 50px;
  }
}
#contents .category_box .ttl {
  width: 100%;
  margin: 70px auto 50px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  #contents .category_box .ttl {
    width: 90%;
    margin: 0 auto;
  }
}
#contents .category_box .ttl img {
  height: 50px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents .category_box .ttl {
    margin: 50px auto;
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
  #contents .category_box .ttl img {
    height: 26px;
  }
}
#contents .category_box .ttl2 {
  width: 100%;
  margin: 70px auto 50px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  #contents .category_box .ttl2 {
    width: 90%;
    margin: 0 auto;
  }
}
#contents .category_box .ttl2 img {
  height: 50px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents .category_box .ttl2 {
    margin: 50px auto;
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
  #contents .category_box .ttl2 img {
    height: 26px;
  }
}
#contents .category_box .txt {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
#contents .category_box .txt span {
  background: linear-gradient(transparent 60%, #ffec88 60%);
}
#contents .category_box .txt p {
  margin-top: 10px;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #contents .category_box .txt p {
    font-size: 1rem;
    text-align: left;
  }
}
#contents .category_box .txt2 {
  width: 90%;
  margin: 0 auto 50px;
  text-align: center;
}
#contents .category_box .txt2 span {
  background: linear-gradient(transparent 60%, #ffec88 60%);
}
@media screen and (max-width: 768px) {
  #contents .category_box .txt2 {
    text-align: left;
  }
}
#contents .category_box .txt2 p {
  margin-top: 10px;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #contents .category_box .txt2 p {
    font-size: 1rem;
    text-align: left;
  }
}
#contents .category_box .txt3 {
  width: 100%;
  margin: 10px auto;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
#contents .category_box .txt3 span {
  background: linear-gradient(transparent 60%, #ffec88 60%);
}
#contents .category_box .check_box {
  width: 90%;
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box {
    margin-bottom: 50px;
  }
}
#contents .category_box .check_box .check {
  width: 35px;
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  left: -30px;
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box .check {
    width: 27px;
    left: 0;
  }
}
#contents .category_box .check_box .sub_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  display: inline;
  margin-left: -20px;
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box .sub_ttl {
    font-size: 1.5rem;
    margin-left: 6px;
  }
}
#contents .category_box .check_box .flexbox {
  width: 100%;
  margin: 30px auto 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box .flexbox {
    margin-bottom: 30px;
  }
}
#contents .category_box .check_box .flexbox .box_left {
  width: 61%;
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box .flexbox .box_left {
    width: 100%;
  }
}
#contents .category_box .check_box .flexbox .box_left_2 {
  width: 15%;
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box .flexbox .box_left_2 {
    width: 30%;
    margin: 0 auto;
  }
}
#contents .category_box .check_box .flexbox .box_right {
  width: 37%;
}
#contents .category_box .check_box .flexbox .box_right .fukidashi {
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box .flexbox .box_right {
    width: 75%;
    margin: 20px auto 10px;
  }
}
#contents .category_box .check_box .flexbox .box_txt {
  width: 80%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box .flexbox .box_txt {
    width: 100%;
    margin: 20px auto 0;
  }
}
#contents .category_box .check_box .point_box {
  width: 100%;
  margin: 0 auto 30px;
}
#contents .category_box .check_box .point_box .point {
  display: inline-block;
  padding: 0.5em 0.5em 0.5em 45px;
  background: #fff4e7;
  font-size: 1.6rem;
  margin-bottom: 10px;
  position: relative;
}
#contents .category_box .check_box .point_box .point:before {
  position: absolute;
  content: "✔︎";
  background: #ffa12c;
  color: white;
  font-weight: 900;
  font-size: 15px;
  border-radius: 50%;
  left: 10px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
#contents .category_box .check_box .point_box .point:after {
  content: "";
  display: block;
  position: absolute;
  left: 28px;
  height: 0;
  width: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #ffa12c;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #contents .category_box .check_box .point_box .point {
    background: #e8edf0;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
#contents #category_02 {
  border-bottom: dotted 3px #a7a7a7;
}

.link_bnr {
  display: block;
  margin: 0 auto;
  border: 1px solid #1b1b1b;
  box-sizing: border-box;
  width: 350px;
  text-align: center;
  font-size: 1.7rem;
  padding-top: 15px;
  padding-bottom: 15px;
  letter-spacing: 0.2rem;
  margin-bottom: 50px;
  color: #fff;
  background: #1b1b1b;
}
.link_bnr:hover {
  color: #1b1b1b;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .link_bnr {
    width: 85%;
  }
}

/* footer
--------------------------------------*/
footer {
  margin: 0px auto;
  padding: 0px 0 100px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0px 0 100px;
  }
}
footer #logo {
  width: 140px;
  margin: 0px auto 10px;
}
footer #logo:hover a img:hover {
  filter: alpha(opacity=60);
  /* IE 6と7*/
  -ms-filter: "alpha(opacity=60)";
  /* IE 8と9 */
  -moz-opacity: 0.6;
  /* Firefox , Netscape */
  -khtml-opacity: 0.6;
  /* Safari 1系 */
  opacity: 0.6;
  zoom: 1;
  /*IE*/
  transition: all 0.3s ease-out;
}
footer #copyright {
  text-align: center;
  font-size: 10px;
}