@media screen and (min-width: 769px) {
  main {
    padding-top: 103px;
    background-color: #fafafa;
  }
  main .eyecatch {
    position: relative;
    height: 276px;
  }
  main .eyecatch .bg {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 240px);
    height: 100%;
  }
  main .headline {
    position: absolute;
    left: 120px;
    bottom: 0;
    width: 300px;
    background-color: rgba(250, 250, 250, 0.9);
    padding-top: 40px;
    box-sizing: border-box;
  }
  main .headline h2 {
    color: #128115;
    margin-bottom: 20px;
  }
  main .headline h2:after {
    display: block;
    content: url(../img/wave.svg);
  }
  main .headline h1 {
    color: #644848;
    font-size: 3.5rem;
    font-weight: 600;
  }
  main .main {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 80px;
    box-sizing: border-box;
    border: 1px solid #dddddd;
  }
  main .main .date {
    font-size: 1.6rem;
    color: #707070;
    margin-bottom: 15px;
  }
  main .main .title {
    font-size: 3rem;
    color: #644848;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 30px;
  }
  main .main h2 {
    font-size: 2.5rem;
    color: #644848;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 30px;
  }
  main .main h3 {
    font-size: 2rem;
    color: #644848;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 30px;
  }
  main .main p {
    line-height: 1.75;
    color: #222222;
    font-size: 1.6rem;
  }
  main .pagenation {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .pagenation > * + * {
    margin-left: 155px;
  }
  main .pagenation a {
    color: #707070;
    text-decoration: none;
  }
  main .breadcrumb {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0 120px 20px 120px;
    margin-top: 120px;
  }
  main .breadcrumb ul {
    display: flex;
  }
  main .breadcrumb ul a {
    text-decoration: none;
  }
  main .breadcrumb ul li:not(:last-child) a {
    color: #707070;
  }
  main .breadcrumb ul li:last-child a {
    color: #90b592;
  }
  main .breadcrumb ul li + li:before {
    content: '>';
    margin: 0 0.5rem;
    font-weight: 400;
  }
  main .contact-area {
    position: relative;
    box-sizing: border-box;
    padding: 75px 240px;
    background: url(../img/contactarea_bg.jpg) no-repeat center center/cover;
  }
  main .contact-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  main .contact-area .container {
    position: relative;
    display: flex;
    border-radius: 10px;
    border: 2px solid #ffffff;
    transition: all 0.2s;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  main .contact-area .container:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  main .contact-area .container:before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 2px;
    height: 80px;
    background-color: #ffffff;
  }
  main .contact-area .container a {
    position: relative;
    display: block;
    width: 50%;
    text-align: center;
    padding: 60px 0;
  }
  aside.contact {
    display: flex;
    position: fixed;
    right: 0;
    top: 143px;
    flex-direction: column;
    z-index: 99;
  }
  aside.contact a {
    padding: 20px 12px;
    background-color: #90b592;
    color: #ffffff;
    box-shadow: 0 0 15px #00000029;
    writing-mode: vertical-rl;
    text-decoration: none;
    transition: all 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  }
  aside.contact a + a {
    margin-top: 5px;
  }
  aside.contact a:hover {
    background-color: #128115;
  }
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 72px;
    background-color: #fafafa;
  }
  main .eyecatch {
    position: relative;
    height: 80px;
  }
  main .eyecatch .bg {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 40px);
    height: 100%;
  }
  main .eyecatch .headline {
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 173px;
    background-color: rgba(250, 250, 250, 0.9);
    padding-top: 20px;
    box-sizing: border-box;
  }
  main .eyecatch .headline h2 {
    font-size: 1.2rem;
    color: #128115;
    margin-bottom: 0.5rem;
  }
  main .eyecatch .headline h2:after {
    display: block;
    content: url(../img/wave.svg);
  }
  main .eyecatch .headline h1 {
    color: #644848;
    font-size: 2rem;
    font-weight: 600;
  }
  main .main {
    margin: 20px 0 40px 0;
    padding: 20px;
    box-sizing: border-box;
  }
  main .main .date {
    font-size: 1.2rem;
    color: #707070;
    margin-bottom: 10px;
  }
  main .main .title {
    font-size: 1.5rem;
    color: #644848;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
  }
  main .main h2 {
    font-size: 1.75rem;
    color: #644848;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
  }
  main .main h3 {
    font-size: 1.5rem;
    color: #644848;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
  }
  main .main p {
    line-height: 1.75;
    color: #222222;
    font-size: 1.2rem;
  }
  main .pagenation {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .pagenation > * + * {
    margin-left: 40px;
  }
  main .pagenation a {
    color: #707070;
    text-decoration: none;
    font-size: 1.3rem;
  }
  main .breadcrumb {
    font-size: 1rem;
    font-weight: 600;
    padding: 0 20px 10px 20px;
    margin-top: 80px;
  }
  main .breadcrumb ul {
    display: flex;
  }
  main .breadcrumb ul a {
    text-decoration: none;
    font-size: 1rem;
  }
  main .breadcrumb ul li:not(:last-child) a {
    color: #707070;
  }
  main .breadcrumb ul li:last-child a {
    color: #90b592;
  }
  main .breadcrumb ul li + li:before {
    content: '>';
    margin: 0 0.5rem;
    font-weight: 400;
    font-size: 1rem;
  }
  main .contact-area {
    position: relative;
    box-sizing: border-box;
    padding: 100px 20px 80px 20px;
    background: url(../img/contactarea_bg.jpg) no-repeat center center/cover;
  }
  main .contact-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  main .contact-area .container {
    position: relative;
    padding: 0 10px;
  }
  main .contact-area .container a {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px 52px;
    text-align: center;
    border: 1px solid #ffffff;
    box-sizing: border-box;
  }
  main .contact-area .container a img {
    width: 100%;
  }
  main .contact-area .container a + a {
    margin-top: 20px;
  }
}
/*# sourceMappingURL=single-news.css.map */