@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;
  line-height: 2.2rem;
  letter-spacing: 0.05rem;
  color: #1f1f1f;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@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;
  }
}

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

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

#wrap {
  width: 100%;
}

/* ページトップ
-------------------------*/
.fv {
  width: 100%;
  position: relative;
  z-index: 100;
}
.fv .main_img {
  background-image: url(../images/main_pc.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  width: auto;
  height: 100vh;
  /* calc(画像高さ ÷ 画像横幅 × 100%) */
}
@media screen and (max-width: 768px) {
  .fv .main_img {
    background-image: url(../images/main_sp.jpg);
    width: 100%;
    height: 0;
    padding-top: calc(1140 / 1000 * 100%);
    /* calc(画像高さ ÷ 画像横幅 × 100%) */
  }
}

#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: #000;
}
@media screen and (max-width: 768px) {
  #page-top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 20px;
  }
}
#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%;
  max-width: 950px;
  margin: 0px auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #contents {
    width: 90%;
  }
}
#contents .read_txt {
  width: 100%;
  box-sizing: border-box;
  margin: 100px auto;
  line-height: 3rem;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents .read_txt {
    text-align: left;
    line-height: 2.5rem;
    font-size: 1.4rem;
    margin: 0px auto 50px;
  }
}
#contents .movie {
  position: relative;
  height: 0;
  padding: 30px 0 56.25%;
  overflow: hidden;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #contents .movie {
    margin-bottom: 50px;
  }
}
#contents .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#contents .category_area {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}
#contents .category_area .ttl {
  display: inline-block;
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  box-sizing: border-box;
  margin-bottom: 85px;
  padding: 0;
  position: relative;
}
#contents .category_area .ttl span {
  font-size: 5rem;
  font-family: "Caveat", cursive;
  vertical-align: sub;
}
#contents .category_area .ttl::after {
  content: "";
  width: 1px;
  height: 40px;
  background: #000;
  position: absolute;
  margin: auto;
  bottom: -65px;
  right: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #contents .category_area .ttl {
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.8rem;
  }
  #contents .category_area .ttl span {
    font-size: 4rem;
  }
  #contents .category_area .ttl::after {
    height: 30px;
    bottom: -45px;
  }
}
#contents .select_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 10px;
}
#contents .select_box .box_item {
  width: calc(100% / 3);
  position: relative;
}
@media screen and (max-width: 768px) {
  #contents .select_box .box_item {
    width: calc(100% / 2);
    margin: 0 auto;
  }
}
#contents .select_box .box_item span {
  font-family: "Caveat", cursive;
  font-size: 4rem;
  font-weight: bold;
  position: absolute;
  left: 15%;
  color: #b99180;
  background: #ffffff;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents .select_box .box_item span {
    font-size: 3rem;
    left: 5px;
    padding: 15px;
  }
}
#contents .select_box .box_item img {
  width: 85%;
  margin: 0 auto;
  padding: 5%;
  box-sizing: border-box;
  border-radius: 50%;
  background-position: left top;
  border: 5px solid #f0ede8;
}
@media screen and (max-width: 768px) {
  #contents .select_box .box_item img {
    width: 90%;
  }
}
#contents .select_box .box_item p {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #contents .select_box .box_item p {
    margin: 15px 0;
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
}
#contents .category_box {
  width: 100%;
  box-sizing: border-box;
  margin: 0px auto 100px;
}
@media screen and (max-width: 768px) {
  #contents .category_box {
    margin: 0px auto 50px;
  }
}
#contents .category_box .main_box {
  width: 100%;
  margin: 0px auto 50px;
}
@media screen and (max-width: 768px) {
  #contents .category_box .main_box {
    margin: 0px auto 30px;
  }
}
#contents .category_box .main_box .sub_ttl {
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
}
#contents .category_box .main_box .sub_ttl img {
  width: 1.6rem;
  display: inline-block;
  margin: 7px 6px 0 0;
}
@media screen and (max-width: 768px) {
  #contents .category_box .main_box .sub_ttl {
    margin-bottom: 20px;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  }
  #contents .category_box .main_box .sub_ttl img {
    float: left;
  }
}
#contents .category_box .main_box .sub_ttl p {
  color: #b99180;
  display: inline-block;
  font-size: 2.2rem;
  margin-right: 15px;
}
#contents .category_box .main_box .sub_ttl p span {
  font-size: 5rem;
  font-family: "Caveat", cursive;
  vertical-align: sub;
}
@media screen and (max-width: 768px) {
  #contents .category_box .main_box .sub_ttl p {
    display: block;
    text-align: left;
    font-size: 1.8rem;
    margin: 0 0 10px;
  }
  #contents .category_box .main_box .sub_ttl p span {
    font-size: 4rem;
  }
}
#contents .category_box .main_box .flexbox {
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #contents .category_box .main_box .flexbox {
    width: 100%;
  }
}
#contents .category_box .main_box .flexbox .img_box {
  width: 47%;
  margin-bottom: 5%;
}
@media screen and (max-width: 768px) {
  #contents .category_box .main_box .flexbox .img_box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#contents .category_box .main_box .flexbox .txt_box {
  width: 47%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #contents .category_box .main_box .flexbox .txt_box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#contents #category_01 .link {
  width: 80%;
  margin: 80px auto;
  text-align: center;
  display: flex;
  align-items: center;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 40px 0;
}
#contents #category_01 .link .box_left {
  width: 60%;
}
#contents #category_01 .link .box_left p {
  margin-top: 5px;
  font-weight: bold;
}
#contents #category_01 .link .box_left span {
  font-size: 2.2rem;
  background: linear-gradient(transparent 70%, #ffdf66 70%);
}
#contents #category_01 .link .box_right {
  width: 30%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contents #category_01 .link {
    padding: 10px 0;
    flex-wrap: wrap;
    margin: 20px auto 50px;
  }
  #contents #category_01 .link .box_left {
    width: 100%;
  }
  #contents #category_01 .link .box_left span {
    font-size: 1.8rem;
  }
}
#contents #category_01 .link_bnr {
  display: block;
  margin: 0 auto;
  border: 1px solid #b99180;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  padding: 6px 0;
  letter-spacing: 0.3rem;
  line-height: 2rem;
  color: #fff;
  background: #b99180;
  transition: all 0.4s ease;
}
#contents #category_01 .link_bnr:hover {
  color: #b99180;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #contents #category_01 .link_bnr {
    padding: 0px 0 2px 4px;
    margin: 7px auto 3px;
    width: 50px;
  }
}
#contents #category_02 .main_box {
  margin: 0px auto 30px;
}
#contents #category_02 .sub_ttl {
  margin: 0 auto 30px;
  text-align: center;
}
#contents #category_02 .sub_ttl img {
  float: inherit;
  display: inline-block;
  margin: 0px 6px 0 0;
}
#contents #category_02 .sub_ttl p {
  font-size: 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents #category_02 .sub_ttl {
    margin: 20px auto 20px;
  }
  #contents #category_02 .sub_ttl p {
    font-size: 1.6rem;
  }
}
#contents #category_02 .flexbox .img_box {
  margin: 0 auto 20px;
}
@media screen and (min-width: 769px) {
  #contents #category_02 .flexbox .img_3 {
    width: 70%;
  }
}
#contents #category_02 .flexbox .txt_box {
  width: 100%;
  text-align: center;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  #contents #category_02 .flexbox .txt_box {
    text-align: left;
    margin-bottom: 20px;
  }
}
#contents #category_02 .flexbox .txt_box p {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
  color: #b99180;
}
@media screen and (max-width: 768px) {
  #contents #category_02 .flexbox .txt_box p {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  #contents #category_02 .flexbox .txt_box p::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 1px;
    background: #b99180;
    margin: auto;
    top: 0;
    bottom: 0;
    left: -120px;
  }
}
#contents #category_02 .flexbox .txt_box p::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 1px;
  background: #b99180;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -120px;
}
@media screen and (max-width: 768px) {
  #contents #category_02 .flexbox .txt_box p::after {
    width: 64%;
    left: 0;
  }
}
#contents #category_02 .flexbox .txt_box a {
  display: inline-block;
  text-decoration: underline;
  line-height: 3rem;
  font-weight: bold;
  margin-top: 10px;
}
#contents #category_02 .flexbox .txt_box a:hover {
  opacity: 0.6;
}
#contents #category_02 .flexbox .txt_box a img {
  width: 35px;
  float: left;
  margin-right: 10px;
}
#contents #category_03 .sub_ttl {
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  #contents #category_03 .sub_ttl {
    margin-bottom: 20px;
  }
}
#contents #category_03 .sub_ttl p {
  font-size: 2rem;
  margin: 0 auto;
}
#contents #category_03 .link_bnr {
  display: inline-block;
  margin: 6px 0 0 10px;
  border: 1px solid #1f1f1f;
  box-sizing: border-box;
  width: 50px;
  font-size: 1.3rem;
  text-align: center;
  padding: 0;
  letter-spacing: 0.3rem;
  line-height: 2rem;
  color: #fff;
  background: #1f1f1f;
  transition: all 0.4s ease;
}
#contents #category_03 .link_bnr:hover {
  color: #1f1f1f;
  background: #fff;
}
#contents #category_04 {
  text-align: center;
  background: #f7f6f5;
}
#contents #category_04 .txt {
  width: auto;
  display: inline-block;
  font-weight: 400;
  text-align: left;
  margin: 0px auto 50px;
}
#contents #category_04 .txt p {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #contents #category_04 .txt {
    width: 90%;
    margin: 0px auto 30px;
  }
  #contents #category_04 .txt p {
    font-size: 2.4rem;
    text-align: center;
  }
}
#contents #category_04 .ttl_logo {
  width: 22%;
  margin: 0 auto 60px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents #category_04 .ttl_logo {
    width: 45%;
    margin: 0 auto 30px;
    padding-top: 30px;
  }
}
#contents #category_04 .main_box {
  width: 65%;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #contents #category_04 .main_box {
    width: 100%;
    padding-bottom: 30px;
  }
}
#contents #category_04 .main_box .box_img {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#contents #category_04 .main_box a {
  width: 45%;
}
#contents #category_04 .main_box a:hover {
  opacity: 0.7;
}
#contents #category_04 .main_box img {
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #contents #category_04 .main_box img {
    margin-bottom: 10px;
  }
}

/* footer
--------------------------------------*/
footer {
  margin: 0px auto;
  padding: 0px 0 100px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0px 0 50px;
  }
}
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;
}