@charset "utf-8";

/* 共通部分
-------------------- */

html{
    font-size: 62.5%;
}

body{
    font-family: "Yu Gothic Medium","游ゴシック Medium",YuGothic,"游ゴシック体","ヒラギノ角ゴ Pro W3",sans-serif;
    line-height: 1.8;
    color: #333333;
    /* background-color: #f0f0f0; */
    background: #EFEFEF;
    font-weight: 300;
    font-size: 1.8em;
}

a{
    text-decoration: none;
    color: #333333;
}

a:hover{
    color: #6088C6;
}

p {
    margin-bottom: 20px;
    font-weight: 400;
}

img{
    max-width: 100%;
}

.wrapper{
    max-width: 1200px;
    margin: 0 auto;
}

/* ボックス ポイント1 */
.box-point {
    position: relative;
    margin: 3.6rem 0 2rem;
    padding: 0.9rem 1.8rem;
    border: solid 3px #AEC4E5;
    border-radius: 8px;
}

.box-point .box-point-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0.5rem;
    line-height: 1;
    font-size: 19px;
    background: #6088C6;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
}

.box-point ul li {
    margin: 1rem 0 1rem 1.5rem;
    text-indent: -1rem;
}

/* ボックス ポイント2 */
.box-point2 {
    position: relative;
    margin: 6rem 0 1rem;
    padding: 1rem 1rem;
    border: solid 3px #AEC4E5;
    border-radius: 0 8px 8px 8px;
}
.box-point2 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #6088C6;
    color: #fff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    box-shadow: 1px 0 0 rgba(0, 0, 0, 0.23);
}
.box-point2 p {
    margin: 0; 
    padding: 1rem 1.5rem;
}

/* テーブル */

table {
    border-collapse: collapse;
    border: 2px solid #6088C6;
    font-weight: 400;
}

table th {
    padding: 10px;
    background: #AEC4E5 ;
}

table td {
    padding: 3px 10px;
}

table th,
table td {
    border: 1px dashed #6088C6;
}

.nowrap {
    white-space: nowrap;
}

.center {
    text-align: center;
}

/* タイトル */

.item-title {
    margin: 50px -20px 30px;
    padding: 0.4em 0.5em;
    background: #EFEFEF;
    border-left: solid 5px #AEC4E5 /* #7db4e6 */;
    border-bottom: solid 3px #d7d7d7;
    margin-bottom: 40px;
    border-radius: 5px;
}

/* リスト シェブロンマーク */
.chevron li {
    list-style-type: none!important;
    font-weight: bold;
    line-height: 1.5;
}

.chevron li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";/*アイコンの種類*/
    margin-right: 0.5rem;
    color: #AEC4E5;/*アイコン色*/
    font-weight: 900;
}

/* リスト 右三角形 */
.triangle-right li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;
}

.triangle-right li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    margin-right: 0.5rem;
    color: #AEC4E5;/*アイコン色*/
    font-weight: 900;
}

/* リスト 吹き出し */
.Speech-bubble li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;
}

.Speech-bubble li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f075";
    margin-right: 0.5rem;
    color: #AEC4E5;/*アイコン色*/
    font-weight: 900;
    font-size: 2.8rem;
}

/* リスト pencil */
.pencil {
    padding: 0;
}
  
.pencil li {
    position:relative;
    background: #AEC4E5;/*バーの色*/
    line-height: 1.5;
    padding: 0.5em;
    margin-bottom: 1rem;
    border-left : solid 35px #6088C6;/*先の色＝アイコン裏の色*/
    list-style-type: none!important;
    color: #fff;
}
  
.pencil li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f303";
    position: absolute;
    display: block;
    padding: 0.5em;
    width: 1.2em;
    color: white; /*アイコン色*/
    font-weight: 900;/*アイコンは太字にしない*/
    text-align: center;
    left : -35px; /*左端からのアイコンまでの距離*/
    /*以下 上下中央寄せのため*/
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pencil .hitokoto {
    position:relative;
    background: #F7C9CE;/*バーの色*/
    line-height: 1.5;
    padding: 0.5em;
    margin-bottom: 1rem;
    border-left : solid 35px #F8ACAC;/*先の色＝アイコン裏の色*/
    list-style-type: none!important;
}
  
.pencil .hitokoto:before {
    font-family: "Font Awesome 5 Free";
    content: "\f303";
    position: absolute;
    display: block;
    padding: 0.5em;
    width: 1.2em;
    color: white; /*アイコン色*/
    font-weight: 900;/*アイコンは太字にしない*/
    text-align: center;
    left : -35px; /*左端からのアイコンまでの距離*/
    /*以下 上下中央寄せのため*/
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* アンダーライン 水色点線 */
.under-dot-pink {
    border-bottom: dotted 2px #F7C9CE;
}

/* アンダーライン マーカー */
.under-marker-pink {
    background: linear-gradient(transparent 72%, #F7C9CE 90%);
}

/* ヘッダー
-------------------- */
header {
    background: rgba(255,255,255,0.8);
    height: 100px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}
.header-title {
    max-width: 1200px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: bold;
    color: #6088C6;
    text-shadow: 2px 4px 6px rgba(0,0,0,0.2),0px -5px 16px rgba(255,255,255,0.3);
    line-height: 1.2;
    margin-left: 2rem;
}
header .btn {
    text-align: center;
}
header .btn-flat-border {
    display: inline-block;
    padding: 0.45em;
    text-decoration: none;
    color: #fff;
    background: #c69e60;
    border-radius: 3px;
    transition: .4s;
    margin: 1rem 1rem 0rem;
    font-size: 2.4rem;
}
header .btn-flat-border:hover {
    background: #e5cfae;
    color: white;
}
header .btn p {
    font-size: 1.6rem;
    font-weight: bold;
    color: #6088C6;
}

/* メインコンテナ
-------------------- */
.main-container {
    /* margin-top: 40px; */
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 120px;
    padding-bottom: 100px;
}


/* 記事
-------------------- */
article {
    width: 800px;
    background-color: #fff;    
    border-radius: 5px;
    padding: 5%;
}

/* catch */
.catch img {
    margin-top: -50px;
    margin-bottom: -10px;
}

.catch p {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: bold;
    text-align: center;
}

.catch p span {
    background: linear-gradient(transparent 65%, #AEC4E5 90%);
    font-size: 4.2rem;
}

.catch ul {
    padding: 0.1em 1em 0.5em 2.3em;
    position: relative;
}
  
.catch ul li {
    line-height: 1.5;
    padding: 0.3em 1.5rem;
    list-style-type: none!important;/*ポチ消す*/
    font-size: 2.2rem;
    font-weight: bold;
}
  
.catch ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    position: absolute;
    left : 1em; /*左端からのアイコンまで*/
    color: #AEC4E5; /*アイコン色*/
    font-weight: 900;
}

/* intro */
.intro {
    border-top: dashed 3px #AEC4E5;
    border-bottom: dashed 3px#AEC4E5;
    width: 550px;
    margin: 0 auto;
    margin-top: 2rem;
    /* margin-bottom: 5rem; */
    padding: 1.5rem;
    padding-bottom: 0.5rem;
}

/* バナー */
.banner {
    margin: 2rem auto 0rem;
}


/* item1 
-------------------- */
.h2-2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 30px 0 ;
}
article .item1 p {
    margin: 0.8rem 1.4rem 2rem ;
}
article .item1 .box-point ul {
    line-height: 2;
    margin: 0; 
    padding: 10px;
}
.item1 .box-point ul li:first-child {
    margin-top: 0rem;
}
.item1 .box-point ul li {
    font-size: 2.2rem;
    font-weight: bold;
}
.item1 .box-point ul p {
    margin: -1rem 0 -0.5rem 1rem;
}
.item1 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */


/* item2 
-------------------- */
.item2 .koe {
    margin-top: -20px;
    margin-bottom: 10px;
}
.item2 table {
    margin-top: 20px;
    margin-bottom: 40px;
}
/* .item2 .table-pc tr .th1 {
    width: 50px;
}
.item2 .table-pc tr .th2 {
    width: 100px;
}
.item2 .table-pc tr .th3 {
    width: 90px;
} */
.item2 .table-mob tr .th1 {
    width: 12rem;
}
.item2 .table-mob {
    display: none;
}

/* talk */
.balloon5 {
    width: 100%;
    margin: 5rem 0;
    overflow: hidden;
}
.balloon5 .chatting {
    width: 100%;
}

/* talk left */
.balloon5 .faceicon_left p {
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}
.balloon5 .faceicon_left {
    float: left;
    margin-right: -90px;
    width: 80px;
}
.balloon5 .faceicon_left img{
    width: 100%;
    height: auto;
    border: solid 3px #d7ebfe;
    border-radius: 50%;
}
.says_left {
    display: inline-block;
    position: relative; 
    margin: 5px 0 0 105px;
    padding: 17px 13px;
    border-radius: 12px;
    background: #d7ebfe;
}
.says_left:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px; 
    left: -24px;
    border: 12px solid transparent;
    border-right: 12px solid #d7ebfe;
}
.says_left p {
    margin: 0;
    padding: 0;
}

/* talk right */
.balloon5 .faceicon_right p {
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: -2rem;
}
.balloon5 .faceicon_right {
    float: right;
    margin-bottom: -90px;
    width: 80px;
}
.balloon5 .faceicon_right img{
    width: 100%;
    height: auto;
    border: solid 3px #d7ebfe;
    border-radius: 50%;
}
.says_right {
    display: inline-block;
    position: relative; 
    margin: 5px 105px 0 0;
    padding: 17px 13px;
    border-radius: 12px;
    background: #d7ebfe;
}
.says_right:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px; 
    right: -24px;
    border: 12px solid transparent;
    border-left: 12px solid #d7ebfe;
}
.says_right p {
    margin: 0;
    padding: 0;
}
.item2 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */


/* item3
-------------------- */
.item3 .p1 {
    margin: 3rem 0;
    font-size: 2rem;
    font-weight: bold;
}
.note-zoom {
    font-size: 1.2rem;
    color: #ff2e2e;
    margin-bottom: -5px;
}

.note-source {
    font-size: 1.2rem;
    margin-top: -10px;
}

.item3 .box-point .chevron li {
    text-indent: -1.5rem;
}
.item3 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */


/* item4
-------------------- */
/* .item4 ul {
    margin-top: 3rem;
} */
/* .item4 .Speech-bubble li {
    font-weight: bold;
    font-size: 2.2rem;
    text-indent: -3rem;
    padding-left: 2.5rem ;
    padding-right: 1.8rem;
    padding-bottom: 1.5rem;
} */
.item4 .balloon5 .says_left p {
    font-size: 2rem;
    font-weight: bold;
    padding: 0 1.5rem;
}
.item4 .box-point2 {
    width: 600px;
    margin: 6rem auto 8rem;
}
.item4 .box-point2:last-child {
    margin-bottom: 0;
}
.item4 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */


/* item6
-------------------- */
/* .item6 ul {
    color: #668ad8;
    border: dashed 2px #668ad8;
    background: #f1f8ff;
    padding: 0.5em 0.5em 0.5em 2em;
    width: 650px;
    margin: 0 auto;
    border-radius: 5px;
} 
  
.item6 ul li {
    line-height: 1.5;
    padding: 0.5em 0;
}

.item6 span {
    margin-left: -40px;
}

.item4 ul {
    margin-top: 3rem;
}*/
.item6 p {
    margin-bottom: 8rem;
}
.item6 .Speech-bubble {
    padding: 1.8rem;
}
.item6 .Speech-bubble li {
    font-weight: bold;
    font-size: 2.0rem;
    text-indent: -3.3rem;
    padding: 0 1rem 1rem 3rem;
}
.item6 .box-point2 {
    margin: 2rem auto 4rem;
}
.item6 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */


/* item7
-------------------- */
/* box-preparation */
.item7 .box-preparation1 {
    position: relative;
    margin: 6rem 0 1rem;
    padding: 1rem 1rem;
    border: solid 3px #AEC4E5;
}
.item7 .box-preparation1 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #6088C6;
    color: #fff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    box-shadow: 1px 0 0 rgba(0, 0, 0, 0.23);
}
.item7 .box-preparation1 .chevron li {
    font-size: 2rem;
    margin: 0 0 0 3.6rem;
    text-indent: -3.1rem;
    padding: 0.8rem;
}

/* switchbox */
.item7 .switchbox {
    margin: 0 1rem 0 1rem;
    padding: 0;
}
.item7 .switchbox label {
    display:block;
    font-weight: bold;
    cursor: pointer;
    color: #c69e60;
    font-size: 1.6rem;  
}
.item7 .switchbox input {
    display: none;
}
.item7 .switchbox label::before {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 8px;
}
.item7 .switchbox input:checked + label::before {
    content: '\f068';
}
.item7 .switchbox .box-preparation2 {
    height: 0;
    overflow-y: hidden;
    transition: 0.8s;
    opacity: 0;
}
.item7 .switchbox input:checked + label + .box-preparation2 {
    height: auto;
    opacity: 1;
    margin-top: 1rem;
    padding: 1rem 1rem;
    border: solid 3px #AEC4E5;
}
.item7 .switchbox .box-preparation2 .pencil li {
    font-weight: bold;
}
.item7 .switchbox .box-preparation2 .pencil p {
    margin: 1rem 1.5rem 2rem 1.5rem;
}
.item7 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */


/* item8
-------------------- */
.item8 .note-source {
    margin-left: 2rem;
}
.item8 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */


/* item9
-------------------- */
.item9 table {
    margin: 2rem auto 2rem;
}
.item9 .table-pc td {
    padding: 0 4rem;
}/* pcだけ余白を増やす */
.item9 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */
.item9 .table-mob {
    display: none;
}/* モバイル用のテーブルを消す */


/* item10
-------------------- */
.item10 .catch {
    margin-bottom: 2rem;
}
.item10 .btn,
.item10 .btn-mob {
    text-align: center;
    margin-bottom: 8rem;
}
.item10 .btn-mob {
    display: none;
}/* モバイル用のため消す */
.item10 .btn-flat-border {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    background: #c69e60;
    color: #fff;
    /* border: solid 2px #6088C6; */
    border-radius: 3px;
    transition: .4s;
    margin: 2rem 0 1rem;
    font-size: 3rem;
}
.item10 .btn-flat-border:hover {
    background: #6088C6;
    color: white;
}
.item10 .chiho h4 {
    position: relative;
    background: #AEC4E5;
    padding: 2px 5px 2px 20px;
    font-size: 20px;
    border-radius: 0 10px 10px 0;    
    margin: 2rem 1rem;
}
.item10 .chiho h4::before {
    font-family: "Font Awesome 5 Free";
    content: "\f041";
    display: inline-block;
    line-height: 40px;
    position: absolute;
    padding: 0em;
    color: white;
    background: #6088C6;
    font-weight: 900;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    left: -1.35em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.29);
    border-bottom: solid 2px  #468d6a;
}
.item10 .offer {
    font-weight: bold;
}
.item10 .offer span {
    font-size: 2.2rem;
}
.item10 .offer .note {
    font-size: 1.25rem;
}
.item10 .area p:first-child {
    border-bottom: solid 3px #AEC4E5;
    position: relative;
    font-size: 1.6rem;
}
.item10 .area p:first-child::after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #6088C6;
    bottom: -3px;
    width: 20%;
}
.item10 .area p {
    font-size: 1.2rem;
}
.item10 p span {
    font-weight: bold;
}
.item10 {
    padding-top: 20px;
    margin-top:-20px;
}/* ページ内リンクをヘッダーと重ならないようにするコード */


/* サイドバー
-------------------- */
aside {
    width: 340px;
    height: 810px;
    position: sticky;
    top: 110px;
}


/* サイドバー ポリシー
-------------------- */
.policy {
    width: 340px;
    height: auto;
    margin-left: 10px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
}
.policy ul {
    background: #fff;
    padding: 1rem 1rem 0 3.5rem;
}
.policy ul li {
    line-height: 1.5;
    padding-bottom: 0.5rem;
    list-style-type: none!important;
}
.policy ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";/*アイコンの種類*/
    position: absolute;
    left : 1.8rem;/*左端からのアイコンまでの距離*/
    color: #AEC4E5;/*アイコン色*/
    font-weight: 900;
}


/* サイドバー　目次
-------------------- */
.contents {
    width: 340px;
    height: auto;
    margin-left: 10px;
    font-size: 1.6rem;
}
.contents h4,
.form h4,
.policy h4 {
    padding-left: 25px;
    font-weight: bold;
    font-size: 2rem;
    background: #6088C6;
    color: #fff;
}
.contents h4 span {
    font-size: 1.4rem;
    margin-left: 10px;
    color: #fff;
}
.contents ul {
    list-style-type: none!important; /*数字を一旦消す*/
    padding:0.5em;
    padding-bottom: 1rem;
    background: #fff;
} 
.contents li {
    text-indent: -1em;
    margin-left: 1em;
}


/* フッター
-------------------- */
footer {
    margin-top: 2rem;
    background: #fff;
    height: 60px;
    /* text-align: center; */
    font-size: 12px;
    position: relative;
}
footer p {
    /* line-height: 60px; */
    /* display: inline-block;
    text-align: left;
    margin: auto; */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 60%;
    height: 3rem;
    text-align: center;
}


/* モバイルサイズ
-------------------- */
@media (max-width: 700px) {
    /* 共通 */
    img {
        width: 100%;
    }
    .nowrap {
        white-space: unset;
    }
    .item-title {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    /* ヘッダー */
    header {
        font-size: 45%;
        height: auto;
    }
    .header-title {
        margin-top: 1rem;
    }
    header .btn-flat-border {
        font-size: 125%;
    }
    header .btn p{
        font-size: 90%;
    }
    /* メインコンテナ */
    .main-container {
        top: 20px;

    }
    /* 記事 */
    article {
        width: 100%;
    }
    .catch img {
        margin-top: 0px;
    }
    .intro {
        width: 100%;
    }
    .banner {
        margin-bottom: 2rem;
    }
    .item2 .table-pc {
        display: none;
    }
    .item2 .table-mob {
        display: table;
    }
    .item2 .koe {
        margin-top: 20px;
    }
    .item4 .box-point2 {
        width: 100%;
    }
    .item9 .table-pc {
        display: none;
    }/* PC用を消去 */
    .item9 .table-mob {
        display: table;
    }/* モバイル用を表示 */
    .item10 .btn {
        display: none;
    }/* PC用を消去 */    
    .item10 .btn-mob {
        display: block;
    }/* モバイル用を表示 */
    .item10 .btn-flat-border {
        font-size: 2rem;
        line-height: 3rem;
        padding: 0 3rem;
    }


    /* サイドバー */
    aside {
        display: none;
    }
    /* フッター */
    footer {
        margin-top: 1rem;
    }
}