@charset "UTF-8";
.sp-none {
  display: block!important;
}
.sp-block {
  display: none!important;
}
.sp-none-drawer {
  display: block;
}
.sp-block-drawer {
  display: none !important;
}
.sp-inline {
  display: none;
}
.pc-inline {
  display: inline;
}
@media screen and (max-width:1023px) {
  .sp-none-drawer {
    display: none;
  }
  .sp-block-drawer {
    display: block;
  }
}
@media screen and (max-width:767px) {
  .sp-none {
    display: none!important;
  }
  .sp-block {
    display: block!important;
  }
  .sp-inline {
    display: inline;
  }
  .pc-inline {
    display: none;
  }
}
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #040404;
}

/* ヘッダー */

header{
    height: 115px;
}

.header-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 0 50px;
}

#logo{
    width: 328px;
    height: 73px;
    margin: 20px 0 0;
    z-index: 100;
}

#logo img{
    width: 100%;
    height: auto;
}
.pc-navi{
display: flex;
    align-items: flex-end;
}

.pc-navi nav ul{
    display: flex;
    justify-content: space-between;
    margin-right: 2em;
    padding-bottom: 10px;
}

.pc-navi nav li{
    position: relative;
    margin-right: 3.5em;
}

.pc-navi nav a{
    position: relative;
    font-size: 1.7rem;
    color: #2B2B2B;
    text-decoration: none;
    padding: 0 5px 10px 5px;
}

.pc-navi nav a.active::after,
.pc-navi nav a:hover::after{
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #004087;
    border-radius: 2px;
}

/* マウスオーバーで展開するサブメニュー部 */
.pc-navi nav ul li ul {
  position: absolute;
  left: 0;
    top: 28px;
  width: 35em;
    margin: 0;
    padding: 10px 20px;
    border-top: 3px solid #004087;
  background-color: #EEECEC;

}
.pc-navi nav ul li ul li {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  margin: 0;
    padding: 15px 0;
  text-align: left;
}

.pc-navi nav ul li ul li a:hover{
    color: #666;
}

.pc-navi nav ul li ul li a:hover::after{
    display: none;
}


/* hoverでメニュー表示・非表示 */
.pc-navi nav ul li ul {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    display: block;
    z-index: 2;
}
.pc-navi nav ul li:hover ul {
    visibility: visible;
    display: block;
    opacity: 1;
}


.icon-area ul{
    display: flex;
    justify-content: space-between;
    width: 172px;
    margin: 10px 0 5px;
}

.icon-area button{
    border: none;
    background-color: inherit;
    margin: 0;
    padding: 0;
}

.pc-navi .btn-contact{
    margin-bottom: 0;
}

.pc-navi .btn-contact a{
    display: block;
    width: 182px;
    height: 42px;
    background-color: #004087;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 42px;
    text-align: center;
}

@media screen and (max-width:1160px) {
    header{
        height: 100px;
    }
    #logo{
        width: 260px;
        height: auto;
    }
    .pc-navi nav li{
            margin-right: 2.5em;

    }
    .icon-area ul{
            width: 142px;

    }
    .pc-navi .btn-contact a{
            width: 142px;
            height: 32px;
            line-height: 32px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width:1023px) {
    header{
        height: 60px;
    }
.header-wrapper{
    margin: 0 10px;
    }
    
    #logo{
        width: 220px;
        margin: 5px 0;
    }
}

.mean-nav li{
    height: 60px;
    line-height: 60px;
}

/*メインタイトル */
.main-title-area{
    width: 100%;
    height: 200px;
    background-image: url("../img/bg-title.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.main-title-wrapper{
    margin: 0 50px;
}

.main-title{
    padding-top: 50px;
}

.title-en{
    color: #5D8CBB;
}

.main-title .title-en{
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 0 8px;;
}

.main-title h1{
    font-size: 3.6rem;
    font-weight: 400;
}

@media screen and (max-width:767px) {
    .main-title-area{
        height: 100px;
    }
.main-title-wrapper{
    margin: 0 30px;
}
    .main-title{
    padding-top: 20px;
}
    .main-title .title-en{
        font-size: 1.4rem;
    }
.main-title h1{
    font-size: 2.6rem;
    }
}

/* パンくず */
.topic-path {
    text-align: right; 
  margin:  0;
  padding: 30px 0 0 0;
}
.topic-path ol, .topic-path ul {
  margin: 0 0 10px;
}
.topic-path li {
  display: inline;
  padding-left: 1em;
    font-size: 1.6rem;
}
.topic-path li::before {
  content: "＞";
  padding-right: 1em;
}
.topic-path li:first-child {
  padding-left: 0;
}
.topic-path li:first-child::before {
  content: "";
  padding-right: 0;
}
.topic-path li a {
  color: #040404;    
  text-decoration: none;
}
@media screen and (max-width:767px) {
  .topic-path {
    display: none;
  }
}

/* メインビジュアル */
.main-image{
    height: 455px;
    width: 100%;
    overflow: hidden;
    background-image: url("../img/main-image-service.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.main-image.company{
    background-image: url("../img/main-image-company.jpg");
}

@media screen and (max-width:767px) {
    .main-image{
        height: 200px;
        background-position: left 50%;
        background-attachment: scroll;
    }
}

#wrapper{
    margin: 0 50px;
    padding: 110px 0 200px;
    position: relative;
}

main{
    padding-right: 375px;
}

@media screen and (max-width:1023px) {
#wrapper{
    margin: 0 25px;
    padding: 50px 0;
    }
    main{
        padding-right: 0;
    }
}

aside{
    position: absolute;
    top: 110px;
    right: 0;
    width: 300px;
    visibility: visible;
    opacity: 1;
    transition: top 1s;

}

aside.fixed{
    position: fixed;
    top: 50px;
    right: 50px;
    visibility: visible;
    opacity: 1;
}

aside.fade{
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

aside nav li{
    background-color: #EEECEC;
 
}

aside nav li a{
    position: relative;
    display: block;
    padding: 35px 20px 35px 70px;
    text-decoration: none;
    font-size: 1.7rem;
    line-height: 3.2rem;
}

aside nav li a::before{
    position: absolute;
    display: block;
    content: "";
    top: 50px;
    left: 30px;
    width: 18px;
    height: 3px;
    background-color: #004087;
    border-radius: 2px;
}

/* 共通スタイル */
/*
a[id]::before {
  display: block;
  height: 50px;
  margin-top: -50px;
  content: "";
}*/
a[id]:hover {
  color: inherit;
}
@media screen and (max-width:1023px) {
  h2 a[id]::before {
    height: 0;
    margin-top: 0;
  }
}
h2{
    font-size: 3.2rem;
    line-height: 4.0rem;
    font-weight: 500;
}
.title{
    position: relative;
    padding-left: 70px;
    margin: 95px 0 70px;
}
.title.first{
    margin-top: 0;
}
.title h2::before{
    position: absolute;
    display: block;
    content: "";
    top: 20px;
    left: 0;
    width: 30px;
    height: 6px;
    background-color: #004087;
    border-radius: 3px;
}
h3 {
  font-size: 2.8rem;
  line-height: 3.2rem;
  margin: 80px 0 40px;
  font-weight: 500;

}
h3 span{
    display: inline-block;
    padding-bottom: 10px;

      border-bottom: 1px solid #5D8CBB;  
}
h4 {
display: flex;
  font-size: 2.3rem;
  line-height: 3.0rem;
  margin: 70px 0 30px;
  font-weight: 500;
}
h4::before{
    margin-right: 8px;
    content: "■";
    color: #004087;
    font-size: 0.8rem;
}
h3 + h4 {
  margin-top: 40px;
}

h5 {
  font-size: 1.8rem;
    font-weight: 500;
  margin: 40px 0 20px;
}
p {
  font-size: 1.8rem;
  line-height: 3.6rem;
  margin-bottom: 1.5em;
}

@media screen and (max-width:767px) {
  h2 {
    padding: 0 25px 25px 0;
    font-size: 2.8rem;
    line-height: 3.0rem;
    margin: 50px 0 35px 0;
  }
    .title{
        padding-left: 40px;
        margin-bottom: 50px;
    }
  .title h2 {
    padding: 0;
    font-size: 2.8rem;
    line-height: 3.0rem;
    margin: 0 0 5px 0;
  }
    .title h2::before{
        width: 20px;
    }
  h3 {
    font-size: 2.2rem;
    line-height: 2.4rem;
    margin: 50px 0 15px;
  }
  h4 {
    font-size: 2.0rem;
    line-height: 2.0rem;
  }
h5 {
  font-size: 1.6rem;
}
  p {
    font-size: 1.6rem;
    line-height: 1.8em;
  }
}
.column-2{
    display: flex;
    justify-content: space-between;
}

.column-2.bottom{
    align-items: flex-end;
}

.column-2 .text{
    width: 55%;
}

.column-2 figure{
    width: 40%;
}
.column-2.bottom figure{
    margin-bottom: 0;
}
@media screen and (max-width:767px) {
.column-2{
    display: block;
}

.column-2 .text{
    width: 100%;
}

.column-2 figure{
    width: 100%;
}
}

.table-like {
  font-size: 1.9rem;
}
@media screen and (max-width:767px) {
  .table-like {
    font-size: 1.6rem;
  }
}
.table-like dt {
  padding: 1.8rem 0;
  line-height: 3.0rem;
}
.table-like dd {
  line-height: 3.0rem;
  margin: -4.8rem 0 0 0;
  padding: 0 0 1.8rem 10em;
}
.kaihi{
    width: 50%;
}
@media screen and (max-width:1023px) {
    .kaihi{
    width: auto;
}
}
.price{
    text-align: right;
}
sup {
  vertical-align: super;
  font-size: 0.4em;
}
strong {
  font-weight: bold;
}
.note {
  margin: 20px 0;
  padding: 30px;
}
@media screen and (max-width:767px) {
  img {
    width: 100%;
    height: auto;
  }
  .no-stretch img {
    width: auto;
    height: auto;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
    font-size: 1.6rem;
    line-height: 1.8em;
    margin-bottom: 30px;
}
table caption{
    text-align: left;
    margin-bottom: 10px;
}
table th, table td {
  padding: 10px 20px;
}
table th {
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  background-color: #A2C5E8;

}
table td.right {
  text-align: right;
}
.nowrap{
    white-space: nowrap;
}
table h3 {
  margin: 30px 0 10px 0;
}

@media screen and (max-width:767px) {
    .sp-scroll{
        overflow-x: scroll;
    }
    .sp-scroll table{
        white-space: nowrap;
    }
}

.aligncenter {
  display: block;
}
.alignleft {
  float: left;
  margin-right: 40px;

}
.alignright {
  float: right;
  margin-left: 40px;

}
figure{
    width: 100%;
    height: auto;
    margin: 0 0 40px;
    padding: 0;
}
figure.alignleft,
figure.alignright{
    width: 400px;
    height: auto;
}
figure img{
    width: 100%;
    height: auto;
}
figcaption{
    margin-bottom: 15px;
    font-size: 1.5rem;
    
}
a svg{
    margin-left: 10px;
    width: 15px;
    height: 15px;
}
a svg.white{
    fill: #fff;
}
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 30px;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width:767px) {
  figure.alignleft {
    float: none;
      width: 100%;
    margin: 0 0 30px 0;
  }
  figure.alignright {
    float: none;
       width: 100%;
    margin: 0 0 30px 0;
  }
    .column-2 figure{
        width: 60%;
        margin: 0 auto 30px;
    }
}
.kakomi {
  padding: 0 10px;
}
.red {
  color: #f00;
}
ul, ol {
  margin-left: 20px;
}
.bullet {
  list-style-type: disc;
}
.bullet li {
  margin-bottom: 0.3em;
font-size: 1.9rem;
  margin-left: 20px;
    line-height: 3.5rem;
}
@media screen and (max-width:767px) {
.bullet li {
font-size: 1.6rem;
    line-height: 1.8em;
}
}
.bullet-strong {
  list-style-type: square;
}
.bullet-strong li {
  margin-bottom: 0.8em;
}
.numeric {
  list-style-type: decimal;
}
.numeric li {
  margin-bottom: 0.3em;
}
.indent {
  margin-left: 2em;
}
dl{
    font-size: 1.8rem;
  line-height: 3.6rem;
}
dt{
    font-size: 2.0rem;
    font-weight: 500;
}
dd{
    margin-bottom: 2em;
}
@media screen and (max-width:767px) {
dl{
    font-size: 1.6rem;
  line-height: 1.8em;
}
dt{
    font-size: 1.8rem;
}
}
.icons {
  margin-left: 0;
}
.icons li {
  display: inline-block;
  height: 4.5rem;
  padding: 1.3rem 10px;
  margin: 0 0 20px 0;
  border-radius: 3px !important;
  font-size: 1.6rem;
}
@media screen and (max-width:1023px) {
  .icons li {
    height: 4rem;
    padding: 10px 5px 5px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width:767px) {
  .icons li {
    height: 3rem;
    padding: 5px 5px 1px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.icons li img {
  width: 17px;
  height: 22px;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 0px !important;
}
@media screen and (max-width:767px) {
  .icons li img {
    width: 11px;
    height: 16px;
  }
}
.pager {
  margin: 50px auto;
}
.pager li {
  float: left;
  font-size: 1.6rem;
  margin-right: 5px;
  padding: 5px 10px;
}
.pager li.current {
  font-weight: bold;
}
.pager li a {
  display: block;
  text-decoration: none;
}

@media screen and (max-width:767px) {
  .pager li {
    margin-right: 7px;
    padding: 5px;
  }
}
.page-navi {
  display: flex;
  justify-content: space-between;
}
.icon{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 10px 0 ;
}
.icon li{
    margin-right: 10px;
    padding: 2px 10px;
    text-align: center;
    font-size: 1.4rem;
}
.intro{
    font-size: 2.4rem;
    color: #004087;
}
.blue{
    color: #294DC1;
}
.orange{
    color: #E16D40;
}
/* ボタン系 */
.btn {
    position: relative;
  margin: 30px 0 0;
  padding: 15px 10px;
        width: 360px;    
  text-align: center;
  font-weight: 400;
  font-size: 1.9rem;
}
.btn a {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
    background-image: url("../img/arrow-black.png");
    background-position: right 35px top 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    transition: all 0.3s;
}

@media screen and (max-width:767px) {
    .btn {
        width: 100%;
    }
}

.btn-back a {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
    background-image: url("../img/arrow-black.png");
    background-position: 20px 50%;
    background-repeat: no-repeat;
}


/* フッター */
.to-top{
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.to-top.active{
    opacity: 1.0;
    visibility: visible;
}

.to-top img{
    width: 100%;
    height: auto;
}
@media screen and (max-width:767px) {
    .to-top{
            width: 60px;
    height: 60px;
    }
}
.footer-wrapper {
  display: flex;
    justify-content: space-between;
  margin: 0 auto;
  padding: 100px 50px 70px 50px;
}
@media screen and (max-width:1023px) {
    .footer-wrapper {
        padding-left: 45px;
    }
}
.footer-wrapper a {
  text-decoration: none;
}

.footer-info p{
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 2.5rem;
}

.footer-info h5{
    margin: 0 0 30px;;
    font-size: 2.1rem;
}

.btn-contact-white a{
    display: block;
    color: #004087!important;
    background-color: #fff;
    font-size: 1.6rem;
    border-radius: 5px;
    text-align: center;
    padding: 5px 0;
}

.footer-navi {
    font-size: 1.6rem;
    font-weight: 400;
}
.footer-navi ul{
    margin: 0 20px 0 0;
}
.footer-navi ul li{
    margin-bottom: 15px;
}

.footer-navi a {
  text-decoration: none;
}
.footer-navi a[href="#"] {
  pointer-events: none;
}
.copyright {
  margin: 0 auto;
  text-align: center;
  padding: 5px 0;
  font-size: 1.4rem;
    font-weight: 400;
    background-color: #333;
}
#footer-bar {
  display: none;
}
@media screen and (max-width:1023px) {
  .footer-wrapper {
    display: block;
    padding: 50px 2% 20px;
  }
    .footer-info{
        margin-right: 0;
    }
.footer-info img,
    footer .sns-icon img{
    width: inherit;
        max-width: 100%;
    height: auto;}
  .footer-navi {
      display: none;
  }
    footer .sns-icon{
        text-align: center;
        margin-bottom: 30px;
    }
  .copyright {
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 0 45px;
    font-size: 1.3rem;
  }
  #footer-bar {
    display: flex;
    position: fixed;
      justify-content: space-between;
    bottom: 0;
    width: 100%;
    height: 38px;
    font-size: 1.6rem;
      padding: 4px 2%;
      background-color: #333;
  }

    #footer-bar .btn-footerbar a{
        display: block;
    height: 30px;
    background-color: #004087;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 30px;
    text-align: center;
        padding: 0 10px;
        
    }
    #footer-bar .icon-area a{
        margin-right: 10px;
    }
      #footer-bar img{
          width: 26px;
          height: 26px;
    }
}

/* home */
#home #wrapper{
    background-image: url("../img/bg-top.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 50px 200px 50px;
    margin: -30px 0 0 0;
    z-index: 0;
}

#home .main-image-area{
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
}

#home .main-image-area .image-wrapper{
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
}

#home .main-image-area .top-image image{
    position: absolute;
    bottom: 40px;
}

#home .main-image-area .top-image-back{
    position: absolute;
    left: 0;
    top: 8%;
    z-index: 0;
}

#home .main-image-area .text{
    position: absolute;
    padding: 30px 40px;
    bottom: 55px;
    right: 50px;
    color: #fff;
    background-color: rgba(32,32,32,0.6);
    z-index: 2;
}

#home .main-image-area h2{
    font-size: 3.6rem;
    margin-bottom: 20px;
    text-align: left;
}

#home .main-image-area p{
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 3.0rem;
    margin: 0;
}

@media screen and (max-width:1023px) {
#home .main-image-area .text{
    position: absolute;
    width: 100%;
    padding: 20px 30px;
    bottom: 20px;
    right: 0;
}
#home .main-image-area h2{
    font-size: 2.8rem;
    padding: 0;
    margin: 0 0 15px 0;
}
#home .main-image-area p{
    font-size: 1.6rem;
    line-height: 2.6rem;

    }
#home .main-image-area .top-image-back{
    display: none;
    }
}

@media screen and (max-width:767px) {
#home #wrapper{
    padding: 30px 2% 80px 2%;
    margin: -30px 0 0 0;
    z-index: 0;
}
#home .main-image-area .text{
    position: relative;
    width: 100%;
    padding: 20px 30px;
    margin-top: 5px;
    z-index: 0;
}
#home .main-image-area h2{
    font-size: 2.4rem;
    }
}

#home main{
    text-align: center;
    padding-right: 0;
}

#home h2{
    text-align: center;
}

.circle-figure{
    position: relative;
    width: 90%;
    margin: 90px auto;
}

.circle-figure img{
    width: 100%;
    height: auto;
}
.circle-figure .circle-text{
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width:767px) {
 #home h2{
    margin: 50px 0 10px 0;
     padding: 0;
}  
.circle-figure{
    margin: 50px auto;
}
}

.service-list ol{
    margin-left: 0;
}

.service-list li{
    display: flex;
    background-color: #fff;
    flex-wrap: nowrap;
    text-align: left;
    margin-bottom: 15px;
}

.service-list li .alphabet{
    width: 8%;
    padding-top: 35px;
    color: #fff;
  
}
.service-list li .alphabet p{
    text-align: center;
  font-family: 'Noto Serif JP', serif;
    font-size: 5.0rem;
  font-weight: 600;  
}

.service-list li .text{
    width: 52%;
    padding: 40px 40px 20px;
}

.service-list li .text h3{
    margin: 0;
    font-size: 3.0rem;
    line-height: 3.6rem;
}

.service-list li .text .en{
  font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
        line-height: 2.5rem;
}
.service-list li .text p{
    font-size: 1.6rem;
    line-height: 2.8rem;
}

.service-list li .point{
    position: relative;
    width: 40%;
    padding: 40px 50px 20px 0;
}

.service-list li h4{
    position: absolute;
    border: 1px solid #A4A4A4;
    background-color: #fff;
    margin: 0;
    padding: 5px 10px;
    top: 15px;
    right: 50px;
    font-size: 1.8rem;
}
.service-list li h4::before{
    content: "";    
}

.service-list li .point-text{
    background-color: #F8F5F5;
    padding: 30px 40px;
    margin-bottom: 10px;
}

.service-list li .point-text p{
    margin: 0;
    font-size: 1.6rem;
    line-height: 2.8rem;
}


.service-list li .btn{
    width: 100%;
    margin: 0;
    padding: 0;
}

.service-list li .btn a {
    display: block;
    cursor: pointer;
    padding: 15px 10px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    background-image: url("../img/arrow-white.png");
    background-position: right 15px top 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    transition: all 0.3s;
}

.service-list li .btn a:hover{
    opacity: 0.9;
}

 .service-list li.a .alphabet,
 .service-list li.a .btn a{
    background-color: #1063BF;
}

 .service-list li.a .text h3,
 .service-list li.a .text .en{
    color: #1063BF;
}
 .service-list li.b .alphabet,
 .service-list li.b .btn a{
    background-color: #008717;
}

 .service-list li.b .text h3,
 .service-list li.b .text .en{
    color: #008717;
}
 .service-list li.c .alphabet,
 .service-list li.c .btn a{
    background-color: #CBA900;
}

 .service-list li.c .text h3,
 .service-list li.c .text .en{
    color: #CBA900;
}
 .service-list li.d .alphabet,
 .service-list li.d .btn a{
    background-color: #BC5E00;
}

 .service-list li.d .text h3,
 .service-list li.d .text .en{
    color: #BC5E00;
}

@media screen and (max-width:1023px) {
    .service-list li .point-text{
        padding: 30px 20px;
    }
}

@media screen and (max-width:767px) {
.service-list li{
    flex-wrap: wrap;
}
.service-list li .alphabet{
    width: 100%;
    padding: 20px;
}

 .service-list li .alphabet p{
     font-size: 3.0rem;
     line-height: 3.0rem;
    margin: 0;
}   

.service-list li .text{
    width: 100%;
    padding: 30px 20px 20px;
}
    
.service-list li .text h3{
    margin: 0;
    font-size: 2.4rem;
    line-height: 3.2rem;
}
.service-list li .point{
    width: 100%;
        padding: 0 20px 20px;

    }
.service-list li .point img{
    width: auto;
    height: auto;
    }
.service-list li h4{
    padding: 5px 10px;
    top: -20px;
    right: 20px;
    font-size: 1.6rem;
    line-height: 3.1rem;
}
.service-list li h4::before{
    content: none;
    }
    .service-list li .point .point-text{
        font-size: 1.6rem;
        padding: 30px 20px 20px 20px;
    }
}

#home .title{
    padding-left: 0;
}

#home .title h2::before{
    content: none;
    
}

#home .title-en{
    margin-bottom: 0;
}

@media screen and (max-width:767px) {
    #home .title h2{
        margin-top: 10px;
    }
}

#home .feature-box ul{
    display: flex;
    justify-content: space-between;
    margin-left: 0;
}

#home .feature-box ul li{
    width: 36%;
    background-image: url("../img/icon-cross.png");
    background-position: right 8% top 110px;
    background-size: 48px 48px;
    background-repeat: no-repeat;
    
}

#home .feature-box ul li:last-child{
    width: 28%;
    background: none;
}

#home .feature-box .feature-wrap{
    width: 75%;
}

#home .feature-box p{
    margin-top: 40px;
    font-size: 1.8rem;
    line-height: 3.7rem;
    text-align: left;
}

#home .feature-box .image{
    width: 100%;
    padding: 70px 25px 60px 25px; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% center;
}

#home .feature-box li:nth-of-type(1) .image{
    background-image: url("../img/feature-1.png");
}

#home .feature-box li:nth-of-type(2) .image{
    background-image: url("../img/feature-2.png");
}

#home .feature-box li:nth-of-type(3) .image{
    background-image: url("../img/feature-3.png");
}

#home .feature-box .image h3{
    color: #fff;
    border-bottom: 1px solid #fff;
    font-size: 3.6rem;
    line-height: 2.2rem;
    font-weight: 500;
    margin: 0;
}

#home .feature-box .image h3 span{
    border-bottom: none;
    font-size: 1.5rem;
    font-weight: 400;
}

#home .feature-box .image p{
    margin-top: 20px;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
}

@media screen and (max-width:1023px) {
    #home .feature-box ul{
        display: block;
    }
    
        #home .feature-box ul li{
            width: 100%;
                background: none;

    }
    
#home .feature-box ul li:last-child{
    width: 100%;
    background: none;
}

#home .feature-box .feature-wrap{
    width: 100%;
}
    #home .feature-box p{
        margin: 20px 0 60px;;
        font-size: 1.6rem;
        line-height: 2.8rem;
    }
}

.news dl dt {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
    border-bottom: 1px solid #707070;
}
.news dl dd {
  margin: -9.0rem 0 3rem 0;
  padding: 0 0 3rem 16rem;
}
.news dl dd a {
  text-decoration:underline;
}
.news dl dd a:hover {
  text-decoration: underline;
}
@media screen and (max-width:767px) {
    .news dl {
        padding: 0 2%;
            font-size: 1.6rem;

    }
    
.news dl dt {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: none;
}
  .news dl dd {
    margin: 0 0 40px 0;
      padding: 0 0 4rem 0;
    border-bottom: 1px solid #707070;

  }
}

.news .date{
    margin-bottom: 10px;
}

.news .post-container{
    margin-bottom: 80px;
    
}

/* contact */
.contact .table-like {
  font-size: 1.9rem;
}
@media screen and (max-width:767px) {
  .contact .table-like {
      padding: 0 2%;
    font-size: 1.6rem;
  }
}
.contact .table-like dt {
  padding: 1.8rem 0;
  line-height: 3.0rem;
}
.contact .table-like dd {
  min-height: 4.8rem;
  line-height: 3.0rem;
  margin: -4.8rem 0 0 0;
  padding: 0 0 1.8rem 10em;
}
@media screen and (max-width:1023px) {
  .contact .table-like dd {
    margin: 0 0 0 0;
    padding: 0 0 1.8rem 0;
  }
}
.contact .must {
  margin-right: 10px;
  padding: 1px 5px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #f00;
}
.contact .will {
  margin-right: 10px;
  padding: 1px 5px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #666;
}
main .table-like input {
  height: 3.0rem;
    box-sizing: border-box;
}
.contact input[type="submit"] {
  width: 60%;
  height: 80px;
  margin: 40px 20% 20px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
    font-weight: 400;
  line-height: 80px;
  text-align: center;
  background-image: url("../img/arrow-black.png");
  background-position: top 50% right 20px;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0.40);
  background-size: 24px 24px;
  border-radius: 3px;
  cursor: pointer;
}
.contact input.back {
  width: 40%;
  height: 50px;
  line-height: 50px;
  font-size: 1.8rem;
  background-image: none;
  cursor: pointer;
}
@media screen and (max-width:1023px) {
  .table-like input[type="text"], .table-like input[type="email"], .table-like textarea {
    width: 100%;
  }
  .table-like input.zip {
    width: auto;
  }
  .contact input[type="submit"] {
    width: 80%;
      margin: 40px 10% 20px;
    font-size: 1.8rem;
    background-size: 30px;
  }
}
.privacy {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 1.5rem;
  line-height: 2.4rem;
}