@charset "UTF-8";

:root {
  --color-red: #be1920;
  --color-blue: #171c61;
  --color-lightblue: #009de6;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/*COMMON*/
/*
Regular → 400
Medium → 500
Bold → 700
*/
html {
  font-size: 62.5%;
   font-family: "A1ゴシック R", "A1 Gothic R", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "Noto Sans JP", Arial, sans-serif;
  color: #333;
  font-weight: 500;
}
body{
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  body{
    min-width: 1000px;
  }
}
@media only screen and (max-width: 767px) {
  body{
    font-size: 14px;
    font-size: 1.4rem;
  }
}
*, ::before, ::after {
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast; }
.-fit{
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none; }
p{
  line-height: 1.5;
}
.hover:hover{
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .hover:hover{
    cursor: pointer;
    opacity: .8;
  }
}

.inner {
  width: calc(100% - 30px);
  margin: 0 auto;
  max-width: 1100px;
}
.inner-m{
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.inner-s{
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /*.inner {
    width: calc(100% - 64px); }*/
}

.mt10{margin-top: 10px !important;}
.mt15{margin-top: 15px !important;}
.mt20{margin-top: 20px !important;}
.mt25{margin-top: 25px !important;}
.mt30{margin-top: 30px !important;}
.mt35{margin-top: 35px !important;}
.mt40{margin-top: 40px !important;}
.mt50{margin-top: 50px !important;}
.mt70{margin-top: 70px !important;}
@media only screen and (max-width: 767px) {
  .mt5_sp{margin-top: 5px !important;}
  .mt10_sp{margin-top: 10px !important;}
  .mt15_sp{margin-top: 15px !important;}
  .mt20_sp{margin-top: 20px !important;}
  .mt25_sp{margin-top: 20px !important;}
  .mt30_sp{margin-top: 30px !important;}
  .mt35_sp{margin-top: 35px !important;}
  .mt40_sp{margin-top: 40px !important;}
  .mt45_sp{margin-top: 45px !important;}
  .mt50_sp{margin-top: 50px !important;}
}

.align-c{text-align: center;}
.font-m{
  font-size: 20px;
  line-height: 1.8;
}
.font-ml{
  font-size: 24px;
  line-height: 1.8;
}
.fontw-m{font-weight: 600;}
.bold{font-weight: bold;}
.color-red{color: var(--color-red);}
.color-blue{color: var(--color-blue);}
.color-lightblue{color: var(--color-lightblue);}

.note{
  font-size: 13px;
}
.note-mark{
  display: flex;
  text-align: left;
}
.note-mark-text{
  flex: 1;
}
@media only screen and (min-width: 768px) {
  .align-c-pc{text-align: center;}
}
@media only screen and (max-width: 767px) {
  .font-m{
    font-size: 14px;
    line-height: 1.5;
  }
  .font-ml{
    font-size: 15px;
  }
  .note{
    font-size: 10px;
  }
}


/*HEADER*/
.header{
  background-color: #FFF;
}
.header .logo{
  display: block;
  max-width: 400px;
  padding: 13px 0 12px;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .header .logo{
    padding: 10px 0 12px;
    margin-inline: auto;
    width: 77%;
  }
}

/*MV*/
.mv{
  background: #faf5e6;
  overflow: hidden;
}
.mv .inner{
  max-width: 1200px;
  width: 100%;
}
.mv .inner img{
  margin: 0 -50px;
  max-width: 1300px;
  width: calc(100% + 100px);
}
@media only screen and (max-width: 767px) {
  .mv .inner img{
    margin: 0;
    width: 100%;
  }
}

/*** NAV ***/
.nav-wrap{
  /*font-family: "A1ゴシック M";*/
  /*position: sticky;
  top: 0;*/
  position: relative;
  min-height: 110px;
  width: 100%;
  z-index: 100;
}
.nav{
  display: flex;
  background-color: #FFF;
  width: 100%;
}
.fixed .nav{
  position: fixed;
  top: 0;
  left: 0;
  animation: ShowAnime 0.5s forwards;
}
@keyframes ShowAnime{
  from {
  	opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.nav .item{
  width: 33.33%;
}
.nav .item .ttl{
  background-color: var(--color-red);
  text-align: center;
}
.nav .item .ttl span{
  border-right: 3px solid #FFF;
  color: #FFF;
  display: block;
  font-size: 20px;
  line-height: 1;
  padding: 9px 5px 7px;
}
.fixed .nav .item .ttl span{
  font-size: 16px;
}
.nav .item:last-child .ttl span{
  border: none;
}
.nav .item .link{
  display: block;
  font-size: 21px;
  font-weight: 600;
  padding: 18px 5px 14px;
  text-align: center;
}
.fixed .nav .item .link{
  font-size: 18px;
  padding: 13px 5px 12px;
}
.nav .item .link::after{
  content: "";
  background: url("../images/icon_border-arrow.svg") center center / contain no-repeat;
  display: block;
  height: 8px;
  margin: 13px auto 0;
  position: relative;
  transition: transform .2s;
  width: 14px;
}
.fixed .nav .item .link::after{
  margin-top: 10px;
  width: 13px;
}
.nav .item .link:hover::after{
  transform: translateY(3px);
}
@media only screen and (max-width: 767px) {
  .nav-wrap{
    min-height: 73px;
  }
  .nav .item .ttl{
    padding: 5px 0 3px;
  }
  .nav .item .ttl span{
    border-right-width: 1px;
    font-size: 11px;
    padding: 0 5px;
  }
  .fixed .nav .item .ttl span{
    font-size: 10px;
  }
  .nav .item .link{
    font-size: 11px;
    line-height: 1.3;
    padding: 8px 5px 8px;
  }
  .fixed .nav .item .link{
    font-size: 10px;
    padding: 8px 5px 8px;
  }
  .nav .item .link::after{
    height: 6px;
    margin-top: 4px;
    width: 10px;
  }
  .fixed .nav .item .link::after{
    height: 5px;
    width: 9px;
  }
}

/*main common*/
main{
  background-color: #f4f1ec;
}
.flex{
  display: flex;
}

.point_ttl{
  background-color: #e7e4e1;
  margin-top: 32px;
  margin-bottom: 73px;
  padding-top: 1px;
}
.point_ttl .inner{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -32px;
}
.point_ttl .balloon{
  background-color: #FFF;
  padding: 0 55px 30px;
  position: relative;
}
.point_ttl.right .balloon::after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #FFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
}
.point_ttl.left .balloon::before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #FFF transparent transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -8px;
}
.point_ttl .balloon .label{
  background-color: var(--color-red);
  color: #FFF;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  padding: 8px 10px 6px;
  position: relative;
  top: -16px;
  left: -36px;
}
.point_ttl .balloon .text{
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 5px;
  text-align: center;
}
.point_ttl .img{
  width: 192px;
}

.ttl-bracket{
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 33px;
  padding: 2px 16px;
  position: relative;
  text-align: center;
  width: 100%;
}
.ttl-bracket::before,
.ttl-bracket::after{
  content: '';
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 11px;
}
.ttl-bracket::before{
  border-left: solid 1px #333;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  left: 0;
}
.ttl-bracket::after{
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  right: 0;
}
.ttl-bracket span{
  display: flex;
  align-items: center;
  justify-content: center;
}
.ttl-bracket span .img{
  margin-right: 22px;
  width: 54px;
}

.box-white{
  background-color: #FFF;
  padding: 0 20px 47px;
}
.ttl-border{
  color: #FFF;
  font-size: 25px;
  font-weight: 600;
  padding: 13px 5px 12px;
  text-align: center;
}
.ttl-border.red{
  background-color: var(--color-red);
}
.ttl-border.blue{
  background-color: var(--color-blue);
}
.box-white .ttl-border{
  margin-inline: auto;
  max-width: 1000px;
  position: relative;
  top: -25px;
  width: 95%;
}

.ttl-arrow{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}
.ttl-arrow::before,
.ttl-arrow::after{
  content: "";
  background: url("../images/icon_arrow.svg") center center / contain no-repeat;
  display: block;
  height: 13px;
  width: 16px;
}
.ttl-arrow span{
  padding: 0 26px;
}
.banners{
  justify-content: center;
  flex-wrap: wrap;
}
.banners .item{
  max-width: 330px;
  padding: 35px 20px 0;
  width: 100%;
}
.banners .item p{
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .point_ttl{
    margin-bottom: 20px;
  }
  .point_ttl .inner{
    align-items: flex-end;
  }
  .point_ttl .balloon{
    padding: 0 20px 14px;
    margin-bottom: 10px;
  }
  .point_ttl .balloon .text{
    font-size: 19px;
    margin-top: 0;
    text-align: left;
  }
  .point_ttl .balloon .label{
    font-size: 12px;
    left: -10px;
    padding: 4px 4px 3px;
    top: -10px;
  }
  .point_ttl.left .balloon::before{
    left: -6px;
  }
  .point_ttl.right .balloon::after{
    right: -7px;
  }
  .point_ttl .img{
    width: 27%;
  }
  .ttl-bracket{
    font-size: 19px;
    margin-bottom: 15px;
  }
  .ttl-bracket::before, .ttl-bracket::after{
    width: 7px;
  }
  .ttl-bracket span .img{
    margin-right: 12px;
    width: 38px
  }
  .ttl-border{
    font-size: 16px;
    padding: 7px 5px 7px;
  }
  
  .box-white{
    padding: 0 10px 25px;
  }
  .box-white .ttl-border{
    top: -16px;
  }
  
  .ttl-arrow{
    align-items: flex-start;
    font-size: 16px;
  }
  .ttl-arrow::before, .ttl-arrow::after{
    margin-top: 5px;
  }
  .ttl-arrow span{
    padding: 0 15px;
  }
  .banners .item{
    padding: 25px 10px 0;
  }
  .banners .item p{
    margin-top: 8px;
  }
}

/*point1*/
.point1{
  padding-top: 153px;/*83px*/
  margin-top: -70px;
}
.point1 .point_ttl .inner{
  margin-top: -68px;
}
.point1 .point_ttl .img{
  margin-left: 15px;
}
.point1_1{
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
}
.point1_1 .item{
  width: 45%;
}
.point1_1 .item p{
  font-size: 17px;
  line-height: 1.8;
}
.point1_2{
  margin-top: 140px;
}
.point1_2 .case{
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 15px;
}
.point1_2 .case .item{
  width: 45%;
}
.point1_2 .case hr{
  border: none;
  border-right: 1px dashed #333;
  margin: 0;
}
.point1_2 .case_ex .img{
  margin-right: 25px;
  width: 100px;
}
.point1_2 .case_ex .text{
  flex: 1;
}
.point1_2 .case_ex .text .ttl{
  font-size: 29px;
  font-weight: 600;
}
.point1_2 .case_ex .text p{
  line-height: 1.8;
  margin-top: 16px;
}
.btn-modal{
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  margin-top: 35px;
  padding: 13px 5px;
  position: relative;
}
.btn-modal::before,
.btn-modal::after{
  content: "";
  background-color: #333;
  height: 15px;
  width: 1px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-modal::before{
  transform: translateY(-50%) rotate(90deg);
}
.remodal{
  max-width: 560px;
  padding: 35px 70px;
}
.remodal-close{
  top: 13px;
  left: inherit;
  right: 13px;
}
.remodal-close:before,
.remodal-close:after{
  content: "";
  position: absolute;
  top: 50%;
  left: inherit;
  right: 50%;
  width: 1px; /* 棒の幅（太さ） */
  height: 23px; /* 棒の高さ */
  background: #333;
}
.remodal-close:before{
  transform: translate(-50%,-50%) rotate(45deg);
}
.remodal-close:after{
  transform: translate(-50%,-50%) rotate(-45deg);
}
.remodal .note{
  font-size: 10px;
}

.point1_3{
  margin-top: 115px;
  padding-top: 44px;
}

@media only screen and (max-width: 767px) {
  .point1{
    padding-top: 95px;/*45px*/
    margin-top: -50px;
  }
  .point1 .point_ttl .inner{
    margin-top: -30px;
  }
  .point1_1{
    margin-top: 10px;
    margin-bottom: 90px;
  }
  .point1_1 .item{
    margin-top: 40px;
    width: 100%;
  }
  .point1_1 .item p{
    font-size: 14px;
    line-height: 1.5;
  }
  .point1_2{
    margin-top: 60px;
    padding: 0 18px 25px;
  }
  .point1_2 .case{
    margin-top: 10px;
  }
  .point1_2 .case .item{
    width: 100%;
  }
  .point1_2 .case_ex{
    align-items: flex-start;
  }
  .point1_2 .case_ex .text .ttl{
    font-size: 20px;
  }
  .point1_2 .case_ex .img{
    margin-right: 17px;
    width: 70px;
  }
  .point1_2 .case_ex .text p{
    line-height: 1.5;
    margin-top: 8px;
  }
  .point1_2 .case hr{
    border: none;
    margin: 20px 0;
    width: 100%;
  }
  .btn-modal{
    font-size: 15px;
    padding: 9px 5px;
    margin-top: 22px;
  }
  .btn-modal::before, .btn-modal::after{
    height: 12px;
    right: 17px;
  }
  
  .remodal{
    padding: 30px;
  }
  .remodal-close{
    top: 2px;
    right: 2px;
  }
  .remodal-close:before, .remodal-close:after{
    height: 16px;
  }
  .point1_3{
    margin-top: 58px;
    padding: 22px 24px 25px;
  }
}

/*point2*/
.point2{
  padding-top: 200px;
}
.point2 .point_ttl .inner{
  margin-top: -63px;
}
.point2 .point_ttl .img{
  margin-right: -52px;
  position: relative;
  width: 243px;
  z-index: 1;
}
.point2_1{
  margin-top: 85px;
}
.point2_2{
  margin-top: 130px;
}
.box-white-column2{
  padding-bottom: 65px;
}
.box-white-column2 .ttl-border{
  margin-bottom: 30px;
}
.box-white-column2 .flex{
  align-items: center;
  flex-wrap: wrap;
}
.box-white-column2 .textBlock{
  flex: 1;
}
.box-white-column2 .textBlock p{
  font-size: 17px;
  line-height: 1.8;
}
.box-white-column2 .textBlock .note{
  font-size: 13px;
  line-height: 1.5;
}
.box-white-column2 .imgBlock{
  margin-left: 50px;
  max-width: 400px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .point2{
    padding-top: 110px;
  }
  .point2 .point_ttl .inner{
    margin-top: -40px;
  }
  .point2 .point_ttl .img{
    margin-right: -35px;
    width: 41%;
  }
  .point2 .point_ttl .balloon .text{
    margin: 0 0 0 10px;
  }
  .point2_1{
    margin-top: 40px;
  }
  .point2 .box-white_inner{
    padding: 0 8px;
  }
  .box-white-column2{
    padding-bottom: 22px;
  }
  .box-white-column2 .ttl-border{
    margin-bottom: 3px;
  }
  .box-white-column2 .textBlock{
    flex: auto;
    width: 100%;
  }
  .box-white-column2 .textBlock p{
    font-size: 14px;
    line-height: 1.5;
  }
  .box-white-column2 .textBlock .note{
    font-size: 10px;
  }
  .box-white-column2 .imgBlock{
    margin-inline: auto;
    width: 100%;
  }
  .point2_2{
    margin-top: 52px;
    padding-bottom: 40px;
  }
  .point2_2.box-white-column2 .imgBlock{
    margin-inline: auto;
    width: 86%;
  }
}

/*point3*/
.point3{
  padding-top: 200px;
}
.point3 .point_ttl .inner{
  margin-top: -64px;
}
.point3 .point_ttl .img{
  width: 170px;
}
.point3_1{
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.point3_1 .textBlock{
  flex: 1;
}
.point3_1 .imgBlock{
  margin-left: 45px;
  max-width: 410px;
  width: 95%;
}
.point3_2{
  margin-top: 124px;
  padding-bottom: 80px;
}
.ttl-slash{
  display: inline-block;
  font-size: 26px;
  font-weight: 600;
  padding: 4px 50px 0;
  position: relative;
}
.ttl-slash::before, .ttl-slash::after{
  background-color: #333;
  content: '';
  display: inline-block;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 41px;
}
.ttl-slash::before{
  left: 0;
  transform: rotate(65deg);
}
.ttl-slash::after{
  right: 0;
  transform: rotate(-65deg);
}
.service1{
  margin-top: 50px;
}
.service1 .ttl-slash .font-l{
  font-size: 41px;
  max-width: 968px;
}
.service1-box{
  background-color: #f4f1ec;
  padding: 20px;
  margin-top: 23px;
}
.service1-box .ex{
  justify-content: space-between;
  flex-wrap: wrap;
}
.service1-box .ex .block{
  width: 48%;
}
.service1-box .ex .item{
  background-color: #FFF;
  display: flex;
  align-items: center;
  padding: 13px 0;
  margin-bottom: 10px;
}
.service1-box .ex .item .ttl{
  font-size: 16px;
  font-weight: 600;
  min-width: 105px;
  padding: 0 15px;
  text-align: center;
}
.service1-box .ex .item .text{
  border-left: 1px solid #333;
  font-size: 16px;
  font-weight: 600;
  padding: 0 16px;
}
sup{
  display: inline-block;
  font-size: 12px;
  position: relative;
  top: -0.5em;
}
.service1-box .note_block{
  border-top: 1px solid #333;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  width: 100%;
}
.service1-box .note_block .note_item{
  width: 48%;
}

.service2{
  margin-top: 125px;
}
.service2 .ttl{
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.service2 .ttl .color-red{
  font-size: 36px;
}
.ttl-balloon{
  border-bottom: 1px solid #333;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}
.ttl-balloon::before, .ttl-balloon::after{
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.ttl-balloon::before{
  border: 7px solid transparent;
  border-top: 7px solid #fff;
  bottom: -14px;
  z-index: 2;
}
.ttl-balloon::after{
  border: 8px solid transparent;
  border-top: 8px solid #333;
  bottom: -16px;
  z-index: 1;
}
.service2 .ttl-balloon{
  margin: 0 auto 68px;
  max-width: 480px;
}
.service2_1{
  flex-wrap: wrap;
  justify-content: space-between;
}
.service2_1 .item{
  width: 45%;
}
.service2_1 .ttl-bracket{
  font-size: 21px;
  margin-bottom: 40px;
}
.service2_1 .ttl-bracket span .img{
  margin-right: 18px;
  width: 48px;
}
.service2_1 .ex_ttl{
  align-items: center;
}
.service2_1 .ex_ttl .icon{
  background-color: #979797;
  border-radius: 50%;
  color: #FFF;
  font-size: 21px;
  height: 36px;
  margin-right: 10px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.service2_1 .ex_ttl .text{
  flex: 1;
  font-size: 17px;
  font-weight: 600;
}
.service2_1 .item .banner{
  margin: 16px auto 50px;
  width: 100%;
}

.service3{
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .point3{
    padding-top: 105px;
  }
  .point3 .point_ttl .inner{
    margin-top: -30px;
  }
  .point3 .point_ttl .img{
    width: 25%;
  }
  .point3 .point_ttl .balloon .text{
    margin: 0 5px;
  }
  .point3_1 .textBlock{
    flex: auto;
  }
  .point3_1 .imgBlock{
    margin: 12px auto 0;
    width: 85%;
  }
  .point3_2{
    margin-top: 60px;
    padding-bottom: 40px;
  }
  .point3_2 
  .ttl-slash{
    font-size: 17px;
    line-height: 1.3;
    padding: 4px 27px 0;
  }
  .ttl-slash::before, .ttl-slash::after{
    top: 60%;
    width: 46px;
  }
  .ttl-slash::before{
    left: -10px;
  }
  .ttl-slash::after{
    right: -10px;
  }
  .service1{
    margin-top: 5px;
  }
  .service1 .ttl-slash .font-l{
    font-size: 25px;
  }
  .service1-box{
    padding: 10px;
    margin-top: 14px;
  }
  .service1-box .ex .block{
    width: 100%;
  }
  .service1-box .ex .item{
    padding: 8px 0;
    margin-bottom: 7px;
  }
  .service1-box .ex .item .ttl,
  .service1-box .ex .item .text{
    font-size: 11px;
  }
  .service1-box .ex .item .ttl{
    letter-spacing: -.1em;
    padding: 0 8px;
    min-width: 74px;
  }
  .service1-box .ex .item .text{
    padding: 0 5px 0 10px;
  }
  sup{
    font-size: 10px;
    transform: scale(.75);
    top: -0.3em;
  }
  .service1-box .note_block{
    border: none;
    padding-top: 0;
    margin-top: 3px;
  }
  .service1-box .note_block .note_item{
    width: 100%;
  }
  /*.service1-box .note_block .note_item .note-mark-item{
    min-width: 4.5em;
  }*/
  
  .service2{
    margin-top: 40px;
  }
  .ttl-balloon{
    font-size: 13px;
    padding-bottom: 10px;
  }
  .ttl-balloon::before{
    border-width: 5px;
    bottom: -10px;
  }
  .ttl-balloon::after{
    border-width: 6px;
    bottom: -12px;
  }
  .service2 .ttl-balloon{
    margin-bottom: 40px;
    width: 90%;
  }
  .service2 .ttl .color-red{
    font-size: 23px;
  }
  .service2_1{
    margin-inline: auto;
    width: 90%;
  }
  .service2_1 .item{
    width: 100%;
  }
  .service2_1 .item:last-child{
    margin-top: 30px;
  }
  .service2_1 .ttl-bracket{
    font-size: 16px;
    margin-bottom: 20px;
  }
  .service2_1 .ttl-bracket span .img{
    margin-right: 12px;
    width: 34px;
  }
  .service2_1 .ex_ttl .icon{
    font-size: 15px;
    height: 25px;
    margin-right: 6px;
    width: 25px;
  }
  .service2_1 .ex_ttl .text{
    font-size: 12px;
  }
  .service2_1 .item .banner{
    margin: 8px auto 28px;
  }
  
  .service3{
    margin-top: 30px;
  }
  .service3 .ttl-arrow{
    font-size: 15px;
  }
  .service3 .ttl-arrow::before, .service3 .ttl-arrow::after{
    height: 8px;
    margin-top: 6px;
    width: 10px;
  }
  .service3 .banners .item{
    padding-top: 15px;
  }
}


/*FOOTER*/
.boban{
  font-size: 12px;
  margin-top: 13px;
  text-align: right;
}
.copyright{
  font-size: 14px;
  text-align: center;
  padding: 27px 0 50px;
}
@media only screen and (max-width: 767px) {
  .boban{
    font-size: 10px;
    margin-top: 6px;
  }
  .copyright{
    font-size: 11px;
    padding: 22px 0 20px;
  }
}