* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

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;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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;
  background: transparent;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input,
select {
  vertical-align: middle;
}

/* mixin */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* all */
body {
  color: #222;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  letter-spacing: 0.05em;
  line-height: 2;
}

table {
  width: 100%;
  text-align: center;
}

ul li {
  margin: 0;
  list-style: none;
}

ol {
  margin-left: 1.6rem;
}

/* Typography */
h1 {
  font-size: 36px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

img {
  width: 100%;
  vertical-align: middle;
}

#a8sales {
  display: none;
}

.main {
  position: relative;
}

.header.h-fixed,
.sp-header.h-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 0 60px;
  flex-direction: row;
  justify-content: flex-end;
  background-color: #fff;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}

.header__logo.h-fixed__logo {
  width: 266px;
  left: 60px;
}

#HeaderLogoFixed {
  display: none;
}

.sp-header {
  position: fixed;
  top: 0;
  z-index: 100;
  height: 68px;
  width: 100%;
  padding: 0 30px;
  background-color: #fff;
}

.sp-header .sp-headerBox {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.sp-header .sp-headerLogo {
  width: 140px;
}

.sp-header .sp-headerButton {
  height: 36px;
  width: 142px;
}

.sp-header .sp-headerButton a {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 4px 12px;
  justify-content: center;
  background-color: #fada82;
  border: 2px solid #4c5457;
  border-radius: 100px;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
}

.sp-header .sp-headerButton a:after {
  content: none;
}

.header {
  position: relative;
  display: flex;
  z-index: 100;
  height: 100px;
  margin: 0 60px;
  flex-direction: row-reverse;
  align-items: center;
}

.header__logo {
  position: absolute;
  left: 0;
  width: 266px;
  height: 44px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.header__nav ul {
  display: flex;
  height: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.header__nav ul li {
  margin-right: 32px;
  font-size: 14px;
  font-weight: 700;
}

.header__nav ul li:last-child {
  margin-right: 0;
}

.header__nav ul li:last-child a {
  padding: 4px 17px;
  background-color: #fada82;
  border: 2px solid #4c5457;
  border-radius: 100px;
}

.header__nav ul li:last-child a:hover {
  background-color: #eb9408;
  color: #fff;
}

.header__nav ul li:last-child a::after {
  content: none;
}

.header__nav ul li a {
  position: relative;
  display: block;
  height: 100%;
  padding: 5px 0;
  color: inherit;
  transition: 0.1s;
}

.header__nav ul li a:after {
  position: absolute;
  left: 50%;
  top: 26px;
  content: url("../img/hover_arrow.svg");
  opacity: 0;
  transform: translateX(-50%);
  transition: 0.3s;
}

.header__nav ul li a:hover {
  opacity: 1;
  color: #eb9408;
}

.header__nav ul li a:hover:after {
  top: 32px;
  opacity: 1;
  visibility: visible;
}

.list_contents,
.detail_contents {
  position: relative;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 0;
  z-index: 10;
}

.detail_contents {
  max-width: unset;
  padding: 40px 0 0;
}

.header__nav ul {
  display: flex;
  height: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.header__nav ul li {
  margin-right: 32px;
  font-size: 14px;
  font-weight: 700;
}

.header__nav ul li a {
  position: relative;
  display: block;
  height: 100%;
  padding: 5px 0;
  color: inherit;
  transition: 0.1s;
}

.header__nav ul li a:hover {
  opacity: 1;
  color: #eb9408;
}

.header__nav ul li:last-child {
  margin-right: 0;
}

.header__nav ul li:last-child a {
  padding: 4px 17px;
  background-color: #fada82;
  border: 2px solid #4c5457;
  border-radius: 100px;
}

.header__nav ul li:last-child a:hover {
  background-color: #eb9408;
  color: #fff;
}

.list_header {
  position: relative;
  width: 100%;
  height: 129px;
  padding: 0 20px;
  background-image: url(../img/header_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.list_header:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: "";
  width: 100%;
  height: 80px;
  background-image: url(../img/header_bg_item.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.common-title {
  font-size: 36px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .05em;
}

.common-title p {
  display: inline-block;
  border-bottom: 2px solid #222;
  font-family: 'Hind Madurai', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}

.common-title h2 {
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.common-title h2 ._text {
  display: inline-block;
  margin-top: -10px;
  padding-left: 25px;
}

.common-title h2 ._image {
  display: inline-block;
  width: 100px;
}

.list_wrap {
  margin: 120px 0;
}

.list_wrap ul {
  max-width: 980px;
  width: 92%;
  margin: 0 auto;
  overflow: hidden;
}

.list_wrap ul li {
  float: left;
  width: 30.6%;
  margin: 0 4.1% 75px 0;
}

.list_wrap ul li .thumb {
  margin: 0 0 45px;
}

.list_wrap ul li .thumb img {
  width: 100%;
  display: block;
}

.list_wrap ul li .title {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.411;
  min-height: 5.644em;
  margin: 0 0 30px;
  text-decoration: underline;
}

.list_wrap ul li .title.blue {
  color: #459db9;
}

.list_wrap ul li .title.orange {
  color: #eb9408;
}

.list_wrap ul li .disc {
  font-size: 13px;
}

.list_wrap ul li:nth-of-type(3n) {
  margin: 0 0 75px 0;
}

.list_wrap ul li:nth-of-type(3n+1) {
  clear: both;
}

.list_wrap ul li a {
  display: block;
  color: #222;
  transition: .2s;
}

.list_wrap ul li a:hover {
  opacity: 0.5;
}

.detail_wrap {
  margin: 80px auto;
}

.detail_wrap .main {
  max-width: 1020px;
  margin: 0 auto;
}

.detail_wrap .main .mv {
  margin: 0 0 64px;
}

.detail_wrap .main .title {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 70px;
}

.detail_wrap .section {
  position: relative;
  margin: 130px 0;
}

.detail_wrap .section .sec_title {
  text-align: center;
  position: relative;
}

.detail_wrap .section .sec_title p {
  display: inline-block;
  border-bottom: 2px solid #222;
  font-family: 'Hind Madurai', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}

.detail_wrap .section .sec_title h3 {
  font-size: 24px;
  margin: 30px 0 0;
}

.detail_wrap .section .sec_title:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '';
  display: block;
  z-index: -1;
  height: 80px;
  width: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translateX(-50%);
}

.detail_wrap .section .inner {
  position: relative;
}

.detail_wrap .section .qa_wrap {
  padding: 0 0 20px;
}

.detail_wrap .section .qa_box {
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
}

.detail_wrap .section .qa_box .question {
  overflow: hidden;
  margin: 0 0 50px;
}

.detail_wrap .section .qa_box .question .img {
  width: 146px;
  float: left;
}

.detail_wrap .section .qa_box .question .img img {
  width: 100%;
}

.detail_wrap .section .qa_box .question .text {
  border: 2px solid #000;
  padding: 30px;
  margin: 40px 0 0 20px;
  background: #fff;
  position: relative;
  display: inline-block;
  border-radius: 5px;
}

.detail_wrap .section .qa_box .question .text:before,
.detail_wrap .section .qa_box .question .text:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.detail_wrap .section .qa_box .question .text:before {
  border-color: transparent;
  border-right-color: #000;
  border-width: 13px;
  margin-top: -13px;
}

.detail_wrap .section .qa_box .question .text:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 10px;
  margin-top: -10px;
}

.detail_wrap .section .qa_box .question .text p {
  margin: 0 0 30px;
}

.detail_wrap .section .qa_box .answer {
  position: relative;
}

.detail_wrap .section .qa_box .answer p {
  margin: 0 0 30px;
}

.detail_wrap .section .qa_box .answer p a {
  color: #222;
  font-weight: bold;
  text-decoration: underline;
  transition: .2s;
}

.detail_wrap .section .qa_box .answer p a:hover {
  color: #eb9408;
}

.detail_wrap .section .qa_box .answer .answer_img figure {
  width: 70%;
  margin: 0 auto;
}

.detail_wrap .section .qa_box .answer .answer_img figcaption {
  font-size: 14px;
  text-align: center;
}

.detail_wrap .section:after {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.detail_wrap .section.sec01:after,
.detail_wrap .section.sec05:after {
  background-image: url(../img/sec_bg_bottom_blue.png);
}

.detail_wrap .section.sec01 .sec_title:before,
.detail_wrap .section.sec05 .sec_title:before {
  background-image: url(../img/sec_bg_top_blue.png);
}

.detail_wrap .section.sec01 .inner,
.detail_wrap .section.sec05 .inner {
  background: #f2f8fa;
}

.detail_wrap .section.sec01 .inner .sec01_img,
.detail_wrap .section.sec05 .inner .sec01_img {
  width: 148px;
  position: absolute;
  right: 0;
  bottom: -140px;
  z-index: 2;
}

.detail_wrap .section.sec03:after {
  background-image: url(../img/sec_bg_bottom_green.png);
}

.detail_wrap .section.sec03 .sec_title:before {
  bottom: 0;
  background-image: url(../img/sec_bg_top_green.png);
}

.detail_wrap .section.sec03 .inner {
  background: #f5f7e4;
}

.detail_wrap .section.sec03 .inner .sec03_img {
  width: 148px;
  position: absolute;
  right: 0;
  bottom: -170px;
  z-index: 2;
}

.back_btn {
  max-width: 217px;
  width: 100%;
  margin: 40px auto 0;
  transition: .2s;
}

.back_btn a {
  display: block;
  width: 100%;
  padding: 11px;
  background-color: #FFF;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 2px solid #4C5457;
  border-radius: 100px;
}

.back_btn:hover {
  opacity: 0.5;
}

.footer {
  position: relative;
  width: 100%;
  height: 227px;
  margin-top: -40px;
  overflow: hidden;
}

.footer:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../img/footer_bg.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.footer_inner {
  position: relative;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 103px 20px 32px;
  z-index: 1;
}

.footer_logo {
  width: 200px;
}

.footer_copy {
  margin-top: 32px;
  line-height: 1;
}

@media (max-width: 1210px) {

  .footer:before,
  .list_header:after {
    min-width: 1280px;
  }

  .header {
    align-items: flex-end;
  }

  .header__nav ul {
    position: relative;
  }

  .header__nav ul li:last-child {
    position: absolute;
    right: 0;
    top: -45px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 0 !important;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .header {
    display: none;
  }

  .common-title {
    font-size: 26px;
  }

  .common-title h2 {
    font-size: 26px;
    margin-top: 6px;
  }

  .common-title h2 ._image {
    width: 70px;
  }

  .list_header:after {
    height: 30px;
  }

  .list_header:after,
  .footer:before {
    min-width: auto;
  }

  .list_wrap ul {
    max-width: 640px;
  }

  .list_wrap ul li {
    width: 48%;
    margin: 0 4% 45px 0;
  }

  .list_wrap ul li .thumb {
    margin: 0 0 30px;
  }

  .list_wrap ul li .title {
    min-height: unset;
  }

  .list_wrap ul li:nth-of-type(3n) {
    margin: 0 2% 45px 0;
  }

  .list_wrap ul li:nth-of-type(2n) {
    margin: 0 0 45px 0;
  }

  .list_wrap ul li:nth-of-type(3n+1) {
    clear: none;
  }

  .list_wrap ul li:nth-of-type(2n+1) {
    clear: both;
  }

  .detail_wrap .main {
    margin: 0 auto;
    padding: 0 20px;
  }

  .detail_wrap .main .mv {
    margin: 0 0 32px;
  }

  .detail_wrap .main .title {
    font-size: 20px;
    margin: 0 0 35px;
  }

  .detail_wrap .section {
    margin: 130px 0;
  }

  .detail_wrap .section .sec_title {
    padding: 0 20px;
  }

  .detail_wrap .section .sec_title h3 {
    font-size: 20px;
  }

  .detail_wrap .section .sec_title:before {
    top: unset;
    bottom: 0;
  }

  .detail_wrap .section .qa_wrap {
    padding: 30px 0 20px;
  }

  .detail_wrap .section .qa_box {
    padding: 0 20px;
  }

  .detail_wrap .section .qa_box .question {
    margin: 0 0 30px;
  }

  .detail_wrap .section .qa_box .question .text {
    width: auto;
    padding: 30px;
    margin: 10px 0 0 20px;
  }

  .detail_wrap .section .qa_box .question .text p {
    margin: 0 0 30px;
  }

  .detail_wrap .section .qa_box .question .img+.text {
    width: calc(100% - 206px);
  }

  .detail_wrap .section .qa_box .answer {
    margin: 0 0 50px;
  }

  .detail_wrap .section .qa_box .answer p {
    margin: 0 0 30px;
  }

  .detail_wrap .section .qa_box .answer .answer_img figure {
    width: 100%;
  }

  .detail_wrap .section.sec01 .inner .sec01_img {
    bottom: -150px;
  }

  .detail_wrap .section.sec03:after {
    background-image: url(../img/sec_bg_bottom_green.png);
  }

  .detail_wrap .section.sec03 .sec_title:before {
    top: unset;
    background-image: url(../img/sec_bg_top_green.png);
  }

  .detail_wrap .section.sec03 .inner .qa_wrap .qa_box:first-child .answer {
    margin: 0 0 160px;
  }

  .detail_wrap .section.sec03 .inner .sec03_img {
    right: 20px;
    bottom: -140px;
  }

  .footer {
    height: auto;
    margin-top: 16px;
  }

  .footer:before {
    background-image: url("../img/footer_bg_sp.svg");
  }

  .footer_inner {
    padding-top: 76px;
  }

  .footer_logo {
    margin: 0 auto;
  }

  .footer_copy {
    margin-top: 18px;
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .list_wrap ul li {
    float: none;
    width: 100%;
    margin: 0 0 45px 0;
  }

  .list_wrap ul li .thumb {
    margin: 0 0 30px;
  }

  .list_wrap ul li .title {
    min-height: unset;
  }

  .list_wrap ul li:nth-of-type(3n) {
    margin: 0 0 45px 0;
  }

  .list_wrap ul li:nth-of-type(2n) {
    margin: 0 0 45px 0;
  }

  .detail_wrap .section .qa_box .question .img+.text {
    width: auto;
    clear: both;
  }
}