@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  text-align: left;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
---------------------- ここまでReset ---------------------------- */
* {
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  background: #e6e6e6;
}

.wrapper {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .main {
    margin: 0 auto;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  .main {
    margin: 0 auto;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .Header {
    margin-top: 0;
    margin-left: auto;
    margin-bottom: 5px;
    margin-right: auto;
    width: 100%;
    border-bottom: dotted 1px #333;
  }
}
@media only screen and (min-width: 768px) {
  .Header {
    max-width: 1200px;
    margin-top: 0px;
    margin-left: auto;
    margin-bottom: 10px;
    margin-right: auto;
    width: 100%;
    border-bottom: dotted 2px #333;
  }
}
@media only screen and (max-width: 767px) {
  .Header__head {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 768px) {
  .Header__head {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
  }
}

.sub_title {
  color: #fff;
  display: block;
  margin: 15px auto 0;
  text-align: center;
  font-size: 1.5rem;
  line-height: 150%;
}

@media only screen and (max-width: 767px) {
  .contents {
    position: relative;
    overflow: hidden;
    margin: 0% 0;
    padding: 20px 5px;
  }
}
@media only screen and (min-width: 768px) {
  .contents {
    position: relative;
    overflow: hidden;
    margin: 2% 0;
    padding: 60px 5px;
  }
}

.contents:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 80%;
  margin: 3% -10% 0;
  background: #dc143c;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  z-index: -1;
}

.contents_inner {
  box-sizing: boder-box;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contents_inner {
    height: 100%;
    margin: 0 auto;
    padding: 10px 50px 10px;
    color: #333;
    text-align: center;
  }
  .contents_inner p {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    padding: 6px;
    line-height: 1.5;
    width: 100%;
    margin: 2% auto;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
  }
  .contents_inner p span {
    font-weight: bold;
    color: #0d0d0d;
  }
  .contents_inner .description {
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    padding: 10px;
    line-height: 1.6;
    width: 100%;
    margin: 2% auto;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
  }
  .contents_inner .description h2 {
    text-align: center;
    border-bottom: 2px dotted #333;
    font-size: larger;
    font-weight: bold;
    color: #333;
    margin-bottom: 6%;
  }
  .contents_inner .description span {
    font-weight: bold;
    color: #0d0d0d;
  }
  .contents_inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .contents_inner li {
    display: flex;
    align-items: baseline;
    font-size: 0.90rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 1%;
  }
}
@media only screen and (min-width: 768px) {
  .contents_inner {
    height: 100%;
    margin: 0 auto;
    padding: 50px 10px 20px;
    color: #333;
    text-align: center;
  }
  .contents_inner p {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    padding: 10px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 2% auto;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
  }
  .contents_inner p span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d0d0d;
  }
  .contents_inner .description {
    flex: 0 1 98%;
    text-align: left;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    padding: 10px;
    line-height: 1.6;
    margin: 0 1%;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
    color: #322926;
    padding: 2%;
    margin-bottom: 20px;
  }
  .contents_inner .description h2 {
    background: #810032;
    font-size: larger;
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #fff;
  }
  .contents_inner .description span {
    font-weight: bold;
    color: #0d0d0d;
  }
  .contents_inner .description ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .contents_inner .description li {
    display: flex;
    align-items: baseline;
    font-size: 1.0rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1%;
  }
}

@media only screen and (max-width: 767px) {
  .contents_R {
    position: relative;
    overflow: hidden;
    margin: 0%;
    padding: 10px 5px;
  }
}
@media only screen and (min-width: 768px) {
  .contents_R {
    position: relative;
    overflow: hidden;
    margin: -5% 0% 2%;
    padding: 100px 5px;
  }
}

.contents_R:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 80%;
  margin: 2% -10% 0;
  background: #dc143c;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  z-index: -1;
}

.linkEntryPage {
  margin: auto;
  width: 80%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.linkEntryPage a {
  display: block;
  border: 1px solid #1a4b77;
  padding: 20px 10px;
  background-color: #faffbc;
}

@media only screen and (max-width: 767px) {
  .imgContainer {
    display: flex;
    flex-direction: row;
  }
}
@media only screen and (min-width: 768px) {
  .imgContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
  }
}

.imgItems {
  display: block;
  margin: 0 0.5% 1%;
}

/* ############## ここから top.scss ############### */
@media only screen and (max-width: 767px) {
  #page-top {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #page-top {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
  }
}

@media only screen and (max-width: 767px) {
  #page-top a {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #page-top a {
    display: block;
    background: url(../img/btn_top.png);
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
  }
}

@media only screen and (max-width: 767px) {
  #page-top a:hover {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #page-top a:hover {
    display: block;
    text-decoration: none;
    opacity: .7;
  }
}

/* ################### 追加ここから ########################## */
@media only screen and (max-width: 767px) {
  .linkword {
    display: inline-block;
    color: rgba(92, 0, 48, 0.8);
    margin-top: 10px;
    margin-left: 5px;
    margin-bottom: 3px;
    padding: 6px;
    border: solid 3px rgba(92, 0, 48, 0.8);
    border-radius: 25px;
  }
  .linkword a {
    color: rgba(92, 0, 48, 0.6);
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .linkword {
    display: inline-block;
    color: rgba(92, 0, 48, 0.8);
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 3px;
    padding: 8px 10px;
    border: solid 4px rgba(92, 0, 48, 0.8);
    border-radius: 20px;
  }
  .linkword a {
    color: rgba(92, 0, 48, 0.6);
    font-size: 0.8rem;
    font-weight: bold;
  }
}

.mglrgt3px {
  margin-right: 3px;
}

.mgltp10px {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .mgtp-90px {
    margin-top: -30px;
  }
}
@media only screen and (min-width: 768px) {
  .mgtp-90px {
    margin-top: -190px;
  }
}

.shikishi {
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .shikishi {
    max-width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .shikishi {
    width: 70%;
    height: auto;
  }
}

/* ######### dscContainer ################ */
@media only screen and (max-width: 767px) {
  .shousahiContainer {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .shousahiContainer {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .dscContainer {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .dscContainer {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 auto;
  }
}

.T_oln_i {
  margin-top: 1rem;
  text-align: center;
}
.T_oln_i a {
  background-color: #dc143c;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .T_oln_i a {
    font-size: 1rem;
    padding: 0.5em 1em 0.4em 1em;
  }
}
@media only screen and (min-width: 768px) {
  .T_oln_i a {
    font-size: 1.2rem;
    padding: 0.6em 1em 0.5em 1em;
  }
}

/*# sourceMappingURL=style.css.map */
