@charset "UTF-8";
.hamburger {
    display: none;
}
html {
    min-width: 1020px;
}
html, body{
    font-family: 'Roboto', 'Noto Sans JP', "游ゴシック", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 62.5%;
}
@media (max-width: 767px) {
    html {
        min-width: auto;
    }
}
/*--FAQ header--*/
#header{
	background-color: #FFFFFF;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 10000;
	transition: .2s;
	height: 87px;
}
header.scroll {
	box-shadow: 0px 3px 3px rgb(0 0 0/20%);
}
header .inner {
    max-width: 980px;
	height: 87px;
	margin: 0 auto;
	display: flex;
    align-items: center;
	justify-content: space-between;
}
header .logo {
	width: 21%;
	margin: 0 auto 0 0;
	padding: 15px 0 15px;
}
header .sub-header{
    display: flex;
    align-items: flex-start;
    letter-spacing: 0.05em;
}
header .sub-header p{
    font-size: 1.2rem;
    color: #505050;
}
header p span{
    font-size: 1.4rem;
}
@media (max-width: 767px) {
	header {
        display: block;
	}
    header .inner {
        height: 77px;
        margin: auto 5%;
    }
	header .logo{
        width: 160px;
        padding: 20px 0;
        transform: translateX(0);
	}
    header p span{
        font-size: 1.2rem;
    }
    header .sub-header{
        flex-direction: column;
        letter-spacing: 0.025em;
    }
}

/*---見出し---*/
section div.inner .section-heading p{
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin: auto;
    padding: 0 1.5em 0.5em;
    border-bottom: 3px solid var(--faq-color-1);
    line-height: 3rem;
    color: var(--faq-color-1);;
    font-style: italic;
    letter-spacing: 0.2rem;
}

/*---#faq_top---*/
#faq_top{
    width: 100%;
    margin-top: 30px;
}
#faq_top #text{
    margin: 60px auto 30px;
    width: 75%;
    max-width: 1020px;
}
#faq_top #text p{
    text-align: center;
    margin-bottom: 30px;
}
#faq_top #text p:first-child{
    margin-bottom: 20px;
    font-weight: bold;
}
#faq_top ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#faq_top ul li{
    width: 30%;
    margin-bottom: 15px;
}
#faq_top ul li a{
    text-decoration: none;
    padding: 10px;
    box-sizing: border-box;
    background: #ebf6fb;
    color: #39abd7;
    display: block;
    width: 100%;
    border-bottom: 2px solid #fff;
}
#faq_top ul li a:hover{
    border-bottom: 2px solid #39abd7;
}
/*---#category---*/
#category {
    max-width: 1020px;
    margin: 40px auto;
    padding: 0 20px;
}
@media (max-width: 767px) {
    #category {
        padding: 0 5vw;
    }
}
#category h2{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 50px;
}
#category article ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 767px) {
    #category article ul {
        max-width: 500px;
    }
}
#category article ul li {
    width: calc(100% / 3 - 90px);
}
#category article ul li br {
    display: none;
}
@media (max-width: 767px) {
    #category article ul {
        gap: 4vw;
    }
    #category article ul li {
        width: calc(100% / 2 - 2vw);
    }
}
@media (max-width: 499px) {
    #category article ul li br {
        display: initial;
    }
}
#category article .copy {
    text-align: center;
    margin: 50px 0 30px;
}
#category article .copy p {
    display: inline-block;
    font-size: 16px;
    line-height: 1.7;
    font-weight: bold;
}
#category article ul li div {
    position: relative;
    height: 0;
    padding-bottom: 76px;
}
#category article ul li a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 12px;
    border: 2px solid #39abd7;
    border-radius: 10px;
    transition: 0.25s;
}
#category article ul li a::after {
    position: absolute;
    bottom: 15px;
    left: 50%;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #333 transparent transparent transparent;
    transform: translate(-50%, 0);
    transition: all .25s;
}
@media (max-width: 499px) {
    #category article ul li a::after {
        bottom: 10px;
    }
}
#category article ul li a:hover {
    color: #fff;
    background-color: #39abd7;
    opacity: 1;
    transform: translateY(3px);
}
#category article ul li a:hover::after {
    border-top-color: #fff;
    transform: translate(-50%, 3px);
}
/*---#youtube---*/
#youtube{
    width: 75%;
    max-width: 1020px;
    margin: 0 auto 70px;
    text-align: center;
}
/*---#faq_content---*/
#faq_content{
    max-width: 1020px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    #faq_content {
        padding: 0 5vw;
    }
}
#faq_content h3{
    font-size: 30px;
    font-weight: bold;
    padding: 5px 30px;
    border-left: 8px solid #39abd7;
}
@media (max-width: 767px) {
    #faq_content h3 {
        font-size: 20px;
        padding: 5px 20px;
    }
}
#faq_content h4{
    font-size: 20px;
    font-weight: bold;
    padding: 30px 0 10px 38px;
}
@media (max-width: 767px) {
    #faq_content h4 {
        font-size: 16px;
        padding: 30px 0 10px;
    }
}
#faq_content dl {
    width: 80%;
    max-width: 1020px;
    margin: 0 auto;
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
    #faq_content dl {
        width: 100%;
        max-width: 700px;
    }
}
#faq_content dt {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}
#faq_content dt::before {
    position: absolute;
    top: 1px;
    left: 0;
    content: '\FF1F';
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
    color: #FFFFFF;
    background-color: #39abd7;
    padding: 0.5em;
    border-radius: 100vh;
}
#faq_content dd {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}
#faq_content dd::before {
    position: absolute;
    top: 1px;
    left: 0;
    content: '\FF1F';
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
    color: #DF0074;
}
#faq_content dd p{
    font-weight: bold;
}
#faq_content dd span{
    font-size: 90%;
}
#faq_content article dl:last-child{
    border-bottom: none;
    margin-bottom: 50px;
}

#faq_content article .yt_logo img{
    width: 120px;
    height: auto;
    margin-top: 10px;
    display: block;
}

#faq_content article .initialRelease{
	width: 300px;
    color: #fff;
    align-items: center;
    line-height: 1em;
    border-radius: 5px;
    text-align: center;
    padding: 15px;
    transition: 0.3s;
    background: #e6b43c;
    cursor: pointer;
    border: none;
    display: block;
	text-decoration: none;
}

#header {
    max-width: 1020px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    #header {
        padding: 0 5vw;
    }
}
#header h1 {
    width: 200px;
    padding: 20px 20px 0 0;
}
#header h2 {
    vertical-align: bottom;
    font-size: 24px;
    padding-bottom: 10px;
}
@media (max-width: 767px) {
    #header h1 {
        width: 170px;
        padding: 20px 20px 0 0;
    }
    #header h2 {
        font-size: 16px;
    }
}
/**
 * GoTop
 */
#gotop-button {
    position: fixed;
    bottom: 4%;
    right: 9%;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    filter: drop-shadow(0px 3px 6px rgb(0,0,0,20%));
    transition: .3s all;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
    transition: all .5s;
}
#gotop-button a:hover {
    opacity: 1;
}
#gotop-button.show {
    opacity: 1;
    visibility: visible;
}

/*---footer---*/
footer article p{
    color: #000;
}

/*---faq table---*/
table,
tbody,
tr,
th,
td{
    border: solid 1px gray;
}

table{
    border: solid 3px #000;
    text-indent: initial;
    border-spacing: 2px;
}
tr{
    display: table-row;
    vertical-align: middle;
    border-color: middle;
}

th{
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
    font-size: 1.3rem;
}
td {
    display: table-cell;
    vertical-align: middle;
    font-size: 1.3rem;
}

.faq-table-102 {
    border-collapse: collapse;
    border: 3px solid gray;
}
.faq-table-102 th,
.faq-table-102 td {
    text-align-last: left;
    padding: 2px 10px;
        font-size: 1.3rem;
}
table#callcenter-table th:first-of-type {
    width: 120px;
}

table#callcenter-table th:nth-of-type(3),
table#callcenter-table td:nth-of-type(2) {
    width: 250px;
}

table#callcenter-table th:nth-of-type(2),
table#callcenter-table td:nth-of-type(1) {
    padding: 0.4rem 0px;
    width: 180px;
}

/*ポップアップ閉じるボタン*/
div.document-popup-close-button{
    width: 35px;
    height: 35px;
    position: absolute;
    right: -15px;
    top: -15px;
    text-align: center;
    background-color: #000000;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
  div.document-popup-close-button img{
    width: 50%;
}

/*ポップアップの背景を暗くする*/
div.document-notion-black-background{
    position: fixed;
    background-color: #000000;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000000000001;
}
div.white-content-box-document-notion{
    position: fixed;
    height: 75%;
    max-height: initial;
    top: 50%;
    bottom: 50px;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 50px 0;
    margin: 0 5%;
    z-index: 1000000000002;
    background-color: #F3F3F3;
}
div.white-content-box-document-notion div.white-content-box-inner-document{
    width: 90%;
    height: 75%;
    overflow-x: hidden;
    margin: 30px auto 0;
}
/*ポップアップ内タイトル*/
div.white-content-box-document-notion div.white-content-box-title-notion{
    padding: 0;
    text-align: center;
}

/*ポップアップタイトル文字*/
div.white-content-box-title-notion p {
    font-size: 2.8rem;
    line-height: 1.2em;
    padding: 0 5%;
}

div.content-container {
    margin-top: 87px;
}