/* ============================================
    General
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

:root {
    --main-color: #28ac9f;
    --sub-color: #0e9285;
    --gray-color: #f6f6f6;
    --red-color: #FF0000;
    }

html,body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    }

img {
    width: 100%;
    vertical-align: bottom;
    }

.pageWrap {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
    }

h3 {
    margin: 30px auto;
    font-size: 30px;
    font-weight: 900;
    line-height: 42px;
    letter-spacing: 5px;
    text-align: center;
    }

.pageTitle h2 {
    position: relative;
    margin: 30px auto;
    padding-left: 36px;
    font-size: 30px;
    font-weight: 900;
    line-height: 36px;
    }

.pageTitle h2 span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    }

.pageTitle h2::before {
    content: "";
    position: absolute;
    display: block;
    top: 7px;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--red-color);
    border-radius: 50%;
    }

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 767px) {

h3 {
    margin: 24px auto;
    font-size: 24px;
    line-height: 30px;
    }

#request {
    margin-top: 64px;
    overflow: hidden;
    }

.pageTitle h2 {
    margin: 24px auto;
    padding-left: 30px;
    font-size: 24px;
    line-height: 30px;
    }

.pageTitle h2::before {
    width: 18px;
    height: 18px;
    }

}

/* ============================================
    Header
============================================ */

header {
    position:relative;
    width: 100%;
    z-index: 100;
    background: #FFF;
    border-bottom: solid 1px #CCC;
    transition: .3s;
    }

.navFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    }

header h1 { width: 125px; }
header nav ul {
    display: flex;
    gap:1rem;
    }

header nav a {
    display: block;
    color: #000;
    transition: .3s;
    }

header nav a:hover { color: var(--main-color); }

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 101;
    }
#nav-toggle div { position: relative;}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    border-radius: 20px;
    background: #333;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    }

#nav-toggle span:nth-child(1) { top: 0; }
#nav-toggle span:nth-child(2) { top: 10px; }
#nav-toggle span:nth-child(3) { top: 20px; }

/* toppage */
header.topNav { position:absolute; background: none; border: none; }
header.topNav h1 { display: none; }
header.topNav .navFlex { justify-content: right;}
header.topNav nav a { color: #FFF;}
header.topNav nav a:hover { color: var(--main-color); }
header.topNav #nav-toggle span { background: #FFF; }

/* fixed */
header.fixed {
    position:fixed;
    background: #FFF;
    z-index: 1000;
    opacity: 0.9;
    transition: .3s;
    animation: topNav-anime 0.5s forwards;
    }

@keyframes topNav-anime {
    0% {
        top: -60px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 0.9;
    }
}

header.fixed h1 { display: block; }
header.fixed .navFlex { justify-content: space-between;}
header.fixed nav a { color: #000;}
header.fixed nav a:hover { color: var(--main-color); }

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 767px) {

header {
    position: fixed;
    top: 0;
    background: rgba(255,255,255,.9);
    }

header h1 { width: 90px; z-index: 9999; }
header.fixed {
    background: rgba(255,255,255,.9);
    z-index: 1000;
    opacity: 1;
    transition: .3s;
    animation: none;
    }

header.topNav.fixed h1 img { filter: invert(0);}
.navFlex {
    height: auto;
    padding: 12px 0;
    }

header nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -100%;
    background: rgba(0,0,0,.9);
    width: 100%;
    height: 100vh;
    text-align: center;
    padding: 10px 0;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    }

#nav-toggle { display: block; }
.open #nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
    }

.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
    }

.open #nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
    }

header.open #nav-toggle span { background: #FFF; }
.open nav { transform: translateX(-100%); }
header h1 img { transition: .3s; }
header.open h1 img,
header.fixed.open h1 img { filter: invert(100%); }
header nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 80%;
    }

header nav ul li { width: 100%; }
header.topNav { position:fixed; background: none; border: none; }
header.topNav h1 {
    position: relative;
    z-index: 9999;
    display: block;
    }

header.topNav.open nav a { color: #000;}
header.topNav.fixed { background: rgba(255,255,255,.9); }
header.topNav h1 img { filter: invert(100%); }
header.topNav .navFlex { justify-content: space-between;}
header.topNav.fixed #nav-toggle span { background: #333; }
header.topNav.open.fixed #nav-toggle span { background: #FFF; }
header nav a {
    display: block;
    padding: 6px 0;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 5px;
    background: rgba(255,255,255,.75);
    border: solid 1px #FFF;
    border-radius: 50px;
    }

}

/* ============================================
    Footer
============================================ */

.footer-contact {
    position: relative;
    padding: 120px 0;
    background: url(../img/contact_bk.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    }

.footer-contact::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
    }

.footer-contact a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    padding: 60px;
    border-radius: 12px;
    z-index: 10;
    transition: .3s;
    overflow: hidden;
    }

.footer-contact a::after {
    background: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
    }

.footer-contact a:hover { color: #FFF; }
.footer-contact a:hover::after { transform: scale(1, 1); }
.footer-contactTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 0;
    }

.footer-contactTxt {
    font-size: 18px;
    font-weight: bold;
    }

.footer-box {
    background: #333;
    padding: 120px 0;
    }

.footer-box .pageWrap {
    display: flex;
    justify-content: space-between;
    }

.footer-boxLeft ul {
    display: flex;
    gap: 12px;
    }

.footer-boxLeft ul li { width: 30px; }
.footer-boxLeft ul li a { transition: .3s; }
.footer-boxLeft ul li a:hover { opacity: .5; }
.footerLogo { width: 240px; }
.footerAdd {
    margin: 30px auto;
    color: #FFF;
    }

.footerAdd span a {
    position: relative;
    display: inline-block;
    margin: 6px 0 0;
    padding-right: 9px;
    transition: .3s;
    }

.footerAdd span a::before {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    margin: auto;
    box-sizing: border-box;
    border-left: 8px solid transparent;
    border-top: 8px solid #FFF;
    transition: .3s;
    }

.footerAdd span a:hover { color: var(--main-color); }
.footerAdd span a:hover::before{ border-top-color: var(--main-color); }
.footer-boxRight { position: relative; }
.footerNav {
    display: flex;
    gap: 60px;
    }

.footerNav a {
    color: #FFF;
    transition: .3s;
    }

.footerNav a:hover { color: var(--main-color); }
.footerNav li { margin: 0 0 6px; }
.copy {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #FFF;
    }

.goTop {
    width: 100%;
    text-align: center;
    border-top:solid 1px #666;
    }

.goTop a {
    display: block;
    width: 100%;
    padding: 24px 0;
    background: #333;
    color: #FFF;
    transition: .3s;
    }

.goTop a span {
    position: relative;
    display: inline-block;
    padding-left: 42px;
    line-height: 30px;
    transition: .3s;
    }

.goTop a span::before {
    position: absolute;
    content: "";
    left: 0;
    width: 30px;
    height: 30px;
    background: url(../img/gotop_arrow.png) no-repeat;
    background-size: cover;
    }

.goTop a:hover { background: #444;}
.goTop a:hover span {
    transform: scale(1.1);
    }

@media only screen and (max-width: 1024px) {

.footer-contact { padding: 90px 0; }
.footer-contact a { padding: 48px; }
.footer-contactTitle { font-size: 54px; }
.footer-box { padding: 90px 0; }
.footerLogo { width: 180px; }
.footerNav { gap: 30px;}

}

@media only screen and (max-width: 767px) {

.footer-contact { padding: 60px 0; }
.footer-contact a {
    padding: 36px;
    flex-wrap: wrap;
    justify-content: center;
    }

.footer-contactTitle {
    font-size: 48px;
    line-height: 64px;
    }

.footer-box { padding: 60px 0; }
.footer-box .pageWrap { flex-wrap: wrap; }
.footer-boxLeft,
.footer-boxRight { width: 100%; }
.footer-boxLeft { margin: 0 0 60px;}
.footerAdd { margin: 24px auto; }
.footerLogo { width: 120px; }
.footerNav {
    gap: 21px;
    font-size: 13px;
    }
.copy {
    position: relative;
    margin: 60px auto 0;
    }

}

/* ============================================
    Top
============================================ */

.keyMovie {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
    }

.keyMovie video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    }

.keyMovie::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
    }

.keyvisual-content {
    position: absolute;
    top: 30%;
    left: 20%;
    z-index: 10;
    }

.keyvisual-content h1 { width: 240px; }
.keyvisual-content p {
    margin: 30px auto;
    color: #FFF;
    }

.keyvisual-content a {
    display: block;
    width: 375px;
    transition: .3s;
    }

.keyvisual-content a:hover { filter: brightness(1.2); }
.keyvisual-content a.keyLink {
    display: inline-block;
    width: auto;
    margin: 12px auto;
    color: var(--main-color);
    text-decoration: underline;
    transition: .3s;
    }

.keyvisual-content a.keyLink:hover { opacity: .5;}
.story { margin: 180px auto; }
.storyLogo {
    margin: 0 auto;
    width: 240px;
    }

.request {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    background: url(../img/request_bk.jpg);
    background-position: center;
    background-size: 100%;
    animation: bgscroll 14s linear infinite;
    }

@keyframes bgscroll {
    0% {background-position: 0 0;}
    100% {background-position: 0 1080px;}
    }

.request::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
    }

.st0{fill:#FFFFFF;}
.waveScrollTop {
    overflow: hidden;
    display: flex;
    position: absolute;
    z-index: 100;
    top: -1px;
    }

#requestWaveTop {
    width: 100vw;
    margin-left: -2px;
    animation :infinity-scroll-left 8s infinite linear 0.5s both;
    }

.waveScrollBottom {
    overflow: hidden;
    display: flex;
    position: absolute;
    z-index: 100;
    bottom: -1px;
    }

#requestWaveBottom {
    width: 100vw;
    margin-left: -2px;
    animation :infinity-scroll-right 12s infinite linear 0.5s both;
    }

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
    }

@keyframes infinity-scroll-right {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0%);
    }
    }

.request .pageWrap {
    position: relative;
    padding: 180px 0;
    z-index: 100;
    }

.request h3 { color: #FFF;}
.request p {
    text-align: center;
    color: #FFF;
    }

.request ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 30px auto;
    }

.request ul li { width: 100%; }
.request ul li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 24px;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    overflow: hidden;
    }

.request ul li a::after {
    background: var(--main-color);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
    }

.request ul li a:hover::after { transform: scale(1, 1); }
.request ul li a:hover .req-btn {
    background: #FFF;
    color: #000;
    }

.request ul li a:hover .req-btn::before {
    border-top: solid 3px #000;
    border-right: solid 3px #000;
    }

.request .req-img {
    overflow: hidden;
    width: 49%;
    border-radius: 9px;
    }

.request .req-content {
    position: relative;
    width: 49%;
    border-bottom: solid 1px #FFF;
    }

.request .req-content p { text-align: left; }
.request .req-title {
    font-size: 24px;
    font-weight: bold;
    }

.request .req-txt {
    position: absolute;
    bottom: 6px;
    }

.request .req-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 30px 6px 18px;
    background: #000;
    border-radius: 6px;
    transition: .3s;
    }

.request .req-btn::before {
    content: '';
    width: 9px;
    height: 9px;
    border: 0;
    border-top: solid 3px #FFF;
    border-right: solid 3px #FFF;
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -4px;
    transform: rotate(45deg);
    transition: .3s;
    }

.flow {
    display: block;
    margin: 180px auto;
    }

.flow p { text-align: center; }
.flow ul { margin: 30px auto 0; }
.flow ul li {
    border-top: solid 1px #000;
    padding: 18px 0;
    }

.flow ul li:last-child { border-bottom: solid 1px #000; }
.flow .pageWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

.flow .pageWrap p { text-align: left; }
.flow .flow-num {
    width: 10%;
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 0;
    }

.flow .flow-title {
    width: 20%;
    font-size: 24px;
    font-weight: 900;
    }

.flow .flow-txt {
    width: 70%;
    padding: 12px 0 12px 24px ;
    border-left: dotted 2px #000;
    }

.faq { margin: 180px auto; }
.faq p {
    margin: 30px auto;
    text-align: center;
    }

.qa-list dl {
    position: relative;
    margin: 30px 0 0;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 12px;
    }

.qa-list dl::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    height: 100%;
    width: 100%;
    border: solid 1px #000;
    border-radius: 12px;
    }

.qa-list dl:first-child { margin-top: 0;}
.qa-list dl::after {
    position: absolute;
    top: 18px;
    right: 24px;
    display: block;
    margin: auto;
    content: '＋';
    font-size: 24px;
    font-weight: 900;
    }

.qa-list .open::after { content: '－'; }
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 20px 66px;
    font-size: 16px;
    font-weight: 900;
    background: #FFF;
    border-radius: 12px;
    }

.qa-list dl dt::before {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
    display: block;
    content: 'Q.';
    }

.qa-list dl dd .aWrap::before {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    line-height: 1;
    position: absolute;
    left: 20px;
    display: block;
    content: 'A.';
    font-weight: bold;
    z-index: 10;
    }

.qa-list dl dd .aWrap.oneline::before { top: 12px; }
.qa-list dl dd {
    position: relative;
    padding: 6px 30px 30px 30px;
    background: #FFF;
    border-radius: 12px;
    }

.qa-list dl dd .aWrap {
    position: relative;
    padding: 20px 20px 20px 66px;
    background: var(--gray-color);
    border-radius: 9px;
    }

.qa-list dl dd p { margin: 30px 0 0; }
.qa-list dl dd p:first-child{
    text-align: left;
    margin-top: 0;
    }

@media only screen and (max-width: 1024px) {

.keyvisual-content { left: 10%; }
.keyvisual-content h1 { width: 180px; }
.story,
.flow,
.faq { margin: 120px auto; }
.storyLogo { width: 180px; }
.request .pageWrap { padding: 120px 0; }
.request ul li a { align-items: center; }
.request .req-txt {
    position: relative;
    bottom: auto;
    padding: 0 0 6px;
    }

.request .req-title { margin-bottom: 24px; }
.flow .flow-num { font-size: 42px; }
.flow .flow-title { font-size: 18px; }

}

@media only screen and (max-width: 767px) {

.keyvisual-content { top: 25%; }
.keyvisual-content h1 { display: none; }
.keyvisual-content a { width: 90%; }
.keyvisual-content p {
    margin: 30px 0;
    width: 90%;
    }

.keyvisual-content p br { display: none; }
.story, .flow, .faq { margin: 90px auto; }
.request .pageWrap { padding: 60px 0; }
.request ul li a {
    padding: 18px;
    flex-wrap: wrap;
    }

.request .req-img {
    width: 100%;
    margin: 0 0 18px;
    }

.request .req-content { width: 100%; }
.flow .pageWrap { flex-wrap: wrap; }
.flow .flow-num {
    width: 20%;
    font-size: 36px;
    line-height: 60px;
    }

.flow .flow-title { width: 80%; }
.flow .flow-txt {
    width: 100%;
    padding: 12px 0;
    border-top: dotted 2px #000;
    border-left: none;
    }

.faq p { margin: 24px auto; }
.qa-list dl dt {
    padding: 12px 48px;
    font-size: 14px;
    }

.qa-list dl dt::before {
    font-size: 30px;
    top: 7px;
    left: 12px;
    }

.qa-list dl::after {
    top: 12px;
    right: 18px;
    }

.qa-list dl dd { padding: 6px 12px 12px 12px; }
.qa-list dl dd .aWrap { padding: 12px 12px 12px 48px; }
.qa-list dl dd .aWrap::before {
    font-size: 30px;
    left: 12px;
    }

.qa-list dl dd .aWrap.oneline::before { top: auto; }

}

/* ============================================
    Request
============================================ */

.request-title .pageWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 120px auto;
    }

.request-titleLeft {
    width: 35%;
    overflow: hidden;
    border-radius: 12px;
    }

.request-titleRight {
    width: 50%;
    text-align: left;
    }

.request-titleRight h3 { text-align: left; }
.overview {
    text-align: left;
    padding: 60px 0 0;
    background: var(--gray-color);
    }

.overview h3 { text-align: left; }
.overview ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 60px auto;
    width: 95%;
    }

.overview ul li {
    position: relative;
    padding-left: 36px;
    }

.overview ul li::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    left: 0;
    background: url(../img/check.png) no-repeat;
    background-size: 24px 24px;
    }

.register a {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    background: var(--main-color);
    color: #FFF;
    padding: 24px 0;
    font-size: 18px;
    z-index: 10;
    transition: .3s;
    overflow: hidden;
    }

.register a span {
    position: relative;
    display: inline-block;
    padding-left: 36px;
    }

.register a span::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    left: 0;
    background: url(/img/reg_icon.png) no-repeat;
    background-size: 30px 30px;
    }

.register a::after {
    background: var(--sub-color);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .5s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
    }

.register a:hover::after { transform: scale(1, 1); }
.sample .pageWrap { margin: 120px auto; }
.sample p { text-align: center; }
.sample ul {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5%;
    margin: 60px auto;
    }

.sample ul li {
    display: block;
    width: 31%;
    margin: 0 0 30px;
    border-radius: 12px;
    overflow: hidden;
    }

@media only screen and (max-width: 1024px) {

.request-title .pageWrap { margin: 90px auto; }
.sample .pageWrap { margin: 90px auto; }

}

@media only screen and (max-width: 767px) {

.request-title .pageWrap {
    margin: 60px auto;
    flex-wrap: wrap;
    align-items: flex-start;
    }

.request-titleLeft,
.request-titleRight { width: 100%; }
.sample .pageWrap { margin: 60px auto; }
.sample ul { margin: 24px auto; }
.sample ul li {
    width: 48%;
    margin: 0 0 15px;
    border-radius: 9px;
    }

.overview { padding: 30px 0 0; }

}

/* ============================================
    News
============================================ */

.news { margin: 120px auto; }
.news dl {
    position: relative;
    margin: 0 0 30px;
    background: #FFF;
    border: 1px solid #000;
    border-radius: 12px;
    z-index: 10;
    }

.news dl::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    height: 100%;
    width: 100%;
    border: solid 1px #000;
    border-radius: 12px;
    }

.qa-list dl:first-child { margin-top: 0;}
.news dl a {
    position: relative;
    display: flex;
    text-align: left;
    margin: 0;
    padding: 20px ;
    font-size: 16px;
    font-weight: 900;
    background: #FFF;
    border-radius: 12px;
    transition: .3s;
    }

.news dl a:hover { color: var(--main-color);}
.news dl dt { width: 15%; }
.news dl dd { width: 85%; }

.pager {
    margin: 60px auto;
    display: flex;
    justify-content: center;
    }

.pager ul {
    display:flex ;
    align-items: center;
    gap: 12px;
    }

.pager ul a {
    display: inline-block;
    text-align: center;
    padding: 6px 12px;
    font-weight: bold;
    border: solid 1px #000;
    border-radius: 6px;
    transition: .3s;
    }

.pager ul a:hover { color: var(--main-color); }

@media only screen and (max-width: 1024px) {

.news { margin: 90px auto; }

}

@media only screen and (max-width: 767px) {

.news { margin: 60px auto; }
.news dl a {
    flex-wrap: wrap;
    padding: 12px;
    font-size: 14px;
    }

.news dl dt,
.news dl dd { width: 100%; }

.pager ul { gap: 9px; }
.pager ul a { padding: 3px 9px; }

}

/* ============================================
    News article
============================================ */

.newsBox {
    position: relative;
    margin: 0 0 30px;
    border: 1px solid #000;
    border-radius: 12px;
    z-index: 10;
    }

.newsBox::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    height: 100%;
    width: 100%;
    border: solid 1px #000;
    border-radius: 12px;
    }

.newsBox-content {
    position: relative;
    display: block;
    padding: 30px;
    background: #FFF;
    border-radius: 12px;
    }

.newsBox-content h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    }

.newsBox-content .date {
    display: inline-block;
    margin: 12px auto;
    padding: 6px 12px;
    background: var(--gray-color);
    border-radius: 9px;
    }

.backpage {
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    }

.backpage a {
    display: inline-block;
    padding: 6px 12px;
    border: solid 1px #000;
    font-weight: bold;
    border-radius: 9px;
    transition: .3s;
    }

.backpage a:hover { color: var(--main-color); }

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 767px) {

    .newsBox-content {
        padding: 24px;
    }
}

/* ============================================
    Rule
============================================ */

.rule { margin: 120px auto; }
.rule-txt { margin: 0 auto 120px;}
.rule h3 { text-align: left; }
.rule ul {
    margin-bottom: 120px;
    padding-left: 24px;
    list-style: decimal;
    }

.rule ul.ruleInList {
    margin-bottom: 0;
    padding-left: 24px;
    list-style: none;
    }

.rule ul.ruleInList li { counter-increment: cnt; }
.rule ul.ruleInList li::before {
	content: "(" counter(cnt) ")";
	display:inline-block;
    }

@media only screen and (max-width: 1024px) {

.rule { margin: 90px auto; }
.rule-txt { margin: 0 auto 90px; }
.rule ul { margin-bottom: 90px; }

}

@media only screen and (max-width: 767px) {

.rule { margin: 60px auto; }
.rule-txt { margin: 0 auto 60px; }
.rule h3 { letter-spacing: 2px; }

}

/* ============================================
    Company
============================================ */

.company {
    display: block;
    margin: 120px auto;
    }

.company p { text-align: center; }
.company ul { margin: 30px auto 0; }
.company ul li {
    border-top: solid 1px #000;
    padding: 18px 0;
    }

.company ul li:last-child { border-bottom: solid 1px #000; }
.company .pageWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

.company .pageWrap p { text-align: left; }
.company .company-title {
    width: 20%;
    font-size: 24px;
    font-weight: 900;
    }

.company .company-txt {
    width: 80%;
    padding: 12px 0 12px 24px ;
    border-left: dotted 2px #000;
    }

@media only screen and (max-width: 1024px) {

.company { margin: 90px auto; }

}

@media only screen and (max-width: 767px) {

.company { margin: 60px auto; }
.company .company-title {
    width: 30%;
    font-size: 18px;
    }

.company .company-txt { width: 70%; }

}

/* ============================================
    Privacy Policy
============================================ */

.privacy {
    display: block;
    margin: 120px auto;
    }

.privacy div.privacy-txt { margin: 0 auto 120px; }
.privacy h3 { text-align: left; }
.privacy ul {
    margin-bottom: 120px;
    padding-left: 30px;
    list-style: disc;
    }

.privacy ul.privacyInList { list-style: none; padding-left: 12px; }
.privacy ul.privacyInList li { counter-increment: cnt; }
.privacy ul.privacyInInList { margin: 0 ;}
.privacy .privacyInBox {
    border: solid 1px #CCC;
    margin: 18px auto;
    padding: 6px 18px;
    }

.privacy .privacyInBox p { margin: 12px auto; }
.privacy a {
    text-decoration: underline;
    transition: .3s;
    }

.privacy a:hover { color: var(--sub-color);}

@media only screen and (max-width: 1024px) {

.privacy { margin: 90px auto; }
.privacy div.privacy-txt { margin: 0 auto 90px; }
.privacy ul { margin-bottom: 90px; }

}

@media only screen and (max-width: 767px) {

.privacy { margin: 60px auto; }
.privacy div.privacy-txt { margin: 0 auto 60px; }
.privacy h3 { letter-spacing: 2px; }
.privacy ul { margin-bottom: 60px; }

}

/* ============================================
    Contact
============================================ */

.contact {
    display: block;
    margin: 120px auto;
    }

.contact dt {
    position: relative;
    margin-bottom: 24px;
    }

.contact dt span {
    display: inline-block;
    padding: 0 6px;
    margin-left: 6px;
    color: #FFF;
    background: var(--red-color);
    font-size: 12px;
    line-height: 18px;
    border-radius: 6px;
    }

.contact dt::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 60px;
    height: 2px;
    border-bottom: dotted 2px #666;
    }

.contact dd { margin: 0 0 30px; }
.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    border: solid 1px #666;
    border-radius: 9px;
    }

.contact input:focus {
    outline: none;
    border: solid 1px var(--main-color);
    }

.contact textarea { height: 120px; }
.formBtn {
    display: flex;
    margin: 60px auto;
    justify-content: space-between;
    }

.formBtn button {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 24px 0;
    color: #FFF;
    background: var(--main-color);
    font-size: 18px;
    border-radius: 9px;
    z-index: 10;
    transition: .3s;
    overflow: hidden;
    }

.formBtn button span {
    position: relative;
    display: inline-block;
    padding-left: 36px;
    }

.formBtn button span::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    left: 0;
    background: url(../img/reg_icon.png) no-repeat;
    background-size: 30px 30px;
    }

.formBtn button::after {
    background: var(--sub-color);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
    }

.formBtn button:hover::after { transform: scale(1, 1); }

@media only screen and (max-width: 1024px) {

.contact { margin: 90px auto; }

}

@media only screen and (max-width: 767px) {

.contact { margin: 60px auto; }
.formBtn button { padding: 18px 0; }

}

/* ============================================
    Contact - check - send
============================================ */

.contact.check dd {
    width: 100%;
    padding: 12px;
    border: solid 1px #666;
    border-radius: 9px;
    background: #f6f6f6;
    }

.contact.check h3 {
    font-size: 18px;
    letter-spacing: 1px;
    }

.formBtn button.formBack,
.formBtn button.formCheck { width: 49%; }
.formBtn button.formBack { background: #666; }
.formBtn button.formBack::after { background: #333; }
.formBtn button.formBack span::before {
    background: url(../img/back_icon.png) no-repeat;
    background-size: 30px 30px;
    top: -4px;
    }

.contact.send .formBtn { justify-content: center; }
.send p { text-align: center; }

@media only screen and (max-width: 1024px) {

.contact.check h3 {
    font-size: 18px;
    letter-spacing: 1px;
    text-align: left;
    }

}

@media only screen and (max-width: 767px) {

.formBtn { flex-wrap: wrap; gap: 12px; }
.formBtn button.formBack,
.formBtn button.formCheck {
    width: 100%;
    }

}