@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville");
/* line 6, scss/_reset.scss */
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, font, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* line 23, scss/_reset.scss */
body {
  line-height: 1;
}

/* line 26, scss/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 29, scss/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 32, scss/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* remember to define focus styles! */
/* line 39, scss/_reset.scss */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
/* line 44, scss/_reset.scss */
ins {
  text-decoration: none;
}

/* line 47, scss/_reset.scss */
del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
/* line 52, scss/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 使い方
.headline {
  font-size: get-vw(72px);
} */
/* 使用例
.foo {
  color: blue;
  @include mq() { // 引数を省略（初期値はtbの768px）
    color: yellow;
  }
  @include mq(tb) { // 引数を個別に指定
    color: red;
  }
}
コンパイル結果
.foo {
  color: blue;
}
@media screen and (min-width: 768px) { /* `mq()` 
  .foo {
    color: yellow;
  }
}
@media screen and (min-width: 1000px) { /* `mq(tb)` 
  .foo {
    color: red;
  }
}
*/
/* line 58, scss/_base.scss */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 60, scss/_base.scss */
html, body {
  width: 100%;
}

/* line 63, scss/_base.scss */
body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 18px;
  line-height: 2;
}

/* line 69, scss/_base.scss */
.container {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* line 76, scss/_base.scss */
.tx-l {
  text-align: left;
}

/* line 78, scss/_base.scss */
.tx-r {
  text-align: right;
}

/* line 80, scss/_base.scss */
.tx-c {
  text-align: center;
}

/* line 82, scss/_base.scss */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

/* line 85, scss/_base.scss */
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

/* line 88, scss/_base.scss */
.clearfix {
  clear: both;
}

/* line 90, scss/_base.scss */
.link-bl, .link-bl a {
  color: #333;
  text-decoration: none;
}

/* line 93, scss/_base.scss */
.link-u a {
  text-decoration: underline;
}

/* line 95, scss/_base.scss */
.flex {
  display: flex;
}

/* line 97, scss/_base.scss */
.container:after,
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* line 102, scss/_base.scss */
.r {
  font-weight: bold;
  color: #b20303;
}

/* line 103, scss/_base.scss */
.u {
  font-weight: bold;
  text-decoration: underline;
}

/* line 104, scss/_base.scss */
.b {
  font-weight: bold;
}

/* line 105, scss/_base.scss */
.y {
  font-weight: bold;
  background: linear-gradient(rgba(0, 0, 0, 0) 60%, #ffff00 60%);
}

/* line 107, scss/_base.scss */
article img {
  width: 100%;
  max-width: 100%;
}

/* 例:幅640px高さ360pxの画像の場合 */
/* line 112, scss/_base.scss */
#targetElm {
  height: 0;
  /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
  padding-top: 56.25%;
  background: url("bg.png") 0 0 no-repeat;
  background-size: contain;
}

@media screen and (min-width: 480px) {
  /* line 120, scss/_base.scss */
  .container {
    width: 85%;
  }
}
/* line 124, scss/_base.scss */
.sm {
  display: none;
}

@media screen and (max-width: 425px) {
  /* line 127, scss/_base.scss */
  .pc {
    display: none;
  }

  /* line 128, scss/_base.scss */
  .sm {
    display: block;
  }
}
/* line 14, scss/style.scss */
header {
  justify-content: center;
  align-items: center;
  width: 100%;
}
/* line 18, scss/style.scss */
header div {
  width: 100%;
}
/* line 21, scss/style.scss */
header img {
  display: block;
  width: 100%;
}

/* line 28, scss/style.scss */
.waku {
  max-width: 967px;
  width: 70.79063%;
  margin: 0 auto;
  background-color: #b20303;
  background-size: cover;
  border-top: none;
  border-bottom: none;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  /* line 28, scss/style.scss */
  .waku {
    width: 90%;
  }
}
@media screen and (max-width: 425px) {
  /* line 28, scss/style.scss */
  .waku {
    width: 100%;
  }
}

/* line 47, scss/style.scss */
.content {
  background: #FFF;
  width: 95%;
  margin: 0 auto;
}

/* line 53, scss/style.scss */
.bun {
  padding: 40px;
}
@media screen and (max-width: 425px) {
  /* line 53, scss/style.scss */
  .bun {
    padding: 2em 1em;
  }
}
/* line 58, scss/style.scss */
.bun p {
  margin-bottom: 2em;
  color: #000;
}
/* line 62, scss/style.scss */
.bun img {
  max-width: 500px;
  width: auto;
  height: auto;
}
@media screen and (max-width: 425px) {
  /* line 62, scss/style.scss */
  .bun img {
    max-width: 100%;
  }
}
/* line 70, scss/style.scss */
.bun .kessai {
  display: flex;
  width: 100%;
  padding: 30px 0;
  box-shadow: 0px 5px 13px 0px rgba(12, 2, 5, 0.65);
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
  font-size: 30px;
  font-weight: bolder;
  text-decoration: none;
  letter-spacing: -.05em;
  line-height: 1;
}
@media screen and (max-width: 425px) {
  /* line 70, scss/style.scss */
  .bun .kessai {
    padding: 20px 10px;
    font-size: 20px;
  }
}
/* line 89, scss/style.scss */
.bun .ikkatsu {
  background: #0f7812;
  margin-bottom: 30px;
}
/* line 93, scss/style.scss */
.bun .bunkatsu {
  background: #ab050f;
}
/* line 96, scss/style.scss */
.bun .right {
  width: 1em;
  height: 1em;
  margin-right: 20px;
}

/* line 103, scss/style.scss */
h2 {
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 48px;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 1366px) {
  /* line 103, scss/style.scss */
  h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 103, scss/style.scss */
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  /* line 103, scss/style.scss */
  h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 425px) {
  /* line 103, scss/style.scss */
  h2 {
    padding: 0 10px;
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
/* line 126, scss/style.scss */
h2 span {
  display: block;
  position: relative;
  z-index: 100;
  background: url(./img/h2bk.jpg);
  background-color: #b22f1b;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFB22F1B', endColorstr='#FF89351A');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IyMmYxYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzg5MzUxYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b22f1b), color-stop(100%, #89351a));
  background-image: -moz-linear-gradient(top, #b22f1b 0%, #89351a 100%);
  background-image: -webkit-linear-gradient(top, #b22f1b 0%, #89351a 100%);
  background-image: linear-gradient(to bottom, #b22f1b 0%, #89351a 100%);
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* line 140, scss/style.scss */
.h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(./img/cloud.png);
  width: 95%;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /*	&::before {
  		content: "";
  		background: url(./img/before.png);
  	    background-size: contain;
  		position: relative;
  		top: 8px;
  		width: 180px;
  		height: 50px;
  	}
  
  	&::after {
  	    content: "";
  	    background: url(./img/after.png);
  	    background-size: contain;
  	    position: relative;
  	    top: 8px;
  	    width: 132px;
  	    height: 35px;
  	}
  */
}
/* line 151, scss/style.scss */
.h2 h2 {
  background: url(./img/h2bk.jpg);
  background-color: #b22f1b;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFB22F1B', endColorstr='#FF89351A');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IyMmYxYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzg5MzUxYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b22f1b), color-stop(100%, #89351a));
  background-image: -moz-linear-gradient(top, #b22f1b 0%, #89351a 100%);
  background-image: -webkit-linear-gradient(top, #b22f1b 0%, #89351a 100%);
  background-image: linear-gradient(to bottom, #b22f1b 0%, #89351a 100%);
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 187, scss/style.scss */
.copy {
  background: #b20303;
  padding: 20px 0;
  text-align: center;
  color: #FFF;
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 14px;
  line-height: 1;
}

/* line 199, scss/style.scss */
.tour {
  background: url(./img/tourbk.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 425px) {
  /* line 199, scss/style.scss */
  .tour {
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #b20303;
  }
}
/* line 208, scss/style.scss */
.tour h2 {
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 425px) {
  /* line 199, scss/style.scss */
  .tour {
    padding: 50px 0;
  }
}
/* line 218, scss/style.scss */
.tour img {
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 425px) {
  /* line 218, scss/style.scss */
  .tour img {
    width: 30px;
    height: 30px;
  }
}
/* line 226, scss/style.scss */
.tour p {
  text-shadow: 0px 1px 16.8px rgba(12, 2, 5, 0.22);
  font-size: 20.89px;
  letter-spacing: 0.26em;
  font-family: 'Libre Baskerville', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (max-width: 425px) {
  /* line 226, scss/style.scss */
  .tour p {
    font-size: 10px;
  }
}
/* line 235, scss/style.scss */
.tour .tourtitle {
  font-weight: bolder;
  letter-spacing: -.3em;
}
@media screen and (max-width: 425px) {
  /* line 235, scss/style.scss */
  .tour .tourtitle {
    letter-spacing: 0;
  }
}
/* line 242, scss/style.scss */
.tour .big {
  font-size: 90.71px;
  text-shadow: 0px 1px 16.8px rgba(12, 2, 5, 0.22);
}
@media screen and (max-width: 425px) {
  /* line 242, scss/style.scss */
  .tour .big {
    font-size: 25px;
  }
}
/* line 249, scss/style.scss */
.tour .mid {
  font-size: 83.84px;
  text-shadow: 0px 1px 16.8px rgba(12, 2, 5, 0.22);
}
@media screen and (max-width: 425px) {
  /* line 249, scss/style.scss */
  .tour .mid {
    font-size: 20px;
  }
}
/* line 256, scss/style.scss */
.tour .small {
  font-size: 61.85px;
  text-shadow: 0px 1px 16.8px rgba(12, 2, 5, 0.22);
}
@media screen and (max-width: 425px) {
  /* line 256, scss/style.scss */
  .tour .small {
    font-size: 20px;
  }
}

/* line 267, scss/style.scss */
.detail {
  background: #000;
}
/* line 270, scss/style.scss */
.detail h2 {
  letter-spacing: -0.02em;
}
/* line 273, scss/style.scss */
.detail .h2 {
  width: 110%;
  margin-right: -5%;
  margin-left: -5%;
}
/* line 279, scss/style.scss */
.detail h3 {
  padding: 50px 0 65px;
  text-align: center;
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 32px;
}
/* line 286, scss/style.scss */
.detail h4 {
  background: #b20303;
  padding: 12px 30px;
  margin: 30px -30px 30px;
  border-radius: 5px;
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 425px) {
  /* line 286, scss/style.scss */
  .detail h4 {
    padding: 12px 15px;
    margin: 30px 0;
  }
}
/* line 303, scss/style.scss */
.detail .bunsho {
  background: #FFF;
  margin: 0 35px 0;
  padding: 40px 50px;
}
@media screen and (max-width: 425px) {
  /* line 303, scss/style.scss */
  .detail .bunsho {
    margin: 0 15px;
    padding: 40px 30px;
  }
}
/* line 312, scss/style.scss */
.detail .bunsho p {
  margin-bottom: 2em;
  color: #333;
}
/* line 317, scss/style.scss */
.detail .bunsho img {
  max-width: 500px;
}
@media screen and (max-width: 425px) {
  /* line 317, scss/style.scss */
  .detail .bunsho img {
    max-width: 100%;
  }
}
/* line 326, scss/style.scss */
.detail .detail01 {
  background: url(./img/detail1bk.jpg);
  background-size: cover;
}
/* line 330, scss/style.scss */
.detail .detail02 {
  background: url(./img/detail2bk.jpg);
  background-size: cover;
  background-position-y: -110px;
}
/* line 335, scss/style.scss */
.detail .detail03 {
  background: url(./img/detail3bk.jpg);
  background-size: cover;
  background-position-y: -110px;
}
