@charset "UTF-8";

/*リセット*/
/* A Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

html {}

body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

ul,
ol {
    list-style: none;
}

a:not {
    text-decoration-skip-ink: auto;
}

img {
    max-width: 100%;
    display: block;
}

article>*+* {
    margin-top: 1em;
}

input,
button,
textarea,
select {
    font: inherit;
}

img:not([alt]) {
    filter: blur(10px)
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}



html {
    overflow: auto !important;
}

body {
    background: #f0f0f0;
    overflow-y: scroll;
    font-family: "Noto Sans JP", "Roboto", sans-serif;
    color: #666;
}

.wrap {
    position: relative;
    width: 100%;
}

.title {
    text-align: center;
    background: #F8F8F8;

    position: relative;
}

h1 {
    font-size: 16px;
    padding: 20px 7.1%;
    line-height: 1.5;
    color: #666;
    font-weight: bold;

}

.title button {
    font-size: 20px;
    position: absolute;
    left: 24px;
    top: 20px;
    color: #66cccc;
}

h2 {
    color: #00AFC4;
    font-size: 20px;
    padding: 15px 7.1%;
    text-align: center;
    font-weight: bold;
}

ul {
    background: #f8f8f8;
    border-top: 1px solid #ddd;
}

li:first-child() {
    border-top: 1px solid #ddd;
}

li {
    border-bottom: 1px solid #ddd;
    display: flex;
    position: relative;
/*    height: 130px;*/
}

button {
    display: block;
    border: none;
    position: inherit;
    background: none;
    width: 100%;
    text-align: left;
}

li button {
    display: flex;
    border: none;
    position: unset;
    background: none;
    width: 95%;
    text-align: left;
    padding: 20px 7.1%;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    align-items: center;
}

li button.question {
    display: flex;
    border: none;
    position: unset;
    background: none;
    width: 93%;
    text-align: left;
    padding: 20px 6.6% 20px 7.1%;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    align-items: center;
}

.text {
    padding: 20px;
    line-height: 1.8;
    font-size: 14px;
}

.faleft {
    background: url(../image/arrow_left.png) center center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    color: #66cccc;
    vertical-align: middle;
    top: 3px;
    left: 0;
}

.faright {
    background: url(../image/arrow_right.png) center center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 7.1%;
    top: calc(50% - 10px);
    color: #66cccc;
    vertical-align: middle;
}

li button.question .faright {
    right: 6.6%;
}


.questionmark {
    background: url(../image/question_round_solid.png) center center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    color: #66cccc;
    vertical-align: middle;
    margin-right: 4.2%;
	padding-left: 45px;
}

.imgbox{
	width: 45%;
	margin: 10px auto 40px;
	border: 2px solid #DDDDDD;
}
.fwb{
	font-size: 18px;
	font-weight: bold;
}
.mb0{
	margin-bottom: 0px !important;
}
.mb20{
	margin-bottom: 20px;
}
.sp_only {
    display: block;
}
.mt20{
	margin-top: 20px;
}
.pc_only {
    display: none;
}
.initialized{
	border: none;
	height:initial;
	background: initial;
}