@charset "UTF-8";

/* CSS Document */
/* ======================================
common
====================================== */
* {
    margin: 0px;
    padding: 0px;
}

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

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    word-break: break-all;
    font-weight: 600;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    background-color: #E5E5E5;
    color: #5F5F5F;
    overscroll-behavior: none;
}

body::-webkit-scrollbar {
    display: none;
}

body.hidden {
    overflow: hidden;
}

a {
    text-decoration: none;
    outline: none;
    color: #222;
    transition: all 0.3s ease-in-out;
}

a * {
    transition: all 0.3s ease-in-out;
}

a:hover {
    cursor: pointer;
}

a[href] {
    transition: all 0.3s ease-in-out;
}

a[href]:hover {
    cursor: pointer;
}

/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    a:hover {
        cursor: default;
    }

    a[href]:hover {
        cursor: default;
    }
}

/*---- PC／1401px以上 ----*/
p {
    color: #5F5F5F;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.89;
}

/*---- タブレット／769px以上〜1400px以下 ----*/
@media only screen and (max-width: 1400px) {
    p {
        font-size: calc((18 / 1400) * 100vw);
    }
}

/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    p {
        font-size: calc((14 / 375) * 100vw);
        line-height: 1.57;
    }
}

img {
    width: 100%;
    max-width: 100%;
    border-style: none;
    vertical-align: bottom;
}

ul,
dl,
ol {
    text-indent: 0;
}

li {
    list-style: none;
}


/* -----------------------------
#wrapper
----------------------------- */
#wrapper {
    position: relative;
    animation: fadeIn 1s ease 0s 1 normal;
}

#wrapper:not(.overflowVisible) {
    overflow: hidden;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}


/* -----------------------------
.pc.sp
----------------------------- */
/*---- PC／1401px以上 ----*/
.pc {
    display: block;
}

.sp {
    display: none;
}

/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ======================================
common parts
====================================== */
/* -----------------------------
.common__inner
----------------------------- */
/*---- PC／1401px以上 ----*/
.common__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
    position: relative;
    z-index: 1;
}

/*---- タブレット／769px以上〜1400px以下 ----*/
@media only screen and (max-width: 1400px) {
    .common__inner {
        padding: 0 calc((100 / 1400) * 100vw);
    }
}

/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    .common__inner {
        max-width: inherit;
        padding: 0 calc((20 / 375) * 100vw);
    }
}

/* -----------------------------
.common__bgGray
----------------------------- */
.common__bgGray {
    background-color: #E5E5E5;
}

/* -----------------------------
.common__bgBlack
----------------------------- */
.common__bgBlack {
    background-color: #222222;
}


/* -----------------------------
.breadcrumb
----------------------------- */
/*---- PC／1401px以上 ----*/
.breadcrumb {
    padding-top: 20px;
}

.breadcrumb .breadcrumb__list {
    display: inline;
}

.breadcrumb .breadcrumb__list li {
    display: inline;
    font-size: 1.2rem;
    line-height: 1.4;
}

.breadcrumb .breadcrumb__list li+li {
    margin-left: 5px;
}

.breadcrumb .breadcrumb__list li+li::before {
    content: ">";
    margin-right: 5px;
}

.breadcrumb .breadcrumb__list li a:hover {
    opacity: 0.5;
}

/*---- タブレット／769px以上〜1400px以下 ----*/
@media only screen and (max-width: 1400px) {
    .breadcrumb {
        padding-top: calc((20 / 1400) * 100vw);
    }

    .breadcrumb .breadcrumb__list li {
        font-size: calc((12 / 1400) * 100vw);
    }

    .breadcrumb .breadcrumb__list li+li {
        margin-left: calc((5 / 1400) * 100vw);
    }

    .breadcrumb .breadcrumb__list li+li::before {
        margin-right: calc((5 / 1400) * 100vw);
    }

}

/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    .breadcrumb {
        padding-top: calc((10 / 375) * 100vw);
    }

    .breadcrumb .breadcrumb__list li {
        font-size: calc((10 / 375) * 100vw);
    }

    .breadcrumb .breadcrumb__list li+li {
        margin-left: calc((5 / 375) * 100vw);
    }

    .breadcrumb .breadcrumb__list li+li::before {
        margin-right: calc((5 / 375) * 100vw);
    }

}

/* -----------------------------
.fade in
----------------------------- */
.js-scroll {
	transition: all .6s ease;
	transform: translateY(15px);
	opacity: 0;
}
  
.js-scroll.is-show {
	transform: translateY(0);
	opacity: 1;
}
/* -----------------------------
.common__cts-ttl01
----------------------------- */
/*---- PC／1401px以上 ----*/
.common__cts-ttl01Wrap {
    width: 100vw;
	height: 100vh;
    max-width: 1000px;
    margin: 0 auto;
	display: grid;
	place-items: center;
	position: relative;
}




.common__cts-ttl01Wrap .ttl {
	font-size: 6.2em;
	text-align: center;
	margin:  auto;               /* 中央寄せ */
}

/*---- タブレット／769px以上〜1400px以下 ----*/
@media only screen and (max-width: 1400px) {
    .common__cts-ttl01Wrap {
        padding: 0 calc((100 / 1400) * 100vw);
		 width: auto;
    }
}

/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    .common__cts-ttl01Wrap {
        max-width: inherit;
        padding: 0 calc((20 / 375) * 100vw);
		height: 90vh;
    }
}

/*-----------------------------
scroll
-------------------------------*/
/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 50%;
  top: 80%;
  writing-mode: vertical-rl;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -100px;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}



/* -----------------------------
.common__cts-table01
----------------------------- */
/*---- PC／1401px以上 ----*/
.common__cts-table01 {
    font-size: 1.6rem;
    line-height: 1.4;
	font-weight: 400;
}

.common__cts-table01 table {
	margin: auto;
}


.common__cts-table01 table th {
    border-bottom: solid 1.5px #707070;
    padding: 30px;
    min-width: 105px;
	text-align: center;
}

.common__cts-table01 table td {
    padding: 0 0 0 40px;
}


/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    .common__cts-table01 {
        font-size: calc((15 / 375) * 100vw);
        line-height: 1.43;
		
    }

    .common__cts-table01 table {
        min-width: 100%;
    }

    .common__cts-table01 table th {
        border-bottom: solid 1.5px #707070;
        padding: calc((10 / 375) * 100vw);
        min-width: calc((90 / 375) * 100vw);
		display: inline-block;
		width: 100%;
	    float: left;
		text-align: left;
    }

    .common__cts-table01 table td {
        padding: calc((20 / 375) * 100vw);
		display: inline-block;
		width: 100%;
	    float: left;
    }

}

/* -----------------------------
.common__cts-btn01
----------------------------- */
/*---- PC／1401px以上 ----*/
.common__cts-btn01 {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
	padding: 20px 50px;
	border: 1px solid #000000;
}



/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    .common__cts-btn01 {
        font-size: calc((14 / 375) * 100vw);
		padding: 20px 20px;
    }

}



/* ======================================
common / #footer
====================================== */
/*---- PC／1401px以上 ----*/
#footer {
    max-width: 1000px;
    margin: 20px auto;
	text-align: center;
}


#footer small{
    font-weight: 600;
    font-size: 1.2rem;

}



/*---- SP／768px以下 ----*/
@media only screen and (max-width: 768px) {
    #footer {
        max-width: 100%;
    }

}

/*---------自動翻訳OFF----------*/

.notranslate {
    translate: none;
}