@charset "UTF-8";
@import url('http://fonts.cdnfonts.com/css/canto');
  .fadein {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : all 1800ms;
  }
  .fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
  }
  body {
    font-size: 14px;
    font-weight: normal;
    color: #000;
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  }
/*------------------------------------------------------------------------------------------------------*/
/*----------------------------   PC   - テーマカラー：#ffdc6e - 50％：#ffedb6; ------------------*/
/*------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 750px) {

  .NavMenu , .Toggle , .header , .mobile { display: none; }

  body {
    width: 100%;
    margin: 0 auto;
  }

/*---------------------------------------   header   ---------------------------------------*/

  header {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  header h1 {
    width: 200px;
    padding: 20px 0;
  }
  header h1 img {
    display: block;
    width: 100%;
  }
  header nav {
    width: 500px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  header ul { display: flex; }
  header li {
    list-style: none;
    margin-left: 50px;
  }
  header li a {
    color: black;
    text-decoration: none;
    position: relative;
  }
  header li a::after {
    position: absolute; /*親要素であるaタグを基準に位置を指定*/
    left: 0;            /*アンダーラインを各メニュー（aタグ）の左端に指定*/
    content: '';        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
    width: 100%;        /*アンダーラインを各aタグの幅に合わせる*/
    height: 5px;        /*アンダーラインの高さ（太さ）*/
    background: #ffdc6e;/*アンダーラインの色*/
    bottom: 1px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  header li a:hover::after {
    visibility: visible;
    bottom: -10px; /*アニメーションが止まる位置*/
    opacity: 1;
  }

/*---------------------------------------   top   ---------------------------------------*/

  #top {
    display: block;
    width: 100%;
    height: 700px;
    background-color: #ffdc6e;
    margin-bottom: 150px;
  }
  #top .top_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #top .top_wrap h2 {
    display: block;
    font-size: 46px;
    line-height: 1.5;
    padding-top: 200px;
  }
  #top .top_wrap h3 {
    display: block;
    font-size: 20px;
    line-height: 1.75;
    padding-top: 20px;
  }
  #top .top_wrap img {
    display: block;
    width: 700px;
    margin: -100px 0 0 auto;
  }

/*---------------------------------------   content_01   ---------------------------------------*/

  #content_01 {
    display: block;
    width: 100%;
    padding: 100px 0;
  }
  #content_01 .sp ,
  #content_01 .content_wrap p br.sp ,
  #content_01 .content_wrap_02 img.sp { display: none; }
  #content_01 .content_wrap {
    display: block;
    width: 80%;
    margin: 0 auto;
    position: relative;
  }
  #content_01 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 40px;
  }
  #content_01 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_01 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_01 .content_wrap h2 span { font-weight: 200; }
  #content_01 .content_wrap h4 {
    display: block;
    color: #ffdc6e;
    font-size: 30px;
    padding-top: 100px;
  }
  #content_01 .content_wrap p {
    line-height: 1.75;
    padding-top: 30px;
  }
  #content_01 .content_wrap img {
    display: block;
    width: 50%;
    position: absolute;
    top: 150px;
    right: 0;
  }
  #content_01 .content_wrap_02 img {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
  }

/*---------------------------------------   content_02   ---------------------------------------*/

  #content_02 {
    display: block;
    width: 100%;
    padding-bottom: 100px;
    background-color: #ffedb6;
  }
  #content_02 .content_wrap {
    display: block;
    width: 80%;
    margin: 0 auto;
    position: relative;
  }
  #content_02 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 40px;
    padding-top: 100px;
  }
  #content_02 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_02 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_02 .content_wrap .plan_table {
    display: flex;
    width: 1000px;
    margin: 50px auto;
  }
  #content_02 .content_wrap .plan_table .left { width: 400px; }
  #content_02 .content_wrap .plan_table .left .box {
    width: 300px;
    height: 250px;
    border-radius: 8px;
    border: 4px solid #ffdc6e;
    background-color: white;
    margin: 15px auto 0;
  }
  #content_02 .content_wrap .plan_table .left h5 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
  }
  #content_02 .content_wrap .plan_table .left p {
    line-height: 2;
    text-align: center;
    font-size: 20px;
  }
  #content_02 .content_wrap .plan_table .left p.small_font {
    font-size: 10px;
    font-weight: normal;
    text-align: left;
    padding-top: 10px;
    padding-left: 50px;
  }
  #content_02 .content_wrap .plan_table .left p span {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
  }
  #content_02 .content_wrap .plan_table .left p span.small_font {
    font-size: 10px;
    font-weight: normal;
  }
  #content_02 .content_wrap .plan_table .left h6 {
    color: #ffdc6e;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    padding-top: 35px;
  }
  #content_02 .content_wrap .plan_table .right { width: calc(100% - 400px); }
  #content_02 .content_wrap .plan_table .right .box {
    width: 550px;
    height: 300px;
    border-radius: 10px;
    border: 4px solid #ffdc6e;
    background-color: white;
    margin: 10px auto 0;
  }
  #content_02 .content_wrap .plan_table .right .box img.text_image {
    position: absolute;
    display: block;
    width: 120px;
    bottom: 220px;
    right: 200px;
  }
  #content_02 .content_wrap .plan_table .right h5 {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
  }
  #content_02 .content_wrap .plan_table .right p {
    line-height: 2;
    text-align: center;
    font-size: 20px;
    color: red;
    font-weight: normal;
  }
  #content_02 .content_wrap .plan_table .right p span {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: bold;
    font-size: 50px;
  }
  #content_02 .content_wrap .plan_table .right p span.black {
    color: black;
    font-size: 24px;
    padding-right: 20px;
    display: inline-block;
    margin-left: -100px;
  }
  .cross {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 2px;
    background: red;
    transform: rotate(30deg);
    vertical-align: middle;
  }
  .cross::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: red;
    transform: rotate(120deg);
  }
  #content_02 .content_wrap .plan_table .right p span.small_font {
    font-size: 10px;
    font-weight: normal;
  }
  #content_02 .content_wrap .plan_table .right h6 {
    color: #ffdc6e;
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    padding-top: 20px;
  }
  .arrow {
    position: absolute;
    display: block;
    bottom: 120px;
    left: 480px;
    width: 120px;
    height: 120px;
    background-color: red;
    clip-path: polygon(0 13%, 20% 13%, 20% 0, 75% 50%, 20% 100%, 20% 87%, 0 87%);
  }
  #content_02 .content_wrap .plan_table .right p.sp.small_font ,
  #content_02 .content_wrap .plan_table .right .box img.sp.text_image,
  #content_02 .content_wrap .plan_table .right .box.sp ,
  #content_02 .content_wrap .plan_table .left .box.sp ,
  #content_02 .content_wrap .plan_table .left p.tablet.small_font { display: none; }

/*---------------------------------------   content_03   ---------------------------------------*/

  #content_03 {
    display: block;
    width: 100%;
    padding-bottom: 100px;
  }
  #content_03 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_03 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 40px;
    padding-top: 100px;
  }
  #content_03 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_03 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_03 .content_wrap .flow_table {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 50px auto;
  }
  #content_03 .content_wrap .flow_table .box {
    border: solid 2px black;
    text-align: center;
    width: 300px;
    height: 350px;
  }
  #content_03 .content_wrap .flow_table .box img.number {
    display: block;
    width: 50px;
    padding-top: 20px;
    margin: 0 auto;
  }
  #content_03 .content_wrap .flow_table .box h5 {
    font-size: 26px;
    padding-top: 20px;
    text-align: center;
    font-weight: 700;
  }
  #content_03 .content_wrap .flow_table .box p {
    padding-top: 20px;
    text-align: center;
    line-height: 1.75;
  }
  #content_03 .content_wrap .flow_table .box a {
    width: 250px;
    height: 75px;
    margin: 25px auto 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    background-color: #00c300;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition-duration: .4s;
  }
  #content_03 .content_wrap .flow_table .box a:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  }
  #content_03 .content_wrap .flow_table .box a img {
    width: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-left: -20px;
  }
  #content_03 .content_wrap .flow_table .box p span {
    width: 240px;
    margin: 0 auto;
    display: block;
    font-size: 11px;
    text-align: left;
  }
  #content_03 .content_wrap .flow_table .box img.box_image {
    display: block;
    width: 280px;
    margin: 20px auto;
  }

/*---------------------------------------   content_04   ---------------------------------------*/

  #content_04 {
    display: block;
    width: 100%;
    padding-bottom: 100px;
  }
  #content_04 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_04 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto 50px;
    font-size: 40px;
    padding-top: 100px;
  }
  #content_04 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_04 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_04 .content_wrap .faq_table {
    display: block;
    width: 900px;
    margin: 10px auto;
    padding: 50px;
    background-color: #ffdc6e;
  }
  #content_04 .content_wrap .faq_table h5 {
    font-size: 26px;
    border-bottom: white 1px solid;
    padding-bottom: 10px;
  }
  #content_04 .content_wrap .faq_table h6 {
    font-size: 20px;
    font-weight: normal;
    display: inline-block;
    vertical-align: top;
    padding-top: 8px;
  }
  #content_04 .content_wrap .faq_table p {
    display: inline-block;
    vertical-align: top;
    width: 95%;
    font-size: 12px;
    line-height: 1.25;
    padding-top: 15px;
  }
  #content_04 .content_wrap .faq_table p span.sp { display: none; }

  #map iframe {
    display: block;
    width: 100%;
    height: 600px;
  }

/*---------------------------------------   footer   ---------------------------------------*/

  footer {
    width: 100%;
    height: 200px;
    padding-top: 20px;
    background-color: #ffdc6e;
  }
  footer .foot_wrap {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
  }
  footer .foot_wrap img {
    display: inline-block;
    vertical-align: middle;
    width: 300px;
    height: 100%;
    margin: 0 auto;
    padding-top: 10px;
  }
  footer .foot_wrap .info {
    display: inline-block;
    margin: 0 auto;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.75;
  }
  footer .foot_wrap .info p span { font-weight: bold; }
  footer .foot_wrap .info p br.sp { display: none; }
  footer p.copyright {
    text-align: center;
    padding-top: 30px;
  }

  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: -50px;
    background-color: #ffdc6e;
    color: white;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: FontAwesome;
    font-style: normal;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #sp-fixed-menu { display: none; }

}

/*--------------------------------------------------------------------------------------*/
/*----------------------------------------- sp -----------------------------------------*/
/*--------------------------------------------------------------------------------------*/

@media screen and (max-width: 749px) {

  body {
    width: 100%;
    margin: 0 auto;
  }

/*---------------------------------------   header   ---------------------------------------*/

  header {
    background-color: white;
    position: fixed;
    display: block;
    width: 100%;
    height: 80px;
    z-index: 10;
  }
  header nav.pc { display: none; }
  header h1 img {
    display:  block;
    width: 130px;
    padding: 10px 20px;
  }
  /*ハンバーガーボタン*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
  }
  .el_humburger {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    border: 2px solid #454649;
    background-color: white;
    height: auto;
    padding: 8px 5px;
    box-sizing: border-box;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
  }
  .el_humburger > span {
    display: block;
    width: 100%;
    margin: 0 auto 6px;
    height: 3px;
    background: #454649;
    transition: all 0.2s ease-in-out;
  }
  .el_humburger > span:last-child { margin-bottom: 0; }
  .js_humburgerOpen .el_humburger > span { background: #000; }
  .js_humburgerOpen .el_humburger > span.top { transform: translateY(9px) rotate(-45deg); }
  .js_humburgerOpen .el_humburger > span.middle { opacity: 0; }
  .js_humburgerOpen .el_humburger > span.bottom { transform: translateY(-9px) rotate(45deg); }
  .el_humburgerButton.el_humburgerButton__close {
    top: 2%;
    right: 2%;
  }
  .el_humburgerButton__close > span {
    display: block;
    width: 35px;
    margin: 0 auto;
    height: 4px;
    background: #fff;
  }
  .el_humburgerButton__close > span.el_humburgerLineTop { transform: translateY(5px) rotate(-45deg); }
  .el_humburgerButton__close > span.el_humburgerLineBottom { transform: translateY(-6px) rotate(45deg); }
  /*ナビゲーション*/
  .uq_spNavi { display: none; }
  .uq_spNavi.js_appear {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 9999;
  }
  .uq_spNavi_screen {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 0;
    margin-top: 0px;
    padding-top: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navigation {
    padding: 100px 0 0 10px;
    text-align: left;
  }
  .navigation_item {
    line-height: 2;
    display: block;
    width:  90%;
    font-size: 20px;
    padding: 20px 0;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
  }
  .navigation_item > a {
    color: black;
    text-decoration: none;
  }
  .js_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .uq_spNavi_screen a.line {
    width: 90%;
    height: 60px;
    margin: 35px auto;
    display: block;
    font-size: 20px;
    background-color: #00c300;
    border-radius: 10px;
    text-decoration: none;
    color: white;
  }
  .uq_spNavi_screen a.line img {
    width: 60px;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
  }

/*---------------------------------------   top   ---------------------------------------*/

  #top {
    display: block;
    width: 100%;
    height: 400px;
    padding-top: 50px;
    background-color: #ffdc6e;
  }
  #top .top_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #top .top_wrap h2 {
    display: block;
    font-size: 26px;
    line-height: 1.5;
    padding-top: 100px;
  }
  #top .top_wrap h3 {
    display: block;
    font-size: 12px;
    line-height: 1.75;
    padding-top: 20px;
  }
  #top .top_wrap img {
    display: block;
    width: 65%;
    margin: 20px 0 0 auto;
  }

/*---------------------------------------   content_01   ---------------------------------------*/

  #content_01 {
    display: block;
    width: 100%;
    padding: 30px 0 100px;
    background-color: white;
  }
  #content_01 .content_wrap ,
  #content_01 .content_wrap_02 {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_01 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    padding-top: 100px;
  }
  #content_01 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_01 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_01 .content_wrap h2 span { font-weight: 200; }
  #content_01 .content_wrap h4 {
    display: block;
    color: #ffdc6e;
    font-size: 15px;
    padding-top: 80px;
  }
  #content_01 .content_wrap p {
    line-height: 1.5;
    padding-top: 10px;
    font-feature-settings: "palt";
  }
  #content_01 .content_wrap p br.pc { display: none; }
  #content_01 .content_wrap img.pc ,
  #content_01 .content_wrap_02 img.pc { display: none; }
  #content_01 .content_wrap img.sp {
    display: block;
    width: 75%;
    margin: 50px auto -80px;
  }
  #content_01 .content_wrap_02 img.sp {
    display: block;
    width: 100%;
    margin: 50px auto;
  }
  .scroll_list {
    margin: 0 auto;
    padding: 0;
    width: 90%;  /* コンテンツが見切れて見えるようにする */
    overflow-x: auto;  /* 横スクロールの指定 */
    white-space: nowrap;  /* 横スクロールの指定 */
    overflow-scrolling: touch;  /* スクロールを滑らかにする */
    -webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
  }
  .scroll_list li {
    display: inline-block;  /* 横並びにする指定 */
    list-style: none;
    width: 380px;  /* 横スクロールする範囲の高さを指定 */
  }
  .scroll_list li img {
    display: block;  /* 横並びにする指定 */
    width: 380px;
    border: 3px solid black;
  }
  .list1 { margin-left: 0; }
  .list2, .list3, .list4, .list5 { margin-left: 10px; }

/*---------------------------------------   content_02   ---------------------------------------*/

  #content_02 {
    display: block;
    width: 100%;
    background-color: #ffedb6;
    padding: 50px 0;
  }
  #content_02 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_02 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    padding-top: 50px;
  }
  #content_02 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_02 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_02 .content_wrap .plan_table {
    display: block;
    width: 100%;
    margin: 50px auto;
  }
  #content_02 .content_wrap .plan_table .left .box.pc ,
  #content_02 .content_wrap .plan_table .right .box.pc ,
  #content_02 .content_wrap .plan_table .left p.pc.small_font { display: none; }
  #content_02 .content_wrap .plan_table .left .box.sp ,
  #content_02 .content_wrap .plan_table .right .box.sp {
    width: 90%;
    border-radius: 8px;
    border: 4px solid #ffdc6e;
    background-color: white;
    margin: 5px auto 0;
  }
  #content_02 .content_wrap .plan_table .left h5 {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
  }
  #content_02 .content_wrap .plan_table .right h5 {
    margin-top: 55px;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
  }
  #content_02 .content_wrap .plan_table .left .box.sp img ,
  #content_02 .content_wrap .plan_table .right .box.sp img {
    display: block;
    width: 90%;
    margin: 5px auto 0;
  }
  #content_02 .content_wrap .plan_table .right .box img.text_image {
    position: absolute;
    display: block;
    width: 95px;
    bottom: 95px;
    left: -10px;
  }
  .arrow {
    position: absolute;
    display: block;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background-color: red;
    clip-path: polygon(100% 75%, 90% 74%, 90% 55%, 10% 55%, 10% 75%, 0 75%, 50% 100%)
  }
  #content_02 .content_wrap .plan_table .right p.sp.small_font {
    font-size: 10px;
    line-height: 1.25;
    width: 90%;
    margin: 5px auto 0;
  }

/*---------------------------------------   content_03   ---------------------------------------*/

  #content_03 {
    display: block;
    width: 100%;
    padding: 50px 0 0;
  }
  #content_03 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_03 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    padding-top: 50px;
  }
  #content_03 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_03 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_03 .content_wrap .flow_table {
    display: block;
    width: 100%;
    margin: 50px auto;
  }
  #content_03 .content_wrap .flow_table .box {
    border: solid 2px black;
    text-align: center;
    width: 90%;
    height: 300px;
    margin: 0 auto 10px;
  }
  #content_03 .content_wrap .flow_table .box img.number {
    display: block;
    width: 50px;
    padding-top: 20px;
    margin: 0 auto;
  }
  #content_03 .content_wrap .flow_table .box h5 {
    font-size: 16px;
    padding-top: 20px;
    text-align: center;
    font-weight: 700;
  }
  #content_03 .content_wrap .flow_table .box p {
    padding-top: 20px;
    text-align: center;
    line-height: 1.5;
  }
  #content_03 .content_wrap .flow_table .box a {
    width: 250px;
    height: 60px;
    margin: 25px auto 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    background-color: #00c300;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition-duration: .4s;
  }
  #content_03 .content_wrap .flow_table .box a:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  }
  #content_03 .content_wrap .flow_table .box a img {
    width: 60px;
    display: inline-block;
    vertical-align: middle;
    margin-left: -20px;
  }
  #content_03 .content_wrap .flow_table .box p span {
    width: 240px;
    margin: 0 auto;
    display: block;
    font-size: 11px;
    text-align: left;
  }
  #content_03 .content_wrap .flow_table .box img.box_image {
    display: block;
    width: 220px;
    margin: 20px auto;
  }

/*---------------------------------------   content_04   ---------------------------------------*/

  #content_04 {
    display: block;
    width: 100%;
    padding: 100px 0;
  }
  #content_04 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_04 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto 50px;
    font-size: 16px;
    padding-top: 50px;
  }
  #content_04 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_04 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_04 .content_wrap .faq_table {
    display: block;
    margin: 10px auto 0;
    padding: 0;
    background-color: #ffdc6e;
  }
  #content_04 .content_wrap .faq_table h5 {
    font-size: 16px;
    border-bottom: white 1px solid;
    padding: 20px 0 10px;
    text-align: center;
    display: block;
    width: 85%;
    margin: 0 auto;
  }
  #content_04 .content_wrap .faq_table h6 { display: none; }
  #content_04 .content_wrap .faq_table p {
    display: block;
    width: 85%;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.25;
    padding: 20px 0;
    font-feature-settings: "palt";
  }
  #map iframe {
    display: block;
    width: 100%;
    height: 400px;
    margin: 50px 0 0;
    padding: 0;
  }

/*---------------------------------------   footer   ---------------------------------------*/

  footer {
    width: 100%;
    background-color: #ffdc6e;
    display: block;
    margin: 0;
    padding: 0 0 120px 0;
    text-align: center;
  }
  footer .foot_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  footer .foot_wrap img {
    display: block;
    vertical-align: top;
    width: 200px;
    margin: 0 auto;
    padding: 50px 0;
  }
  footer .foot_wrap .info {
    display: block;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 50px;
  }
  footer .foot_wrap .info p span { font-weight: bold; }
  footer p.copyright {
    padding: 10px 0;
  }
  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: 0;
    color: white;
    background-color: #ffdc6e;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: FontAwesome;
    font-style: normal;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

  #sp-fixed-menu {
    position: fixed;
    width: 100%;
    bottom: 0px;
    font-size: 0;
    z-index: 99;
  }
  /*メニューを横並びにする*/
  #sp-fixed-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #sp-fixed-menu li {
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
  }
  /*左側メニューを緑色に*/
  #sp-fixed-menu li:first-child {
    background: #ffdc6e;
    width: 40%;
  }
  /*左側メニューをオレンジ色に*/
  #sp-fixed-menu li:last-child {
    background: #00c300;
    width: 60%;
  }
  /*ボタンを調整*/
  #sp-fixed-menu li a {
    color: #fff;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    padding: 30px 0;
    text-decoration: none;
  }
  #sp-fixed-menu li a.tel { color: black; }
  #sp-fixed-menu li a img.iconimage {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    padding-right: 5px;
  }

}

/*--------------------------------------------------------------------------------------*/
/*----------------------------------------- pad -----------------------------------------*/
/*--------------------------------------------------------------------------------------*/

@media screen and (min-width:768px) and ( max-width:1200px) {

body {
    width: 100%;
    margin: 0 auto;
  }

/*---------------------------------------   header   ---------------------------------------*/

  header {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  header h1 {
    width: 200px;
    padding: 20px 0;
  }
  header h1 img {
    display: block;
    width: 100%;
  }
  header nav {
    width: 500px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  header ul { display: flex; }
  header li {
    list-style: none;
    margin-left: 50px;
  }
  header li a {
    color: black;
    text-decoration: none;
    position: relative;
  }
  header li a::after {
    position: absolute; /*親要素であるaタグを基準に位置を指定*/
    left: 0;            /*アンダーラインを各メニュー（aタグ）の左端に指定*/
    content: '';        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
    width: 100%;        /*アンダーラインを各aタグの幅に合わせる*/
    height: 5px;        /*アンダーラインの高さ（太さ）*/
    background: #ffdc6e;/*アンダーラインの色*/
    bottom: 1px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  header li a:hover::after {
    visibility: visible;
    bottom: -10px; /*アニメーションが止まる位置*/
    opacity: 1;
  }

/*---------------------------------------   top   ---------------------------------------*/

  #top {
    display: block;
    width: 100%;
    height: 650px;
    background-color: #ffdc6e;
  }
  #top .top_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #top .top_wrap h2 {
    display: block;
    font-size: 46px;
    line-height: 1.5;
    padding-top: 200px;
  }
  #top .top_wrap h3 {
    display: block;
    font-size: 20px;
    line-height: 1.75;
    padding-top: 20px;
  }
  #top .top_wrap img {
    display: block;
    width: 50%;
    margin: -50px 0 0 auto;
  }

/*---------------------------------------   content_01   ---------------------------------------*/

  #content_01 {
    display: block;
    width: 100%;
    padding: 100px 0;
  }
  #content_01 .sp ,
  #content_01 .content_wrap_02 img.sp { display: none; }
  #content_01 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
    font-size: 13px;
  }
  #content_01 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 25px;
  }
  #content_01 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_01 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_01 .content_wrap h2 span { font-weight: 200; }
  #content_01 .content_wrap h4 {
    display: block;
    color: #ffdc6e;
    font-size: 30px;
    padding-top: 100px;
  }
  #content_01 .content_wrap p.textbox {
    line-height: 1.75;
    padding-top: 30px;
    display: inline-block;
    width: 50%;
  }
  #content_01 .content_wrap p.textbox br.pc { display: none; }
  #content_01 .content_wrap img {
    display: inline-block;
    width: 45%;
    position: absolute;
    top: 200px;
    right: 0;
  }
  #content_01 .content_wrap_02 img {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
  }

/*---------------------------------------   content_02   ---------------------------------------*/

  #content_02 {
    display: block;
    width: 100%;
    padding-bottom: 100px;
    background-color: #ffedb6;
  }
  #content_02 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_02 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 25px;
    padding-top: 100px;
  }
  #content_02 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_02 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_02 .content_wrap .plan_table {
    display: flex;
    width: 100%;
    margin: 50px auto;
    position: relative;
  }
  #content_02 .content_wrap .plan_table .left { width: 50%; }
  #content_02 .content_wrap .plan_table .left .box {
    width: 65%;
    height: 250px;
    border-radius: 8px;
    border: 4px solid #ffdc6e;
    background-color: white;
    margin: 15px auto 0;
  }
  #content_02 .content_wrap .plan_table .left h5 {
    font-size: 16px;
    text-align: center;
    font-weight: 700;
  }
  #content_02 .content_wrap .plan_table .left p.tablet.small_font {
    padding: 40px 0 0;
    margin: 0;
    display: block;
    font-size: 10px;
    font-weight: normal;
  }
  #content_02 .content_wrap .plan_table .left p span {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
  }
  #content_02 .content_wrap .plan_table .left p span.small_font {
    font-size: 10px;
    font-weight: normal;
  }
  #content_02 .content_wrap .plan_table .left h6 {
    color: #ffdc6e;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    padding-top: 35px;
  }
  #content_02 .content_wrap .plan_table .right { width: calc(100% - 50%); }
  #content_02 .content_wrap .plan_table .right .box {
    width: 98%;
    height: 300px;
    border-radius: 10px;
    border: 4px solid #ffdc6e;
    background-color: white;
    margin: 10px auto 0;
  }
  #content_02 .content_wrap .plan_table .right .box img.text_image {
    position: absolute;
    display: block;
    width: 120px;
    bottom: 230px;
    right: 0;
  }
  #content_02 .content_wrap .plan_table .right h5 {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
  }
  #content_02 .content_wrap .plan_table .right p {
    line-height: 2;
    text-align: center;
    font-size: 20px;
    color: red;
    font-weight: normal;
  }
  #content_02 .content_wrap .plan_table .right p span {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: bold;
    font-size: 50px;
  }
  #content_02 .content_wrap .plan_table .right p span.black {
    color: black;
    font-size: 20px;
    padding-right: 20px;
    display: inline-block;
    margin-left: -100px;
  }
  .cross {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 2px;
    background: red;
    transform: rotate(30deg);
    vertical-align: middle;
  }
  .cross::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: red;
    transform: rotate(120deg);
  }
  #content_02 .content_wrap .plan_table .right p span.small_font {
    font-size: 10px;
    font-weight: normal;
  }
  #content_02 .content_wrap .plan_table .right h6 {
    color: #ffdc6e;
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    padding-top: 20px;
  }
  .arrow {
    position: absolute;
    display: block;
    top: 34%;
    left: 41%;
    width: 14%;
    height: 30%;
    background-color: red;
    clip-path: polygon(0 13%, 20% 13%, 20% 0, 75% 50%, 20% 100%, 20% 87%, 0 87%);
  }
  #content_02 .content_wrap .plan_table .right p.sp.small_font ,
  #content_02 .content_wrap .plan_table .right .box img.sp.text_image,
  #content_02 .content_wrap .plan_table .right .box.sp ,
  #content_02 .content_wrap .plan_table .left .box.sp,
  #content_02 .content_wrap .plan_table .left p.pc.small_font { display: none; }

/*---------------------------------------   content_03   ---------------------------------------*/

  #content_03 {
    display: block;
    width: 100%;
    padding: 50px 0 0;
  }
  #content_03 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_03 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    padding-top: 50px;
  }
  #content_03 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_03 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_03 .content_wrap .flow_table {
    display: block;
    width: 100%;
    margin: 50px auto;
  }
  #content_03 .content_wrap .flow_table .box {
    border: solid 2px black;
    text-align: center;
    width: 65%;
    height: 300px;
    margin: 0 auto 10px;
  }
  #content_03 .content_wrap .flow_table .box img.number {
    display: block;
    width: 35px;
    padding-top: 20px;
    margin: 0 auto;
  }
  #content_03 .content_wrap .flow_table .box h5 {
    font-size: 16px;
    padding-top: 20px;
    text-align: center;
    font-weight: 700;
  }
  #content_03 .content_wrap .flow_table .box p {
    padding-top: 20px;
    text-align: center;
    line-height: 1.5;
  }
  #content_03 .content_wrap .flow_table .box a {
    width: 300px;
    height: 75px;
    margin: 25px auto 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    background-color: #00c300;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition-duration: .4s;
  }
  #content_03 .content_wrap .flow_table .box a:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  }
  #content_03 .content_wrap .flow_table .box a img {
    width: 70px;
    display: inline-block;
    vertical-align: middle;
  }
  #content_03 .content_wrap .flow_table .box p span {
    width: 240px;
    margin: 0 auto;
    display: block;
    font-size: 11px;
    text-align: left;
  }
  #content_03 .content_wrap .flow_table .box img.box_image {
    display: block;
    width: 250px;
    margin: 20px auto;
  }

/*---------------------------------------   content_04   ---------------------------------------*/

  #content_04 {
    display: block;
    width: 100%;
    padding-bottom: 100px;
  }
  #content_04 .content_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #content_04 .content_wrap h2 {
    display: block;
    text-align: center;
    margin: 0 auto 50px;
    font-size: 40px;
    padding-top: 100px;
  }
  #content_04 .content_wrap h2.heading {
    position: relative;
    text-align: center; /* 文字の中央寄せ */
  }
  #content_04 .content_wrap h2.heading::before {
    background-color: #ffdc6e; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -20px; /* 線の位置 */
    content: "";
    height: 5px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 100px; /* 線の長さ */
  }
  #content_04 .content_wrap .faq_table {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 50px;
    background-color: #ffdc6e;
  }
  #content_04 .content_wrap .faq_table h5 {
    font-size: 20px;
    border-bottom: white 1px solid;
    padding-bottom: 10px;
  }
  #content_04 .content_wrap .faq_table h6 {
    font-size: 16px;
    font-weight: normal;
    display: inline-block;
    vertical-align: top;
    padding-top: 8px;
  }
  #content_04 .content_wrap .faq_table p {
    display: inline-block;
    vertical-align: top;
    width: 95%;
    font-size: 12px;
    line-height: 1.25;
    padding-top: 15px;
  }
  #content_04 .content_wrap .faq_table p span.sp { display: none; }

  #map iframe {
    display: block;
    width: 100%;
    height: 400px;
  }

/*---------------------------------------   footer   ---------------------------------------*/

  footer {
    width: 100%;
    height: 400px;
    background-color: #ffdc6e;
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  footer .foot_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  footer .foot_wrap img {
    display: block;
    vertical-align: top;
    width: 200px;
    margin: 0 auto;
    padding: 50px 0;
  }
  footer .foot_wrap .info {
    display: block;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 50px;
  }
  footer .foot_wrap .info p span { font-weight: bold; }
  footer p.copyright {
    padding: 10px 0;
  }

  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: -50px;
    background-color: #ffdc6e;
    color: white;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: FontAwesome;
    font-style: normal;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #sp-fixed-menu { display: none; }



}