@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
address {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
address {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    border: 0;
    margin: 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

img {
    vertical-align: bottom;
}


/*--------------------------------------------------------------
　全体共通コンポーネント
--------------------------------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    background: url(../images/bg_02.jpg) fixed;
    background-size: 3vw;
    color: #404040;
    font-size: 1.6em;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
}

@media only screen and (max-width: 767px) {
    body {
        background: url(../images/bg_02.jpg) fixed;
        background-size: 6.66667vw;
    }
}

@media all and (-ms-high-contrast: none) {
    body {
        /* IE11 */
    }
    body *::-ms-backdrop,
    body {
        overflow-y: scroll;
    }
}


/* タブレット / ポートレート表示のみ */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    body {
        font-size: 1.4em;
    }
}


/* スマートフォン表示 */

@media screen and (max-width: 767px) {
    body {
        font-size: 1.4em;
    }
}

a {
    text-decoration: none;
}


/*
　表示・非表示用クラス
--------------------------------------------------------------*/

.is-pc {
    display: block;
}

.is-sp {
    display: none;
}


/* スマートフォン表示 */

@media only screen and (max-width: 767px) {
    .is-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}


/*
　ボタン
--------------------------------------------------------------*/

.btn {
    display: block;
    position: relative;
    z-index: 2;
    padding: 12px;
    border: 1px solid #32588d;
    border-radius: 6px;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    -webkit-transition: all 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.btn:hover {
    color: #fff;
}

.btn::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    content: '';
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover::before {
    background: #247bcb;
    border-radius: 3px;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.btn::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #247bcb;
    border-right: 1px solid #247bcb;
    -webkit-transform: rotate(45deg) translate(-50%);
    transform: rotate(45deg) translate(-50%);
    content: '';
    -webkit-transition: all 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.btn:hover::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}


/*--------------------------------------------------------------
　トップページ
--------------------------------------------------------------*/

.site-frame {
    position: fixed;
    z-index: 1000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 2.08333vw solid #fff;
    -webkit-box-shadow: 0 0 0 1px #247bcb inset;
    box-shadow: 0 0 0 1px #247bcb inset;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .site-frame {
        border-width: 4vw;
    }
}

.site-outer-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 2.08333vw;
    left: 2.08333vw;
    z-index: 990;
    width: 16.66667vw;
    height: 3.83333vw;
    padding: 3.2vw 2vw 3.1vw 1.6vw;
    background: #247bcb;
    color: #fff;
    font-size: 1.5vw;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    letter-spacing: .3em;
    line-height: 1.5;
    pointer-events: auto;
}

@media only screen and (max-width: 767px) {
    .site-outer-title {
        top: 4vw;
        left: 4vw;
        width: 48.93333vw;
        height: 9.46667vw;
        font-size: 3.2vw;
        letter-spacing: .2em;
    }
}

.site-outer-title-link {
    display: block;
    margin-top: -0.16667vw;
    color: #fff;
}

.site-outer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 990;
    top: 2vw;
    right: 2vw;
    pointer-events: auto;
}

@media only screen and (max-width: 767px) {
    .site-outer-menu {
        top: 4vw;
        right: 4vw;
    }
}

.site-outer-sub {
    position: fixed;
    top: 6vw;
    right: 2vw;
    z-index: 980;
    pointer-events: auto;
}

@media only screen and (max-width: 767px) {
    .site-outer-sub {
        top: 13.33333vw;
        right: 4vw;
    }
}

.site-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2vw;
}

@media only screen and (max-width: 767px) {
    .site-wrapper {
        padding: 4vw;
    }
}

.site-wrapper-inner {
    padding-left: 16.6vw;
}

@media only screen and (max-width: 767px) {
    .site-wrapper-inner {
        padding-left: 0;
    }
}


/*
　サブメニューリスト
--------------------------------------------------------------*/

.sub-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 3.83333vw;
    height: 3.83333vw;
    margin-top: -0.08333vw;
    list-style: none;
    background: url(../images/bg_01.gif);
    border: 1px solid #247bcb;
}

@media only screen and (max-width: 767px) {
    .sub-list-item {
        width: 9.6vw;
        height: 9.6vw;
        margin-top: -0.08333vw;
        padding: 4vw 0;
    }
}

@media only screen and (max-width: 767px) {
    .sub-list-item:nth-child(2) {
        margin-top: -0.25vw;
    }
}

.sub-list-link {
    color: #247bcb;
    line-height: 1;
    font-size: 0.9vw;
}

@media only screen and (max-width: 767px) {
    .sub-list-link {
        font-size: 1.8vw;
    }
}

.sub-list-link:hover {
    opacity: .7;
}

.sub-list-link-image {
    width: 2.5vw;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .sub-list-link-image {
        width: 6.66667vw;
    }
}


/*
　検索
--------------------------------------------------------------*/

.search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 4vw;
}

@media only screen and (max-width: 767px) {
    .search {
        height: auto;
    }
}

.search-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 3.83333vw;
    height: 4vw;
    border: 1px solid #247bcb;
    border-radius: 0;
    background: #247bcb;
    outline: none;
    -webkit-appearance: none;
}

@media only screen and (max-width: 767px) {
    .search-submit {
        width: 8.8vw;
        height: 8.8vw;
    }
}

.search-submit-icon {
    width: 1.33333vw;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .search-submit-icon {
        width: 4vw;
    }
}

.search-input {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: -1px;
    width: 33.33333vw;
    height: 4vw;
    border: 1px solid #247bcb;
    border-radius: 0;
    padding: 1.33333vw;
    font-size: 1.33333vw;
    -webkit-appearance: none;
    /* IE11 */
}

@media only screen and (max-width: 767px) {
    .search-input {
        width: 66.66667vw;
        height: 8.8vw;
        font-size: 2.93333vw;
    }
}

.search-input::-webkit-input-placeholder {
    position: relative;
    top: 0.08333vw;
}

.search-input::-moz-placeholder {
    position: relative;
    top: 0.08333vw;
}

.search-input:-ms-input-placeholder {
    position: relative;
    top: 0.08333vw;
}

.search-input::-ms-input-placeholder {
    position: relative;
    top: 0.08333vw;
}

.search-input::placeholder {
    position: relative;
    top: 0.08333vw;
}

.search-input:-ms-input-placeholder {
    position: relative;
    top: 0;
}

.search-input:focus {
    border-radius: 0;
    outline: none;
}

.search-input::-ms-clear {
    display: none;
}

@media all and (-ms-high-contrast: none) {
    .search-input *::-ms-backdrop,
    .search-input {
        padding: 0 1.25vw;
        outline: none;
    }
}


/*
　SP用検索
--------------------------------------------------------------*/

.sp-search {
    display: none;
}

@media only screen and (max-width: 767px) {
    .sp-search {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 69.33333vw;
        height: 9.6vw;
        margin-bottom: 7.06667vw;
    }
}

.sp-search .search-submit {
    width: 9.6vw;
    height: 9.6vw;
}

.sp-search .search-input {
    height: 9.6vw;
}


/*
　メニュー項目
--------------------------------------------------------------*/

.site-outer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media only screen and (max-width: 767px) {
    .site-outer-menu-search {
        display: none;
    }
}

.site-outer-menu-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: -1px;
    padding: 0 1.33333vw;
    width: auto;
    height: 4vw;
    background: #fff;
    border: 1px solid #247bcb;
    color: #247bcb;
    font-size: 1.33333vw;
    text-decoration: none;
    letter-spacing: .1em;
}

@media only screen and (max-width: 767px) {
    .site-outer-menu-about {
        height: 9.06667vw;
        padding: 0 2.66667vw;
        font-size: 2.93333vw;
    }
}

.site-outer-menu-about:hover {
    opacity: .7;
}

.site-outer-menu-en {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: -1px;
    width: 3.83333vw;
    height: 4vw;
    background: #fff;
    border: 1px solid #247bcb;
    color: #247bcb;
    font-size: 1.33333vw;
    text-decoration: none;
    letter-spacing: .1em;
}

@media only screen and (max-width: 767px) {
    .site-outer-menu-en {
        width: 9.06667vw;
        height: 9.06667vw;
        font-size: 2.93333vw;
    }
}

.site-outer-menu-en:hover {
    opacity: .7;
}

.site-outer-menu-nav {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    background: #fcd2e3;
    font-size: 1.33333vw;
}

@media only screen and (max-width: 767px) {
    .site-outer-menu-nav {
        height: 9.33333vw;
        font-size: 2.93333vw;
    }
}

.site-outer-menu-nav:hover {
    background: #f4aeca;
}

.site-outer-menu-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 3.83333vw;
    color: #247bcb;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .site-outer-menu-nav-link {
        height: 9.06667vw;
        padding: 0 2.66667vw;
        font-size: 2.93333vw;
    }
}

.site-outer-menu-nav-link-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.site-outer-menu-nav-link-area-inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 1.33333vw;
    border: 1px solid #247bcb;
}

.site-outer-menu-nav-link-area-inner:first-of-type {
    border-right: 0;
}

.site-outer-menu-nav-link-area-inner:nth-of-type(2) {
    padding: 0;
    width: 3.83333vw;
    border-left: 1px dotted #247bcb;
}

@media only screen and (max-width: 767px) {
    .site-outer-menu-nav-link-area-inner:nth-of-type(2) {
        width: 9.6vw;
    }
}

.site-outer-menu-nav-link-image {
    width: 2.08333vw;
}

@media only screen and (max-width: 767px) {
    .site-outer-menu-nav-link-image {
        display: block;
        width: 3.86667vw;
        height: auto;
        margin-top: 0.25vw;
    }
}


/*
　コンテンツ
--------------------------------------------------------------*/

.site-content {
    width: 66vw;
    margin: 8.13333vw auto 1.25vw;
}

@media only screen and (max-width: 767px) {
    .site-content {
        width: 84vw;
        margin: 18.66667vw auto 33.33333vw;
    }
}

.site-content-second {
    margin: 11.88333vw auto 1.25vw;
}

@media only screen and (max-width: 767px) {
    .site-content-second {
        margin: 18.66667vw auto 33.33333vw;
    }
}

.site-content-title {
    margin-bottom: 1.66667vw;
    color: #247bcb;
    font-size: 1.33333vw;
    font-weight: 400;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    letter-spacing: .12em;
}

@media only screen and (max-width: 767px) {
    .site-content-title {
        margin-bottom: 8.4vw;
        font-size: 4.4vw;
        letter-spacing: .12em;
    }
}

.site-content-link-more {
    display: block;
    position: relative;
    padding: 1.41667vw;
    background: #247bcb;
    color: #fff;
    font-size: 1.25vw;
    text-align: center;
    text-decoration: none;
    letter-spacing: .12em;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

.site-content-link-more::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 1.5vw;
    width: 1.25vw;
    height: 1.58333vw;
    background: url(../images/icon_05.svg) no-repeat center;
    background-size: contain;
    content: '';
    -webkit-transform: translatey(-50%) rotate(-90deg);
    transform: translatey(-50%) rotate(-90deg);
}

@media only screen and (max-width: 767px) {
    .site-content-link-more::before {
        right: 3.46667vw;
        width: 2.93333vw;
        height: 3.46667vw;
    }
}

@media only screen and (max-width: 767px) {
    .site-content-link-more {
        padding: 3.06667vw;
        font-size: 2.93333vw;
    }
}

.site-content-link-more:hover {
    -webkit-box-shadow: 0 0 3.33333vw rgba(0, 0, 0, 0.2), 0 0 0.41667vw rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3.33333vw rgba(0, 0, 0, 0.2), 0 0 0.41667vw rgba(0, 0, 0, 0.3);
}

.site-content-copy {
    margin-top: 5.75vw;
    color: #247bcb;
    font-size: 1vw;
}

@media only screen and (max-width: 767px) {
    .site-content-copy {
        font-size: 2.66667vw;
    }
}


/*
　質問リスト
--------------------------------------------------------------*/

.question-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 4.16667vw;
    counter-reset: number;
}

.question-list-item {
    list-style: none;
    width: 100%;
}

.question-list-item:nth-child(3),
.question-list-item:nth-child(4),
.question-list-item:nth-child(6),
.question-list-item:nth-child(7),
.question-list-item:nth-child(8),
.question-list-item:nth-child(9) {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .question-list-item:nth-child(3),
    .question-list-item:nth-child(4),
    .question-list-item:nth-child(6),
    .question-list-item:nth-child(7),
    .question-list-item:nth-child(8),
    .question-list-item:nth-child(9) {
        width: 100%;
    }
}

.question-list-index .question-list-item:nth-child(n+11) {
    margin-top: -1px;
    display: none;
}

.question-list-item:nth-child(3),
.question-list-item:nth-child(6),
.question-list-item:nth-child(8) {
    margin-right: -1px;
}

.question-list-all .question-list-item:nth-child(n) {
    margin-right: -1px;
    margin-top: -1px;
    width: 33.3333%;
}

@media only screen and (max-width: 767px) {
    .question-list-all .question-list-item:nth-child(n) {
        width: 50%;
    }
}

.question-list-item.is-show {
    width: 100%;
    margin: 0;
}

.question-list-link-wrapper {
    display: block;
}

.question-list-indicator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 20;
    width: 17vw;
    border: 1px solid #247bcb;
    border-bottom: none;
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .question-list-indicator {
        width: 38vw;
    }
}

.question-list-box {
    position: relative;
    z-index: 1;
    padding: 2.6vw 3.4vw;
    border: 1px solid #247bcb;
    background: #fff;
}

.question-list-item:nth-child(3) .question-list-box,
.question-list-item:nth-child(4) .question-list-box,
.question-list-item:nth-child(6) .question-list-box,
.question-list-item:nth-child(7) .question-list-box,
.question-list-item:nth-child(8) .question-list-box,
.question-list-item:nth-child(9) .question-list-box {
    padding: 2.6vw 2.7vw;
}

.question-list-box::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    height: 100%;
    width: 100%;
    content: '';
    -webkit-transition: .4s ease-out;
    transition: .4s ease-out;
}

.question-list-all .question-list-box:nth-child(n) {
    padding: 2vw 2.5vw;
}

.question-list-item:hover {
    z-index: 30;
}

.question-list-item:hover .question-list-box::before {
    -webkit-box-shadow: 0 0 3.33333vw rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3.33333vw rgba(0, 0, 0, 0.2);
}

.question-list-number::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4vw;
    height: 4vw;
    background: #247bcb;
    color: #fff;
    font-size: 1.75vw;
    counter-increment: number;
    content: counter(number);
}

@media only screen and (max-width: 767px) {
    .question-list-number::before {
        width: 8.66667vw;
        height: 8.66667vw;
        font-size: 2.93333vw;
    }
}

.question-list-title {
    margin-bottom: 0.83333vw;
    color: #247bcb;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    font-size: 5.5vw;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: .2em;
    word-break: break-all;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .question-list-title {
        font-size: 10.66667vw;
        letter-spacing: .15em;
    }
}

.question-list-item:nth-child(2) .question-list-title,
.question-list-item:nth-child(3) .question-list-title,
.question-list-item:nth-child(4) .question-list-title {
    font-size: 3.25vw;
}

@media only screen and (max-width: 767px) {
    .question-list-item:nth-child(2) .question-list-title,
    .question-list-item:nth-child(3) .question-list-title,
    .question-list-item:nth-child(4) .question-list-title {
        font-size: 8.26667vw;
    }
}

.question-list-item:nth-child(5) .question-list-title,
.question-list-item:nth-child(6) .question-list-title,
.question-list-item:nth-child(7) .question-list-title {
    font-size: 2.41667vw;
}

@media only screen and (max-width: 767px) {
    .question-list-item:nth-child(5) .question-list-title,
    .question-list-item:nth-child(6) .question-list-title,
    .question-list-item:nth-child(7) .question-list-title {
        font-size: 5.86667vw;
    }
}

.question-list-item:nth-child(8) .question-list-title,
.question-list-item:nth-child(9) .question-list-title,
.question-list-item:nth-child(10) .question-list-title {
    font-size: 1.83333vw;
}

@media only screen and (max-width: 767px) {
    .question-list-item:nth-child(8) .question-list-title,
    .question-list-item:nth-child(9) .question-list-title,
    .question-list-item:nth-child(10) .question-list-title {
        font-size: 5.06667vw;
        letter-spacing: .2em;
    }
}

.question-list-item:nth-child(n+11) .question-list-title {
    font-size: 1.83333vw;
}

@media only screen and (max-width: 767px) {
    .question-list-item:nth-child(n+11) .question-list-title {
        font-size: 5.06667vw;
    }
}

.question-list-all .question-list-title {
    font-weight: 400;
}

.question-list-all .question-list-title:nth-child(n) {
    font-size: 1.33333vw;
}

@media only screen and (max-width: 767px) {
    .question-list-all .question-list-title:nth-child(n) {
        font-size: 3.46667vw;
    }
}

.question-list-link {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 20;
    width: 13vw;
    margin-left: auto;
    padding: 0.91667vw 2.5vw 0.91667vw 0;
    background: #fcd2e3;
    border: 1px solid #247bcb;
    border-top: none;
    color: #247bcb;
    font-size: 1.25vw;
    text-decoration: none;
    text-align: center;
    letter-spacing: .11em;
}

@media only screen and (max-width: 767px) {
    .question-list-link {
        width: 26.66667vw;
        padding: 2vw 1.33333vw 2vw;
        height: 8.66667vw;
        font-size: 2.93333vw;
    }
}

.question-list-link::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 1.5vw;
    width: 1.58333vw;
    height: 1.25vw;
    background: url(../images/icon_04.svg) no-repeat center;
    background-size: contain;
    content: '';
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

.question-list-all .question-list-link::before {
    width: 1.86667vw;
    height: 1.33333vw;
}

@media only screen and (max-width: 767px) {
    .question-list-link::before {
        right: 2.13333vw;
        width: 2.66667vw !important;
        height: 2vw !important;
    }
}

.question-list-all .question-list-link {
    font-size: 1vw;
}

@media only screen and (max-width: 767px) {
    .question-list-all .question-list-link {
        font-size: 2.66667vw;
    }
}


/*
　質問関心度
--------------------------------------------------------------*/

.interest-level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 13.08333vw;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #247bcb;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .interest-level {
        width: 29.33333vw;
    }
}

.interest-level-label {
    padding-right: 0.83333vw;
    font-size: 1.25vw;
    letter-spacing: .12em;
}

@media only screen and (max-width: 767px) {
    .interest-level-label {
        font-size: 2.93333vw;
    }
}

.interest-level-number {
    display: block;
    margin-top: -0.16667vw;
    font-size: 1.75vw;
    font-weight: 400;
    letter-spacing: .075em;
}

@media only screen and (max-width: 767px) {
    .interest-level-number {
        margin-top: -0.4vw;
        font-size: 4vw;
    }
}

.interest-level-percent {
    font-size: 1.41667vw;
}

@media only screen and (max-width: 767px) {
    .interest-level-percent {
        font-size: 3.2vw;
    }
}

.question-tag-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #247bcb;
}

.question-list-all .question-tag-list {
    position: relative;
    padding-top: 0.66667vw;
}

.question-list-all .question-tag-list::before {
    display: block;
    position: absolute;
    top: 0;
    width: 1.5vw;
    height: 1px;
    background: #247bcb;
    content: '';
}

.question-tag-list-item {
    list-style: none;
    margin-right: 1.33333vw;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

@media only screen and (max-width: 767px) {
    .question-tag-list-item {
        font-size: 3.2vw;
    }
}

.question-tag-list-item::before {
    content: '# ';
}

.question-list-all .question-tag-list-item {
    margin-right: 0.66667vw;
    font-size: 1vw;
}

@media only screen and (max-width: 767px) {
    .question-list-all .question-tag-list-item {
        font-size: 2.66667vw;
    }
}


/*
　サイドバー
--------------------------------------------------------------*/

.sidebar {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 0 8.33333vw 2.08333vw;
    width: 18.75vw;
    height: 100%;
    border-right: 1px solid rgba(36, 123, 203, 0.5);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 767px) {
    .sidebar {
        display: block;
        position: fixed;
        top: auto;
        bottom: 0;
        z-index: 990;
        width: 100%;
        height: 28vw;
        margin: 0;
        padding: 2.66667vw 8vw 0;
        border-top: 1px solid rgba(36, 123, 203, 0.5);
    }
}

.sidebar-inner {
    padding: 0 0 0 1.41667vw;
}

@media only screen and (max-width: 767px) {
    .sidebar-inner {
        padding: 0;
    }
}

.sidebar-list-wrapper {
    position: relative;
}

.sidebar-list-wrapper::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5vw;
    background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
    content: '';
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .sidebar-list-wrapper::after {
        left: auto;
        right: 0;
        width: 20%;
        height: 9.33333vw;
        background: -webkit-gradient(linear, right top, left top, from(white), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(-90deg, white 0%, rgba(255, 255, 255, 0) 100%);
    }
}

@media only screen and (max-width: 767px) {
    .sidebar-list-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 63%;
        padding-bottom: 1.33333vw;
        -webkit-overflow-scrolling: touch;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar-inner-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        padding-bottom: 2.66667vw;
        border-bottom: 1px dotted #247bcb;
    }
}

.sidebar-title {
    padding-top: 10.03333vw;
    color: #7d7d7d;
    font-size: 1.33333vw;
    font-weight: 400;
    letter-spacing: .12em;
}

@media only screen and (max-width: 767px) {
    .sidebar-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
        margin-right: 3.46667vw;
        padding-top: 0;
        font-size: 2.93333vw;
    }
    .sidebar-title::before {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 8.66667vw;
        height: 8.66667vw;
        margin-right: 2.4vw;
        background: #247bcb;
        color: #fff;
        font-size: 2.93333vw;
        line-height: 1;
        content: '#';
    }
}

.sidebar-title::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4vw;
    height: 4vw;
    margin-top: 1.76667vw;
    margin-bottom: 1vw;
    background: #247bcb;
    color: #fff;
    font-size: 1.83333vw;
    content: '#';
}

@media only screen and (max-width: 767px) {
    .sidebar-title::after {
        display: none;
    }
}

.sidebar-inner-bottom {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 2.08333vw;
    bottom: 2.08333vw;
    width: 16.58333vw;
    padding: 0 0.83333vw;
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .sidebar-inner-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin: 0;
        padding: 2.13333vw 0;
    }
}

.sidebar-link-area {
    display: block;
    position: static;
    padding: 0.41667vw 0.5vw 0.5vw;
    border-top: 1px dotted #247bcb;
}

@media only screen and (max-width: 767px) {
    .sidebar-link-area {
        /*		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;*/
        position: absolute;
        left: 0;
        padding: 0;
        border-top: none;
    }
}

.sidebar-link {
    display: block;
    position: relative;
    padding-left: 1.25vw;
    color: #000;
    font-size: 1vw;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .sidebar-link {
        padding-left: 4vw;
        font-size: 2.93333vw;
    }
}

.sidebar-link:hover {
    opacity: .7;
}

.sidebar-link::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.83333vw;
    height: 0.83333vw;
    margin-top: 0.08333vw;
    background: url(../images/icon_11.svg) no-repeat;
    background-size: contain;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
    .sidebar-link::before {
        width: 2.13333vw;
        height: 2.13333vw;
    }
}

.sidebar-logo {
    display: block;
    width: 4.9vw;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .sidebar-logo {
        width: 13.33333vw;
    }
}

.sidebar-logo-area {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.83333vw 0.33333vw 1.08333vw;
    border-top: 1px dotted #247bcb;
}

@media only screen and (max-width: 767px) {
    .sidebar-logo-area {
        /*		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;*/
        border-top: 0;
        position: absolute;
        right: 0;
        padding: 0.4vh 0 0 0;
    }
}

.sidebar-note {
    padding: 0 0.5vw 0.83333vw;
}

@media only screen and (max-width: 767px) {
    .sidebar-note {
        display: none;
        position: fixed;
        bottom: 47px;
        left: 0;
        border-top: 1px solid rgba(36, 123, 203, 0.5);
        width: 100%;
        padding: 3.33333vw 8vw;
        background: #fff;
    }
}

.sidebar-note-title {
    font-weight: 500;
    font-size: 0.83333vw;
}

@media only screen and (max-width: 767px) {
    .sidebar-note-title {
        margin-bottom: 1.33333vw;
        font-size: 2.8vw;
    }
}

.sidebar-note-btn-area {
    display: none;
}

@media only screen and (max-width: 767px) {
    .sidebar-note-btn-area {
        display: block;
        position: absolute;
        left: 50%;
        padding-left: 4vw;
        color: #000;
        font-size: 2.93333vw;
        font-weight: 500;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 767px) {
    .sidebar-note-btn {
        padding-left: 0.83333vw;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar-note-btn::before {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 2.66667vw;
        height: 2.66667vw;
        background: url(../images/icon_07.svg) no-repeat;
        background-size: contain;
        content: '';
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media only screen and (max-width: 767px) {
    .sidebar-note-btn.is-open::before {
        background: url(../images/icon_10.svg) no-repeat;
    }
}

.sidebar-note-list {
    list-style: none;
    font-size: 0.83333vw;
}

@media only screen and (max-width: 767px) {
    .sidebar-note-list {
        font-size: 2.8vw;
        line-height: 1.8;
    }
}

.sidebar-note-list-item {
    color: #7d7d7d;
}


/*
　タグリスト
--------------------------------------------------------------*/

.tag-list {
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-right: 0.66667vw;
}

@media only screen and (min-width: 767px) {
    .tag-list::-webkit-scrollbar {
        width: 2px;
    }
    .tag-list::-webkit-scrollbar-track {
        background-color: #ccc;
    }
    .tag-list::-webkit-scrollbar-thumb {
        background-color: #999;
    }
}

@media only screen and (max-width: 767px) {
    .tag-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 0;
        padding-bottom: 0;
        width: 100%;
        height: auto !important;
    }
}

.tag-list-item {
    list-style: none;
}

@media only screen and (max-width: 767px) {
    .tag-list-item {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding-top: 0.25vw;
        margin-right: 3.46667vw;
    }
}

.tag-list-item::before {
    color: #247bcb;
    font-size: 1.33333vw;
    content: '# ';
}

@media only screen and (max-width: 767px) {
    .tag-list-item::before {
        font-size: 2.93333vw;
    }
}

.tag-list-item:last-child {
    margin-bottom: 5em;
}

@media only screen and (max-width: 767px) {
    .tag-list-item:last-child {
        margin-bottom: 0;
        padding-right: 50px;
    }
}

.tag-list-link {
    color: #247bcb;
    font-size: 1.16667vw;
    text-decoration: none;
    letter-spacing: .12em;
}

@media only screen and (max-width: 767px) {
    .tag-list-link {
        font-size: 2.93333vw;
    }
}

.tag-list-link:hover {
    opacity: .7;
}


/*
　スクロール
--------------------------------------------------------------*/

.scroll {
    position: fixed;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    width: 1.58333vw;
    height: 28.75vw;
    bottom: -14.16667vw;
    right: 3.75vw;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    -webkit-transition: .4s ease-out;
    transition: .4s ease-out;
}

@media only screen and (max-width: 767px) {
    .scroll {
        display: none;
    }
}

@media only screen and (min-width: 767px) {
    .scroll.is-hidden {
        opacity: 0;
    }
}

.scroll-text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: 1vw;
    letter-spacing: .1em;
    line-height: 1.58333vw;
    color: #7d7d7d;
    -webkit-animation: scroll-text 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    animation: scroll-text 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.scroll-bar {
    position: absolute;
    width: 1px;
    height: 14.16667vw;
    top: -21.25vw;
    right: 0;
    background-color: #7d7d7d;
    -webkit-animation: scroll-bar 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    animation: scroll-bar 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.scroll-bar-clip {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 10vw;
    top: 5vw;
    right: 0.75vw;
}

@-webkit-keyframes scroll-text {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40%,
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes scroll-text {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40%,
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes scroll-bar {
    0,
    5% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 510px, 0);
        transform: translate3d(0, 510px, 0);
    }
}

@keyframes scroll-bar {
    0,
    5% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 510px, 0);
        transform: translate3d(0, 510px, 0);
    }
}

#page-animate::before {
    content: '';
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #247bcb;
    z-index: 999;
    pointer-events: none;
    right: 100%;
    -webkit-transition: right 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: right 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#page-animate::after {
    content: '';
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #247bcb;
    z-index: 999;
    pointer-events: none;
    left: 100%;
    -webkit-transition: left 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: left 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

#page-animate.is-slide-in::before {
    right: 0;
}

#page-animate.is-slide::after {
    left: 0;
}


/*
　検索結果なし
--------------------------------------------------------------*/

.no-search-text {
    margin-bottom: 4.16667vw;
    color: #247bcb;
}

@media only screen and (max-width: 767px) {
    .no-search-text {
        font-size: 3.2vw;
    }
}


/*--------------------------------------------------------------
　アンサーページ
--------------------------------------------------------------*/

.answer-header {
    margin-bottom: 3.33333vw;
    padding: 2.6vw 3.4vw;
    border: 1px solid #247bcb;
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .answer-header {
        margin-bottom: 8vw;
        padding: 7.46667vw 5.33333vw;
    }
}

.answer-header-title {
    margin-bottom: 0.83333vw;
    color: #247bcb;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    font-size: 3.25vw;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: .2em;
}

@media only screen and (max-width: 767px) {
    .answer-header-title {
        font-size: 8.26667vw;
    }
}

@media only screen and (max-width: 767px) {
    .answer-header-title {
        font-size: 8.26667vw;
        letter-spacing: .15em;
    }
}

.answer-box {
    margin-bottom: 3.33333vw;
    padding: 2.6vw 3.4vw;
    border: 1px solid #247bcb;
    background: #fff;
    color: #247bcb;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    letter-spacing: .12em;
}

@media only screen and (max-width: 767px) {
    .answer-box {
        margin-bottom: 10.66667vw;
        padding: 6.13333vw 4.53333vw 0 4.53333vw;
    }
}

.answer-box-inner {
    line-height: 2;
}

@media only screen and (max-width: 767px) {
    .answer-box-inner {
        font-size: 3.46667vw;
    }
}

@media only screen and (max-width: 767px) {
    .answer-box-inner picture {
        margin: 0 calc(50% - 41.7vw);
    }
}

.answer-box-inner img {
    /*max-width: 100%;*/
    width: 100%;
    height: auto;
    margin: auto;
}

.answer-box-inner p {
    margin-bottom: 1em;
}

.answer-box-inner p sup {
    font-size: 70%;
    vertical-align: top;
    position: relative;
    top: -0.1em;
}

.answer-box-inner p.note {
    color: #000;
}

.answer-box-inner .margin-bottom {
    display: block;
    margin-bottom: 1em;
}

.answer-box-inner a {
    color: #247bcb;
    text-decoration: underline;
}

.answer-box-inner a:hover {
    text-decoration: none;
}

.answer-box-btn-area.margin-bottom {
    margin-bottom: 1em;
}

.answer-box-btn-area p {
    padding: 1em 0;
    text-align: center;
    color: #000000;
    font-size: 1.25vw;
}

@media only screen and (max-width: 767px) {
    .answer-box-btn-area {
        margin: 0 -1px -1px -1px;
    }
    .answer-box-btn-area.margin-bottom {
        margin-bottom: -1px;
    }
    .answer-box-btn-area p {
        font-size: 3.25vw;
    }
}

.answer-box-btn {
    display: block;
    position: relative;
    padding: 0.83333vw;
    border: 1px solid #247bcb;
    background: #fcd2e3;
    color: #247bcb;
    font-size: 1.25vw;
    text-align: center;
    text-decoration: none !important;
    letter-spacing: .12em;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
}

@media only screen and (max-width: 767px) {
    .answer-box-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 8.66667vw;
        margin: 0 -4.53333vw 0 -4.53333vw;
        font-size: 2.93333vw;
        padding-right: 6.93334vw;
        padding-left: 3.46667vw;
    }
}

.answer-box-btn::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 1.5vw;
    width: 1.58333vw;
    height: 1.25vw;
    background: url(../images/icon_04.svg) no-repeat center;
    background-size: contain;
    content: '';
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

@media only screen and (max-width: 767px) {
    .answer-box-btn::before {
        right: 3.46667vw;
        width: 3.46667vw;
        height: 2.93333vw;
    }
}

.answer-box-btn:hover {
    -webkit-box-shadow: 0 0 0.83333vw rgba(0, 0, 0, 0.2), 0 0 0.16667vw rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0.83333vw rgba(0, 0, 0, 0.2), 0 0 0.16667vw rgba(0, 0, 0, 0.3);
}

.second-title {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 1.66667vw;
    padding: 1.16667vw 1.5vw 1.33333vw;
    width: 10.66667vw;
    color: #247bcb;
    font-size: 1.58333vw;
    font-weight: 400;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    text-align: center;
    letter-spacing: .12em;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .second-title {
        width: 30.66667vw;
        padding: 2.66667vw 2.66667vw 3.33333vw;
        margin-bottom: 8vw;
        font-size: 4.4vw;
        letter-spacing: .12em;
    }
}

.second-title-blue {
    background: #247bcb;
    color: #fff;
}

.second-title-pink {
    border: 1px solid #247bcb;
    background: #fcd2e3;
    color: #247bcb;
}


/*--------------------------------------------------------------
　Aboutページ
--------------------------------------------------------------*/

.section-about-text {
    color: #247bcb;
    font-size: 1.33333vw;
    lette-spacing: .14em;
    line-height: 2.5;
}

@media only screen and (max-width: 767px) {
    .section-about-text {
        font-size: 3.2vw;
    }
}

.section-about-bottom {
    margin-top: 2.5vw;
    padding-top: 3.16vw;
    border-top: 1px solid #247bcb;
}

@media only screen and (max-width: 767px) {
    .section-about-bottom {
        margin-top: 7.3vw;
        padding-top: 7.3vw;
    }
}

.section-about-bottom-text {
    margin-bottom: 1em;
    color: #247bcb;
    font-size: 1.16666vw;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .section-about-bottom-text {
        font-size: 2.8vw;
    }
}

.about-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    width: 42.083vw;
    color: #247bcb;
    font-size: 1.16666vw;
}

@media only screen and (max-width: 767px) {
    .about-list {
        display: block;
        width: auto;
        font-size: 2.8vw;
    }
}

.about-list-item {
    width: 50%;
    line-height: 1.8;
}

@media only screen and (max-width: 767px) {
    .about-list-item {
        display: block;
        width: auto;
    }
}

.about-list-item::before {
    color: #247bcb;
    font-size: 1.16666vw;
    content: '● ';
}

@media only screen and (max-width: 767px) {
    .about-list-item::before {
        display: none;
    }
}