@charset "UTF-8";

/*
 *  reset.css
 */

/* !Reset
---------------------------------------------------------- */

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, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  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,hgroup,menu,nav,section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
    color: #16162b;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #16162b;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}


/* !List Style
---------------------------------------------------------- */
ol, ul {
  list-style:none;
}


/* !Box Sizing
---------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box; /* <=iOS 4, <= Android 2.3 */
     -moz-box-sizing: border-box; /* Firefox 1+ */
          box-sizing: border-box; /* Chrome, IE8+, Opera, Safari 5.1 */
}

/* !Clearfix（micro clearfix）
---------------------------------------------------------- */
/* for modern browsers */
.clearfix:before,
.clearfix:after,
.grid-box:before,
.grid-box:after {
  content: "";
  display: table;
}

.grid-box:after,
.clearfix:after { clear: both;}

/* for IE6/7 (trigger hasLayout) */
.grid-box,
.clearfix { *zoom: 1;}


/* !Alpha
---------------------------------------------------------- */
.alpha {
  -webkit-transition: opacity 0.4s ease;
          transition: opacity 0.4s ease;
}
  .alpha:hover { opacity: 0.7;}


/*
 *  css/style.css
 *
 */

/* !Defaults
---------------------------------------------------------- */


html {
  font-size: 62.5%;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  text-align: left;
  line-height: 25px;
  letter-spacing: .03em;
  font-size: 1.6em;
  font-family:
   noto-sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif
  ;
  -webkit-text-size-adjust: 100%;
  color:#16162b;
  font-weight: 600;
  font-style: normal;
  background-image: url('../img/bg.png');
}
  /* !Antialiaased */

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* !Anchor */

a {
  -webkit-transition: opacity 0.4s ease;
          transition: opacity 0.4s ease;
  text-decoration: none;
}
a:hover { opacity: 0.7;}

a:link,
a:visited {}

a:hover,
a:active {}

a:focus {}

main {
  display: block;
    
}

@media only screen and (max-width: 750px) {
  img {
    width: 100%;
    height: auto;
    vertical-align: middle;
  }
}


/* !Header
---------------------------------------------------------- */
.header {
    margin: auto;
    width:100%;
    max-width: 1200px;
    position: relative;
    top:40px;
    
}

.header h1 {
  position: relative;
  left: 0;
  width: 302px;
  z-index: 9999;
}

@media only screen and (max-width: 750px) {
  .header h1 {
    top: 16px;
    margin-left: -48%;
    width: 128px;
  }
}

/* !共通
---------------------------------------------------------- */

.top-image .marker {
  background: linear-gradient(transparent 70%, #ffff66 70%);
}

.marker {
  background: linear-gradient(transparent 65%, #ffff66 65%);
}

.title {
  position: relative;
  font-family: vdl-gigamaru, sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 2;
}

.box {
  position: relative;    
}

.box .inner {
  width: 980px;
  margin:30px auto ;
  padding: 60px;
  background: #fff;
  border: none;
  border-radius: 30px;
}

.box .inner .title{
    font-size: 30px;
    background: #e3e7ea;
    border-radius: 50px;
    padding:18px 40px 18px 80px;
    position: relative;

}

.box .inner .title::before{
    content:url(../img/icon_01.png);
    position: absolute;
    top:-40px;
    left: 30px;
}


.del {
  display: block;
}

.ins {
  display: none;
}

.text-area {
    width: 800px;
    margin: auto;
    padding: 10px 0;
}

.text-area img{
    display: block;
    margin:10px auto;
}

.arrow::after{
    position: absolute;
    left: 35px;
    top: 50%;
    display: inline-block;
    content: "";
    width: 7px;
    height: 7px;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transform: translate(0,-50%) rotate(45deg);
}
.flexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
}


.flexbox .left {
    display: block;
}
.flexbox .right {
    display: block;
}

h4{
    border-left: 20px solid #ecdd23;
    background: #f5e950;
    padding:10px ;
    font-size: 1.2em;
}

.linkbox{
    text-align: center;
    margin: 20px auto;
    position: relative;
}

.searchbtn{
    font-size:1.5em;
    border-radius: 50px;
    width:350px;
    text-align: center;
    text-decoration: none;
    color:#007ad8;
    display: inline-block;
    background: #fff;
    padding:30px 0;
}


table {
    margin: 20px auto;
    width:700px;
}
.tbl-r02 th {
    background: #65a9dd;
    border: solid 1px #fff;
    color: #fff;
    padding: 10px;
}
.tbl-r02 td {
    border: solid 1px #fff;
    padding: 10px;
}


.skdbox{
    display: block;
    margin:10px auto 20px;
    position: relative;
    max-width: 700px;
    width:90%;
}


.skd{
    display: block;
    margin:0 auto 20px;
}

a.skdbtn{
    display: inline-block;
    position: absolute;
    width: 200px;
    border-radius: 30px;
    color: #fff;
    background: #007ad8;
    text-decoration: none;
    line-height: 2.7em;
    text-align: center;
    z-index: 10;
    top:100px;
    left: 70px;
}


@media only screen and (max-width: 750px) {
  .box{
   width: 100%;
   padding: 0 5%;
  }
  .box .inner {
    width: 100%;
    padding: 40px 0;
  }
  .box .inner .title{
    font-size: 20px;
    background: #e3e7ea;
    padding:10px 20px 10px 80px;
      width:90%;
      margin: auto;
  }

    
.box .inner .title::before{
    background-image: url('../img/icon.png');
    }

  .del {
    display: none;
  }
  .ins {
    display: block;
  }
    
    .box{
        width: 100%;
        padding: 0 5%;
    }
    .box.box-01 .inner .title {
        margin-bottom: 20px;
    }
    .box.box-01 .inner .contents-area {
        width: 100%;
    }

    .box.box-01 .inner .contents-area .text-area {
        width: 90%;
        margin-bottom: 0px;
    }

    .box.box-01 .inner .contents-area .img-area {

        width: 80%;
        margin: 0 auto;
    }
    
    table {
        margin: 4vw auto;
        max-width:700px;
        width:95%;
        }

        .last td:last-child {
            border-bottom: solid 1px #ccc;
            width: 100%;
        }
        .tbl-r02 {
            width: 80%;
        }
        .tbl-r02 th,
        .tbl-r02 td {
            border-bottom: none;
            display: block;
            width: 100%;
        }


    .flexbox {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
    }


    .flexbox .left {
        display: block;
    }
    .flexbox .right {
        display: block;
        width: 70%
    }
    

    a.skdbtn{
        display: inline-block;
        position: absolute;
        width: 200px;
        border-radius: 30px;
        color: #fff;
        background: #007ad8;
        text-decoration: none;
        text-align: center;
        z-index: 10;
        top:11vw;
        left:7vw;
        font-size: 2vw;
        padding;2vw;
    }

    
}


/* !Main
---------------------------------------------------------- */

.main-title-pc{
    text-align: center;
    margin: auto;
    width:100%;
    max-width: 1200px;
}

.main-title-pc img{
    margin: auto;
  width:100%;
  max-width: 1200px;
    position: relative;
    top:40px;
}


.top-image .main-title-sp {
  display: none;
}

@media only screen and (max-width: 750px) {
  .top-image {
    height: auto;
  }
  .top-image .main-title-pc {
    display: none;
  }
  .top-image .main-title-sp {
    display: block;
    width:100%;
    margin:5px auto 10px;
  }

}   
    

/* !Back to top (Jump to the top of the page)
---------------------------------------------------------- */

a.gotop{
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  background-color: #000000;
  border-radius: 5px;
  line-height: 1.2em;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  box-shadow: 3px 4px 5px -6px #000000;
  -moz-box-shadow: 3px 4px 5px -6px #000000;
  -webkit-box-shadow: 3px 4px 5px -6px #000000;
  z-index: 5;
  font-size: 12px;
}

@media only screen and (max-width: 750px) {
  a.gotop{
    right: 5px;
    bottom: 5px;
  }
}

/* !Footer
---------------------------------------------------------- */

.footer {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  line-height: 3em;
  font-size: 12px;
  color: white;
  background-color: #000000;
}

@media only screen and (max-width: 750px) {
  .footer {
    line-height: 17px;
    padding: 7px 5%;
  }
}

/* !Media Query Template
---------------------------------------------------------- */
@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 960px) {}
@media only screen and (max-width: 768px) {}
@media only screen and (max-width: 750px) {}
@media only screen and (max-width: 480px) {}
@media only screen and (max-width: 320px) {}


/* !Pring Styles
---------------------------------------------------------- */
@media print {
    html,
    html body { *zoom: 0.65;}

    body { width: 960px;}
}


