a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}
html {
  line-height: 1;
}
ol,ul {
  list-style: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
caption,td,th {
  vertical-align: middle;
  text-align: left;
  font-weight: normal;
}
blockquote,q {
  quotes: none;
}
blockquote:after,blockquote:before,q:after,q:before {
  content: '';
  content: none;
}
a img {
  border: none;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
  display: block;
}
body {
  margin: 0 auto;
  min-width: 990px;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
@media screen and (min-width: 768px) {
  article {
    min-width: 960px;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

.bg-gray {
  background-color: #fafafa;
}
.t-center {
  text-align: center;
  align-items: center;
}
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}
.t-bold {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc-grid {
    display: grid;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.button > * {
  position: relative;
  display: block;
  margin: 10px auto 0;
  padding: 0 16px;
  width: fit-content;
  height: 30px;
  background-color: #ffed53;
  color: #000;
  font-weight: bold;
  font-size: 13px;
  line-height: 28px;
}
.button > *:after,
.button > *:before {
  position: absolute;
  top: -1px;
  left: -15px;
  display: block;
  width: 0;
  height: 0;
  border-width: 15px 15px 15px 0;
  border-style: solid;
  content: '';
}
.button > *:before {
  border-color: transparent #ffed53 transparent transparent;
}
.button > *:after {
  top: 0;
  left: -13px;
  border-width: 14px 14px 14px 0;
  border-color: transparent #ffed53 transparent transparent;
}
.button > * > span:after,
.button > * > span:before {
  position: absolute;
  top: -1px;
  right: -15px;
  display: block;
  width: 0;
  height: 0;
  border-width: 15px 0 15px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #ffed53;
  content: '';
}
.button > * > span:after {
  top: 0;
  right: -13px;
  border-width: 15px 0 15px 15px;
}
.iframe-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content_header {
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 24px 0;
  background-color: #fff9c4;
}
.content_header:before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border: 24px solid transparent;
  border-right: 24px solid #fff;
  border-bottom: 24px solid #fff;
  content: '';
}
.content_header .inner {
  margin: 0 auto;
}
.content_header .inner h1 {
  padding: 0 16px;
  font-weight: normal;
  font-size: 28px;
  line-height: 48px;
}
@media screen and (min-width: 768px) {
  .content_width {
    max-width: 960px;
  }
}
@media screen and (max-width: 767px) {
  .content_header:before {
    border: 8px solid transparent;
    border-right: 8px solid #fff;
    border-bottom: 8px solid #fff;
  }
  .content_header .inner h1 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
  }
}

.section {
  padding: 96px 0;
}
.section_inner {
  max-width: 832px;
}
@media screen and (min-width: 768px) {
  .section_inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 48px 0 96px;
  }
  .section_inner {
    margin: 0;
    padding: 0 16px;
  }
}

.h2_head {
  margin-bottom: 30px;
  font-size: 32px;
  line-height: 48px;
}
@media screen and (max-width: 767px) {
  .h2_head {
    font-size: 20px;
    line-height: 24px;
    margin-top: 36px;
    margin-bottom: 48px;
  }
}

.lead_text {
  font-size: 18px;
  line-height: 36px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lead_text {
    line-height: 1.75;
    text-align: left;
  }
}

.h3_head {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 72px;
  padding: 10px 0 8px;
  border-top: 2px solid #ffeb3b;
  border-bottom: 2px solid #ffeb3b;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .h3_head {
    max-width: 448px;
  }
}
@media screen and (max-width: 767px) {
  .h3_head {
    font-size: 18px;
  }
}

.section.type {
  padding-top: 0;
}
.type_list {
  margin-top: 48px;
  margin-bottom: 72px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.type_item {
  padding: 20px;
  border: 1px solid #fffac3;
  background: #fffac3;
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.type_title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
}
.type_description {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.75;
}
.type_img {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .type_list {
    margin-bottom: 48px;
    display: block;
  }
  .type_item {
    margin-bottom: 20px;
    width: auto;
    display: block;
  }
  .type_title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
  }
}

.section.pickup {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .pickup_inner {
    width: 90%;
    max-width: 1020px;
  }
}
.pickup_card_logo {
  height: 71px;
  text-align: center;
}
.pickup_content {
  color: #424242;
  text-align: center;
}
.pickup_content dt {
  margin: 10px 0;
  font-weight: bold;
  line-height: 24px;
}
.pickup_content dd {
  position: relative;
  padding: 8px 2em;
}
.pickup_content dd::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-top: 1px solid #757575;
  border-left: 1px solid #757575;
  content: '';
}
.pickup_content dd::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  border-right: 1px solid #757575;
  border-bottom: 1px solid #757575;
  content: '';
}
@media screen and (min-width: 768px) {
  .pickup_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 80px;
  }
  .pickup_list::after {
    content: "";
    width: 28%;
    height: 0;
  }
  .pickup_card {
    display: flex;
    flex-direction: column;
    width: 28%;
  }
  .pickup_card .button {
    margin-top: auto;
  }
  .pickup_card a img {
    transition: .2s;
  }
  .pickup_card a:hover img {
    opacity: .8;
  }
  .pickup_card_pic img {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .pickup_card:not(:last-of-type) {
    margin-bottom: 80px;
    text-align: center;
  }
  .pickup_card_pic img {
    display: block;
		margin: auto;
  }
}

.section.consultation {
  padding-top: 0;
}
.consultation_item:first-child {
  background: url(/assets/img/integrate/consul_contact2.png) no-repeat top / 100% auto;
}
.consultation_item:nth-child(2) {
  background: url(/assets/img/integrate/consul_cdn2.png) no-repeat top/100% auto;
}
.consultation_itemInner {
  padding-bottom: 96px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  box-sizing: border-box;
}
.consultation_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 24px;
  color: #000;
}
.consultation_description {
  font-size: 15px;
  line-height: 24px;
  padding: 0 24px;
  color: #424242;
  box-sizing: border-box;
}
.consultation_link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .consultation_list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  .consultation_item {
    width: calc((100% - 30px) / 2);
    padding: 155px 0 0;
    margin: 0 16px;
  }
  .consultation_itemInner {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .consultation_item {
    padding-top: 41.964285714285715%;
    margin-top: 48px;
  }
}