@charset "UTF-8";

@font-face {
    font-family: 'Roboto';
    src: url('/cmn/fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: 'Roboto';
    src: url('/cmn/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto';
    src: url('/cmn/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url('/cmn/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}

* {
    font-style: normal
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

*::before, *::after {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

html {
    font-style: normal;
    text-align: left;
    font-size: 16px;
    line-height: 1.3;
}

@media only screen and (max-width: 767px)  {
    html {
        font-size: 14px;
    }
}

body {
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 500;
    margin: 0;
    padding: 0;
    color: #333;
}

body * {
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: inherit;
}

table {
    font-size: 1em;
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,img {
    font-size: 1em;
    border: 0;
}

ol,ul {
    font-size: 1em;
    list-style: none;
}

caption,th {
    font-size: 1em;
    text-align: left;
}

q:after,q:before {
    font-size: 1em;
    content: '';
}

abbr,acronym {
    border: 0;
    font-size: 1em;
}

small {
    font-size: .8em;
}

large {
    font-size: 1.2em;
}

th {
    font-weight: 100;
}

img {
    vertical-align: bottom;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: 0;
}

footer {
    margin-top: auto;
}

.pcOnly {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .pcOnly {
    display: block;
  }
}

.spOnly {
  display: none;
}

@media only screen and (max-width: 767px)  {
  .spOnly {
    display: block;
  }
}


/*------------------------------------------

    contents

------------------------------------------*/
.container {
    margin: auto;
    padding: 0 35px;
}

.wrapper {
    display: block;
}

.under {
    text-align: center;
}

.under h1 {
    line-height: 1.3;
    font-weight: bold;
}

.under h1::after {
    display: none;
}

.under p {
    font-size: 16px;
    line-height: 1.5;
}

.under a {
    position: relative;
    line-height: 1;
    background-color: #3e3a39;
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.under a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    content: '';
    background-color: #861c3c;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all .3s;
    transition: all .3s;
    height: 100%;
    opacity: 0.25;
    z-index: 1;
}

.under a::after {
    content: "";
    background-image: url(/cmn/img/arrow-md-w.svg);
    position: absolute;
    background-repeat: no-repeat;
    z-index: 3;
    top: 20px;
}

.under span {
    position: absolute;
    z-index: 5;
}

@media print, screen and (min-width: 768px) and (max-width: 1023px) {
    main {
        width: 1023px;
        height: calc(100vh - 634px);
    }
}

@media print, screen and (min-width: 768px) {
    main {
        margin: 175px 0 120px;
    }

    .under h1 {
        font-size: 26px;
        margin-bottom: 45px;
    }

    .under a {
        width: 280px;
        height: 54px;
        font-size: 16px;
        margin: 42px auto 0;
    }

    .under a:after {
        right: 20px;
        width: 34px;
        height: 7px;
    }

    .under span {
        top: 18px;
        left: 25px;
    }

    .under a:hover::before {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
    }

}

@media only screen and (max-width: 767px)  {
    main {
        margin: 70px 0 50px;
    }

    .container {
        width: 100%;
        padding: 0;
    }

    .under {
        padding: 0 10px;
    }

    .under h1 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .under a {
        width: 220px;
        height: 44px;
        margin: 25px auto 0;
    }

    .under a:after {
        right: 15px;
        width: 25px;
        height: 5px;
    }

    .under span {
        top: 16px;
        left: 20px;
    }
}

/*------------------------------------------

    印刷用

------------------------------------------*/
@media print {
    .tc_header,
    .tc_footer {
        display: none;
    }
}