/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

@font-face {
  font-family: "kobu";
  src: url("../wf/kobuw3.woff") format("woff");
  src: url("../wf/kobuw3.otf") format("truetype");
}
@font-face {
  font-family: "kobu";
  src: url("../wf/kobuw6.woff") format("woff");
  src: url("../wf/kobuw6.otf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "din";
  src: url("../wf/din_light.woff") format("woff");
  src: url("../wf/din_light.otf") format("truetype");
}
@font-face {
  font-family: "din";
  src: url("../wf/din_medium.woff") format("woff");
  src: url("../wf/din_medium.otf") format("truetype");
  font-weight: bold;
}
html, body {
  min-height: 100vh;
}

.modal--active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.modal--active #main {
  overflow-y: scroll;
}

/*----- main setting -----*/
#main {
  font-family: din, kobu, sans-serif;
  min-width: 1280px;
  background-color: #e6e5e3;
  color: #1a1a1a;
  line-height: 1.5;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #main {
    min-width: auto;
  }
}
#main * {
  box-sizing: border-box;
}
#main a:hover {
  text-decoration: none;
  color: inherit;
  opacity: 1;
}
#main li {
  list-style: none;
}
#main .box {
  margin: 0;
  padding: 0;
  border: 0;
}
#main .list {
  margin: 0;
}
#main [class*=icon-] {
  padding: inherit;
  background: none;
  height: auto;
}

#main {
  /*----- js-fade -----*/
  /*----- mv -----*/
  /*----- navi -----*/
  /*----- sec-01-read -----*/
  /*----- sec-01-navi -----*/
  /*----- c module -----*/
  /*----- float -----*/
  /*----- sec-01-01 -----*/
  /*----- sec-01-01-acc-01 -----*/
  /*----- sec-01-01-acc-02 -----*/
  /*----- sec-01-02 -----*/
  /*----- sec-01-02-acc -----*/
  /*----- sec-01-03 -----*/
  /*----- sec-01-03-acc -----*/
  /*----- sec-01-04 -----*/
  /*----- sec-01-04-acc -----*/
  /*----- sec-02-kv -----*/
  /*----- sec-02-read -----*/
  /*----- sec-02-01 -----*/
  /*----- sec-02-02 -----*/
  /*----- sec-03-kv -----*/
  /*----- sec-03-acc -----*/
  /*----- sec-03-detail -----*/
  /*----- sec-04 -----*/
  /*----- sec-05 -----*/
  /*----- sec-06 -----*/
  /*----- sec-07 -----*/
  /*----- device module -----*/
  /*----- sub -----*/
  /*----- modal -----*/
}
#main [js-fade="1"] {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.8s, opacity 0.8s;
}
#main [js-fade="2"] {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}
#main [js-fade][js-fade-toggle] {
  opacity: 1;
  transform: translateY(0);
}
#main #mv {
  height: auto;
  min-height: 530px;
  background-image: url("../img/pc/mv/main.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 46.36363636% 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #mv {
    height: 48vw;
    min-height: auto;
    background-image: url("../img/sp/mv/main.jpg");
    background-size: cover;
    padding: 8vw 0 0;
  }
}
#main #mv .title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1040px;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #main #mv .title {
    width: 360px;
    max-width: 96vw;
    height: auto;
    bottom: 10px;
  }
}
#main #mv.isCovered .title {
  bottom: auto;
  top: calc(100vh - 246px);
}
@media only screen and (max-width: 767px) {
  #main #mv.isCovered .title {
    top: calc(100vh - 134px);
  }
}
#main #mv .image {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #main #mv .image {
    width: 360px;
    height: auto;
    margin: 0 auto;
    max-width: 96vw;
  }
}
#main #navi {
  background-color: #2c6e75;
}
#main #navi .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px 110px;
  background-image: url("../img/pc/navi/arrow.png");
  background-position: center bottom 20px;
  background-repeat: no-repeat;
  background-size: 76px;
}
@media only screen and (max-width: 767px) {
  #main #navi .inner {
    padding: 20px 2% 80px;
    background-image: url("../img/sp/navi/arrow.png");
    background-position: center bottom 30px;
    background-size: 26px;
  }
}
#main #navi .read {
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  color: white;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  #main #navi .read {
    font-size: 17px;
    text-align: left;
  }
}
#main #navi .menu {
  margin: 30px 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #navi .menu {
    margin: 15px 0 0;
  }
}
#main #navi .link {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 20px 35px 15px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #main #navi .link {
    display: block;
    padding: 8px calc(127px + 2.222222%) 5px 2.222222%;
  }
}
#main #navi .link + .link {
  margin: 15px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #navi .link + .link {
    margin: 10px 0 0;
  }
}
#main #navi .title {
  width: 439px;
  margin: 0 20px 0 0;
  transition: opacity 0.4s;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #navi .title {
    width: auto;
    margin: 0;
    background-position: left center;
  }
}
#main #navi .link:hover .title {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #navi .link:hover .title {
    opacity: 1;
  }
}
#main #navi .title-01 {
  height: 40px;
  background-image: url("../img/pc/navi/text-01.png");
}
@media only screen and (max-width: 767px) {
  #main #navi .title-01 {
    height: 16px;
    background-image: url("../img/sp/navi/text-01.png");
  }
}
#main #navi .title-02 {
  height: 40px;
  background-image: url("../img/pc/navi/text-02.png");
}
@media only screen and (max-width: 767px) {
  #main #navi .title-02 {
    height: 16px;
    background-image: url("../img/sp/navi/text-02.png");
  }
}
#main #navi .title-03 {
  height: 40px;
  background-image: url("../img/pc/navi/text-03.png");
}
@media only screen and (max-width: 767px) {
  #main #navi .title-03 {
    height: 16px;
    background-image: url("../img/sp/navi/text-03.png");
  }
}
#main #navi .text {
  font-size: 16px;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #navi .text {
    margin: 5px 0 0;
    font-size: 14px;
  }
}
#main #navi .link:hover .text {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #navi .link:hover .text {
    opacity: 1;
  }
}
#main #navi .item {
  background-image: url("../img/pc/navi/item.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 255px;
  position: absolute;
  top: -77px;
  right: 10px;
  z-index: 2;
  width: 254.5px;
  height: 386.5px;
}
@media only screen and (max-width: 767px) {
  #main #navi .item {
    background-image: url("../img/sp/navi/item.png");
    background-position: cenDpeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    right: 2.222222%;
    width: 120px;
    height: 220px;
  }
}
#main #sec-01-read .kv {
  height: 462px;
  background-image: url("../img/pc/sec-01/read/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 0;
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-read .kv {
    height: 352px;
    background-image: url("../img/sp/sec-01/read/bg.jpg");
    padding: 25px 0 0;
  }
}
#main #sec-01-read .kv .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 624.5px;
  height: 84px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-read .kv .title {
    width: 265px;
    height: 35px;
    margin: 0 auto;
  }
}
#main #sec-01-read .kv .image {
  width: 624.5px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-read .kv .image {
    width: 265px;
  }
}
#main #sec-01-read .read {
  padding: 50px 0 40px;
  text-align: center;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-read .read {
    padding: 30px 0 20px;
  }
}
#main #sec-01-read .read .title {
  color: #2c6e75;
  font-size: 37px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-read .read .title {
    font-size: 23px;
    line-height: 31px;
  }
}
#main #sec-01-read .read .text {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-read .read .text {
    font-size: 16px;
    padding: 0 2.666667%;
    text-align: justify;
    font-weight: normal;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-01-read .read .text + .text {
    margin: 15px 0 0;
  }
}
#main #sec-01-navi .read {
  background-color: #2c6e75;
}
#main #sec-01-navi .inner {
  width: 1100px;
  height: 250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 0 0 120px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .inner {
    height: 110px;
    width: auto;
    padding: 0;
    justify-content: center;
  }
}
#main #sec-01-navi .title {
  font-size: 48px;
  font-weight: bold;
  color: white;
  margin: 0 35px 0 0;
  text-align: center;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .title {
    font-size: 20px;
    line-height: 27px;
    margin: 0 8px 0 0;
    text-align: left;
    text-indent: -10px;
    letter-spacing: 0.03em;
  }
}
@media only screen and (max-width: 374px) {
  #main #sec-01-navi .title {
    font-size: 18px;
  }
}
#main #sec-01-navi .image {
  background-image: url("../img/pc/sec-01/navi/image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 226px;
  height: 222px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .image {
    background-image: url("../img/sp/sec-01/navi/image.png");
    width: 96px;
    height: 94px;
  }
}
#main #sec-01-navi .menu {
  background-color: white;
}
#main #sec-01-navi .list {
  width: 972px;
  margin: 0 auto;
  padding: 0 0 0 2px;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .list {
    width: 85%;
    padding: 18px 0 18px 2px;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 374px) {
  #main #sec-01-navi .list {
    width: 95%;
  }
}
#main #sec-01-navi .list:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  height: 50px;
  width: 2px;
  background-color: #1a1a1a;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .list:before {
    top: 18px;
    height: 40px;
  }
}
#main #sec-01-navi .item {
  position: relative;
  padding: 0 2px 0 0;
  width: 25%;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .item {
    width: 50%;
  }
}
#main #sec-01-navi .item:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  height: 50px;
  width: 2px;
  background-color: #1a1a1a;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .item:before {
    top: 0;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .item:nth-child(n+3) {
    margin: 10px 0 0;
  }
  #main #sec-01-navi .item:nth-child(3):after {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    height: 40px;
    width: 2px;
    background-color: #1a1a1a;
  }
}
#main #sec-01-navi .link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 100%;
  background-image: url("../img/pc/sec-01/navi/arrow.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px;
  transition: opacity 0.4s;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 4px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .link {
    height: 40px;
    background-image: url("../img/sp/sec-01/navi/arrow.png");
    background-position: right 10px center;
    background-size: 9px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0em;
    padding: 2px 0 0 13px;
    justify-content: flex-start;
    font-weight: bold;
  }
}
@media only screen and (max-width: 374px) {
  #main #sec-01-navi .link {
    padding: 2px 0 0 8px;
  }
}
#main #sec-01-navi .link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .link:hover {
    opacity: 1;
  }
}
#main #sec-01-navi .link-center {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-navi .link-center {
    text-align: left;
    padding-top: 4px;
  }
}
#main .c-title-lv4 {
  margin: 0 auto;
  width: 440px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c6e75;
  color: white;
  font-size: 37px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  border-radius: 30px;
  padding: 8px 0 0;
}
@media only screen and (max-width: 767px) {
  #main .c-title-lv4 {
    width: 250px;
    height: 30px;
    padding: 4px 0 0;
    font-size: 18px;
  }
}
#main .c-title-lv4-wide {
  width: 740px;
}
@media only screen and (max-width: 767px) {
  #main .c-title-lv4-wide {
    width: 250px;
    height: 55px;
    line-height: 1.2;
    text-align: center;
  }
}
#main .c-title-lv5 {
  margin: 40px auto 0;
  width: 862px;
  color: #2c6e75;
  font-size: 29px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main .c-title-lv5-sp-01 {
    margin: 5.333333vw 0 0;
    width: auto;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  #main .c-title-lv5-sp-02 {
    margin: 30px 0 0;
    width: auto;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  #main .c-title-lv5-sp-03 {
    margin: 30px 0 0;
    width: auto;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
  }
  #main .c-title-lv5-sp-03:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(to right, #cc6f1e, #004cb2);
  }
}
#main .c-text {
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto;
  width: 862px;
}
@media only screen and (max-width: 767px) {
  #main .c-text {
    display: none;
  }
}
#main .c-box {
  margin: 40px auto 50px;
  width: 972px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #main .c-box {
    margin: 20px 0;
    padding: 0 2.666667%;
    width: auto;
    flex-wrap: wrap;
  }
}
#main .c-box-item {
  width: 480px;
  padding: 0 15px 15px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main .c-box-item {
    width: 100%;
    padding: 0 2.816901% 2.816901% 0;
  }
}
#main .c-box-item:first-child {
  margin: 0 6px 0 0;
}
@media only screen and (max-width: 767px) {
  #main .c-box-item:first-child {
    margin: 0;
  }
}
#main .c-box-item:last-child {
  margin: 0 0 0 6px;
}
@media only screen and (max-width: 767px) {
  #main .c-box-item:last-child {
    margin: 0;
  }
}
#main .c-box-item:first-child:last-child {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #main .c-box-item + .c-box-item {
    margin-top: -2.816901vw;
  }
}
#main .c-box-item:before {
  content: "";
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to right, #cc6f1e, #004cb2);
}
@media only screen and (max-width: 767px) {
  #main .c-box-item:before {
    width: 97.183099%;
    height: calc(100% - 2.816901vw);
  }
}
@media only screen and (max-width: 767px) {
  #main .c-box-item + .c-box-item:before {
    height: 100%;
  }
}
#main .c-box-link {
  position: relative;
  z-index: 2;
  background-color: white;
  display: block;
  cursor: pointer;
}
#main .c-box-pic {
  display: block;
  width: 465px;
  height: 436px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main .c-box-pic {
    width: 100%;
    height: 218px;
    padding-top: 63.188406%;
    background-size: cover;
    background-position: center top;
  }
}
#main .c-box-link:hover .c-box-pic {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main .c-box-link:hover .c-box-pic {
    opacity: 1;
  }
}
#main .c-box-pic-01 {
  background-image: url("../img/pc/sec-01/01/portrait-01.jpg");
}
@media only screen and (max-width: 767px) {
  #main .c-box-pic-01 {
    background-image: url("../img/sp/sec-01/01/portrait-01.jpg");
  }
}
#main .c-box-pic-02 {
  background-image: url("../img/pc/sec-01/01/portrait-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main .c-box-pic-02 {
    background-image: url("../img/sp/sec-01/01/portrait-02.jpg");
  }
}
#main .c-box-pic-03 {
  background-image: url("../img/pc/sec-01/02/portrait-01.jpg");
}
@media only screen and (max-width: 767px) {
  #main .c-box-pic-03 {
    background-image: url("../img/sp/sec-01/02/portrait-01.jpg");
  }
}
#main .c-box-pic-04 {
  background-image: url("../img/pc/sec-01/03/portrait-01.jpg");
}
@media only screen and (max-width: 767px) {
  #main .c-box-pic-04 {
    background-image: url("../img/sp/sec-01/03/portrait-01.jpg");
  }
}
#main .c-box-pic-05 {
  background-image: url("../img/pc/sec-01/03/portrait-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main .c-box-pic-05 {
    background-image: url("../img/sp/sec-01/03/portrait-02.jpg");
  }
}
#main .c-box-pic-06 {
  background-image: url("../img/pc/sec-01/04/portrait-01.jpg");
}
@media only screen and (max-width: 767px) {
  #main .c-box-pic-06 {
    background-image: url("../img/sp/sec-01/04/portrait-01.jpg");
  }
}
#main .c-box-pic-07 {
  background-image: url("../img/pc/sec-01/04/portrait-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main .c-box-pic-07 {
    background-image: url("../img/sp/sec-01/04/portrait-02.jpg");
  }
}
#main .c-box-inner {
  padding: 20px 0 15px 20px;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main .c-box-inner {
    padding: 20px 4vw;
  }
}
#main .c-box-inner:before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 15px;
  z-index: 1;
  width: 159px;
  height: 34px;
  background-image: url("../img/pc/sec-01/common/more.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 159px 34px;
}
@media only screen and (max-width: 767px) {
  #main .c-box-inner:before {
    right: 2.133333vw;
    width: 128px;
    height: 28px;
    background-image: url("../img/sp/sec-01/common/more.png");
    background-size: contain;
  }
}
#main .c-box-inner:after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 15px;
  z-index: 2;
  width: 159px;
  height: 34px;
  background-image: url("../img/pc/sec-01/common/more--hover.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 159px 34px;
  transition: opacity 0.4s;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #main .c-box-inner:after {
    display: none;
  }
}
#main .c-box-link:hover .c-box-inner:after {
  opacity: 1;
}
#main .c-box-read {
  font-size: 23px;
}
@media only screen and (max-width: 767px) {
  #main .c-box-read {
    font-size: 17px;
  }
}
#main .c-box-read-3r {
  height: 4.5em;
}
@media only screen and (max-width: 767px) {
  #main .c-box-read-3r {
    height: auto;
  }
}
#main .c-box-job {
  margin: 20px 0 0;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  #main .c-box-job {
    margin: 10px 0 0;
  }
}
#main .c-box-name {
  font-size: 15px;
  letter-spacing: 0.05em;
}
#main .c-acc {
  width: 902px;
  margin: 10px auto 0;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #main .c-acc {
    width: auto;
    margin: 0;
    padding: 0 2.666667vw;
  }
}
#main .c-acc-header {
  background: linear-gradient(to right, #cc6f1e, #004cb2);
  padding: 2px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #main .c-acc-header {
    display: none;
  }
}
#main .c-acc-disabled {
  height: 54px;
  background-color: white;
  display: flex;
  align-items: center;
  padding: 4px 0 0 20px;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: bold;
  position: relative;
  transition: background 0.4s, color 0.4s;
}
#main .c-acc-header--active .c-acc-disabled {
  display: none;
}
#main .c-acc-header:not(.c-acc-header--active):hover .c-acc-disabled {
  color: white;
  background: transparent;
}
#main .c-acc-disabled:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../img/pc/common/plus--hover.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 40px;
  z-index: 1;
}
#main .c-acc-disabled:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../img/pc/common/plus.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 40px;
  z-index: 2;
  transition: opacity 0.4s;
}
#main .c-acc-header:hover .c-acc-disabled:after {
  opacity: 0;
}
#main .c-acc-enabled {
  display: none;
  height: 54px;
  background-color: white;
  align-items: center;
  justify-content: center;
  padding: 6px 0 0 20px;
  font-size: 25px;
  letter-spacing: 0.08em;
  font-weight: bold;
  position: relative;
  transition: background 0.4s, color 0.4s;
}
#main .c-acc-header--active .c-acc-enabled {
  display: flex;
}
#main .c-acc-header:hover .c-acc-enabled {
  color: white;
  background: transparent;
}
#main .c-acc-enabled:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../img/pc/common/minus--hover.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 40px;
  z-index: 1;
}
#main .c-acc-enabled:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../img/pc/common/minus.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 40px;
  z-index: 2;
  transition: opacity 0.4s;
}
#main .c-acc-header:hover .c-acc-enabled:after {
  opacity: 0;
}
#main .c-acc-wrap {
  display: none;
}
@media only screen and (max-width: 767px) {
  #main .c-acc-wrap {
    display: block;
  }
}
#main .c-acc-wrap--disabled {
  display: block;
  max-width: 902px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #main .c-acc-wrap--disabled {
    max-width: none;
    padding: 0 2.666667vw;
  }
}
#main .c-acc-wrap-wide {
  margin: 0 -20px;
}
@media only screen and (max-width: 767px) {
  #main .c-acc-wrap-wide {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  #main .c-acc-wrap-sp {
    width: 100vw;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0;
  }
  #main .c-acc-wrap-sp::-webkit-scrollbar {
    display: none;
  }
}
#main .c-acc-wrap-wide .c-acc-inner {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #main .c-acc-wrap-wide .c-acc-inner {
    padding: 0;
  }
}
#main .c-acc-inner {
  margin: 25px auto 0;
}
@media only screen and (max-width: 767px) {
  #main .c-acc-inner {
    margin: 0;
  }
}
#main .c-link-box {
  text-align: right;
}
#main .c-text + .c-link-box {
  margin: 20px auto 0;
  width: 862px;
}
@media only screen and (max-width: 767px) {
  #main .c-text + .c-link-box {
    width: auto;
    padding: 0 2.666667vw;
    margin: 15px 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  #main .c-text-sp {
    width: auto;
    font-weight: normal;
    padding: 0 2.666667vw;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    margin: 15px 0 0;
  }
}
#main .c-block {
  display: block;
}
#main .c-link {
  padding: 3px 10px 0 0;
  background-image: url("../img/pc/sec-01/common/arrow.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 6px;
  font-size: 16px;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main .c-link {
    background-image: url("../img/sp/sec-01/common/arrow.png");
    background-position: right top 4px;
    background-size: 5px;
    font-size: 14px;
  }
}
#main .c-link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main .c-link:hover {
    opacity: 1;
  }
}
#main .c-arrow {
  display: block;
  height: 163px;
  background-image: url("../img/pc/common/arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75px;
}
@media only screen and (max-width: 767px) {
  #main .c-arrow {
    height: 80px;
    background-image: url("../img/sp/common/arrow.png");
    background-size: 39px;
  }
}
#main #float {
  position: absolute;
  top: 70px;
  left: 30px;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #main #float {
    display: none;
  }
}
#main #float .list {
  display: flex;
  flex-direction: column;
}
#main #float .item {
  display: inline-block;
}
#main #float .item + .item {
  margin: 10px 0 0;
}
#main #float .link {
  position: relative;
  display: block;
  width: 20px;
}
#main #float [js-float-item="1"] {
  height: 83.5px;
}
#main #float [js-float-item="2"] {
  height: 179.5px;
}
#main #float [js-float-item="3"] {
  height: 120px;
}
#main #float [js-float-item="4"] {
  height: 143.5px;
}
#main #float .link:after {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  opacity: 0.5;
  transition: opacity 0.4s;
}
#main #float [js-float-item="1"]:after {
  background-image: url("../img/pc/float/text-01.png");
  height: 58.5px;
}
#main #float [js-float-item="2"]:after {
  background-image: url("../img/pc/float/text-02.png");
  height: 154.5px;
}
#main #float [js-float-item="3"]:after {
  background-image: url("../img/pc/float/text-03.png");
  height: 95px;
}
#main #float [js-float-item="4"]:after {
  background-image: url("../img/pc/float/text-04.png");
  height: 118.5px;
}
#main #float[js-float="1"] [js-float-item="1"]:after, #main #float[js-float="2"] [js-float-item="2"]:after, #main #float[js-float="3"] [js-float-item="3"]:after, #main #float[js-float="4"] [js-float-item="4"]:after {
  opacity: 1;
}
#main #float .link:hover:after {
  opacity: 1;
}
#main #float .link:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #ababab;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: background 0.4s;
}
#main #float[js-float="1"] [js-float-item="1"]:before, #main #float[js-float="2"] [js-float-item="2"]:before, #main #float[js-float="3"] [js-float-item="3"]:before, #main #float[js-float="4"] [js-float-item="4"]:before {
  background-color: #1a1a1a;
}
#main #float .link:hover:before {
  background-color: #1a1a1a;
}
#main #float .rotate {
  display: inline-block;
  transform: rotate(90deg) translateY(-4px);
}
#main #sec-01-01 {
  padding: 70px 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01 {
    padding: 20px 0 0;
  }
}
#main #sec-01-01-acc-01 {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 {
    margin: 5px 0 0;
    padding: 0 9.066667vw;
    position: relative;
    width: 188.8vw;
    transition: left 0.4s;
    cursor: pointer;
  }
  #main #sec-01-01-acc-01[js-slide-01="1"] {
    left: 0;
  }
  #main #sec-01-01-acc-01[js-slide-01="2"] {
    left: -88.8vw;
  }
  #main #sec-01-01-acc-01[js-slide-02="1"] {
    left: 0;
  }
  #main #sec-01-01-acc-01[js-slide-02="2"] {
    left: -88.8vw;
  }
}
#main #sec-01-01-acc-01 .left {
  width: 383px;
  border: 1px #333333 solid;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .left {
    width: 82.666667vw;
    order: 2;
    padding: 0 0 15px;
  }
}
#main #sec-01-01-acc-01 .left:after {
  content: "";
  width: 63px;
  height: 132px;
  position: absolute;
  top: 370px;
  right: -80px;
  background-image: url("../img/pc/sec-01/01/arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .left:after {
    display: none;
  }
}
#main #sec-01-01-acc-01 .left-title {
  background-color: #333333;
  color: white;
  font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: bold;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .left-title {
    height: 31px;
    font-size: 16px;
  }
}
#main #sec-01-01-acc-01 .left-image {
  width: 355px;
  height: 657px;
  display: block;
  margin: 20px 0 16px 4px;
  background-image: url("../img/pc/sec-01/01/image-01.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .left-image {
    width: 79.022222vw;
    height: 141.777778vw;
    margin: 4vw auto 0;
    background-image: url("../img/sp/sec-01/01/image-01.png");
  }
}
#main #sec-01-01-acc-01 .text {
  padding: 15px 20px 0;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .text {
    padding: 10px 4vw 0;
    font-size: 12px;
    line-height: 20px;
    font-weight: normal;
    text-align: justify;
  }
}
#main #sec-01-01-acc-01 .right {
  width: 383px;
  border: 3px #2c6e75 solid;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .right {
    width: 82.666667vw;
    order: 1;
    padding: 0 0 15px;
  }
}
#main #sec-01-01-acc-01 .right-title {
  background-color: #2c6e75;
  color: white;
  font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: bold;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .right-title {
    height: 29px;
    font-size: 16px;
  }
}
#main #sec-01-01-acc-01 .right-image {
  width: 440px;
  height: 657px;
  display: block;
  margin: 20px 0 14px -40px;
  background-image: url("../img/pc/sec-01/01/image-02.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .right-image {
    width: 91.733333vw;
    height: 145.333333vw;
    margin: 0 0 0 -5.333333vw;
    background-image: url("../img/sp/sec-01/01/image-02.png");
  }
}
#main #sec-01-01-acc-01 .button {
  display: none;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-01 .button {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 13.333333vw));
    margin: 0 0 0 -2.933333vw;
    z-index: 1;
    width: 14.222222vw;
    height: 14.222222vw;
    background-image: url("../img/sp/sec-01/01/arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
  }
}
#main #sec-01-01-acc-02 {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 {
    margin: 5px 0 0;
    padding: 0 9.066667vw;
    position: relative;
    width: 188.8vw;
    transition: left 0.4s;
    cursor: pointer;
  }
  #main #sec-01-01-acc-02[js-slide-01="1"] {
    left: 0;
  }
  #main #sec-01-01-acc-02[js-slide-01="2"] {
    left: -88.8vw;
  }
  #main #sec-01-01-acc-02[js-slide-02="1"] {
    left: 0;
  }
  #main #sec-01-01-acc-02[js-slide-02="2"] {
    left: -88.8vw;
  }
}
#main #sec-01-01-acc-02 .left {
  width: 383px;
  border: 1px #333333 solid;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .left {
    width: 82.666667vw;
    order: 2;
    padding: 0 0 15px;
  }
}
#main #sec-01-01-acc-02 .left:after {
  content: "";
  width: 63px;
  height: 132px;
  position: absolute;
  top: 207px;
  right: -80px;
  background-image: url("../img/pc/sec-01/01/arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .left:after {
    display: none;
  }
}
#main #sec-01-01-acc-02 .left-title {
  background-color: #333333;
  color: white;
  font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: bold;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .left-title {
    height: 31px;
    font-size: 16px;
  }
}
#main #sec-01-01-acc-02 .left-image {
  width: 341px;
  height: 436px;
  display: block;
  margin: 0 0 14px 6px;
  background-image: url("../img/pc/sec-01/01/image-03.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .left-image {
    width: 76.266667vw;
    height: 93.866667vw;
    margin: 5.333333vw auto 0;
    background-image: url("../img/sp/sec-01/01/image-03.png");
  }
}
#main #sec-01-01-acc-02 .text {
  padding: 15px 20px 0;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .text {
    padding: 10px 4vw 0;
    font-size: 12px;
    line-height: 20px;
    font-weight: normal;
    text-align: justify;
  }
}
#main #sec-01-01-acc-02 .right {
  width: 383px;
  border: 3px #2c6e75 solid;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .right {
    width: 82.666667vw;
    order: 1;
    padding: 0 0 15px;
  }
  #main #sec-01-01-acc-02 .right .text {
    min-height: 70px;
  }
}
#main #sec-01-01-acc-02 .right-title {
  background-color: #2c6e75;
  color: white;
  font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: bold;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .right-title {
    height: 29px;
    font-size: 16px;
  }
}
#main #sec-01-01-acc-02 .right-image {
  width: 366px;
  height: 434px;
  display: block;
  margin: -20px 0 13px 6px;
  background-image: url("../img/pc/sec-01/01/image-04.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .right-image {
    width: 78.666667vw;
    height: 93.333333vw;
    margin: 1.333333vw auto 0;
    background-image: url("../img/sp/sec-01/01/image-04.png");
  }
}
#main #sec-01-01-acc-02 .button {
  display: none;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-01-acc-02 .button {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 5.333333vw));
    margin: 0 0 0 -2.933333vw;
    z-index: 1;
    width: 14.222222vw;
    height: 14.222222vw;
    background-image: url("../img/sp/sec-01/01/arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
  }
}
#main #sec-01-02 {
  margin: 50px 0 0;
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02 {
    margin: 40px 0 0;
    padding-top: 20px;
  }
}
#main #sec-01-02-acc .text {
  font-size: 19px;
  line-height: 37px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .text {
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    font-weight: normal;
    margin: 15px 0 0;
    padding: 0 0.533333vw;
    letter-spacing: 0.05em;
  }
}
#main #sec-01-02-acc .note {
  font-size: 14px;
  padding: 0 0 0 20px;
  position: relative;
  margin: 0 0 20px;
  text-align: justify;
}
#main #sec-01-02-acc .note-mark {
  position: absolute;
  top: 0;
  left: 0;
}
#main #sec-01-02-acc .box {
  margin: 30px 0 20px;
  border: 3px #2c6e75 solid;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .box {
    margin: 15px 0 10px;
    padding: 15px 3.2vw 10px;
  }
}
#main #sec-01-02-acc .box-title {
  background-color: #2c6e75;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: white;
  padding: 6px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .box-title {
    background-color: transparent;
    height: auto;
    font-size: 20px;
    color: #2c6e75;
    padding: 0;
  }
}
#main #sec-01-02-acc .box-inner {
  padding: 30px 28.5px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .box-inner {
    padding: 0;
  }
}
#main #sec-01-02-acc .list {
  background-color: #2c6e75;
  padding: 30px 30px 30px 290px;
  background-image: url("../img/pc/sec-01/02/item.png");
  background-position: left 33px center;
  background-repeat: no-repeat;
  background-size: 222px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .list {
    display: none;
  }
}
#main #sec-01-02-acc .list-item {
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 4px 0 0 30px;
  position: relative;
}
#main #sec-01-02-acc .list-item:nth-child(odd) {
  width: 216px;
}
#main #sec-01-02-acc .list-item:nth-child(even) {
  width: 260pxpx;
}
#main #sec-01-02-acc .list-item:nth-child(n+3) {
  margin: 25px 0 0;
}
#main #sec-01-02-acc .list-num {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px white solid;
  border-radius: 100%;
  font-size: 15px;
  text-align: center;
  padding: 1px 0 0;
}
#main #sec-01-02-acc .panel {
  margin: 30px -7px 0;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel {
    margin: 10px -1.033333vw 0;
  }
}
#main #sec-01-02-acc .panel-item {
  width: calc(33.333333% - 14px);
  margin: 0 7px;
  cursor: pointer;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-item {
    width: 50%;
    padding: 0 1.033333vw;
    margin: 0;
  }
}
#main #sec-01-02-acc .panel-item:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-item:hover {
    opacity: 1;
  }
}
#main #sec-01-02-acc .panel-item:nth-child(n+4) {
  margin: 5px 7px 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-item:nth-child(n+4) {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-item:nth-child(n+3) {
    margin: 10px 0 0;
  }
}
#main #sec-01-02-acc .panel-thumb {
  display: block;
  width: 100%;
  height: 143px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-thumb {
    height: auto;
    padding-top: 56.224066%;
  }
}
#main #sec-01-02-acc .panel-thumb-01 {
  background-image: url("../img/pc/sec-01/02/thumb-01.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-thumb-01 {
    background-image: url("../img/sp/sec-01/02/thumb-01.jpg");
  }
}
#main #sec-01-02-acc .panel-thumb-02 {
  background-image: url("../img/pc/sec-01/02/thumb-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-thumb-02 {
    background-image: url("../img/sp/sec-01/02/thumb-02.jpg");
  }
}
#main #sec-01-02-acc .panel-thumb-03 {
  background-image: url("../img/pc/sec-01/02/thumb-03.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-thumb-03 {
    background-image: url("../img/sp/sec-01/02/thumb-03.jpg");
  }
}
#main #sec-01-02-acc .panel-thumb-04 {
  background-image: url("../img/pc/sec-01/02/thumb-04.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-thumb-04 {
    background-image: url("../img/sp/sec-01/02/thumb-04.jpg");
  }
}
#main #sec-01-02-acc .panel-thumb-05 {
  background-image: url("../img/pc/sec-01/02/thumb-05.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-thumb-05 {
    background-image: url("../img/sp/sec-01/02/thumb-05.jpg");
  }
}
#main #sec-01-02-acc .panel-thumb-06 {
  background-image: url("../img/pc/sec-01/02/thumb-06.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-thumb-06 {
    background-image: url("../img/sp/sec-01/02/thumb-06.jpg");
  }
}
#main #sec-01-02-acc .panel-text {
  margin: 3px 0 0 !important;
  padding: 0 0 0 20px;
  position: relative;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-text {
    padding: 0;
    margin: 5px 0 0 !important;
  }
}
#main #sec-01-02-acc .panel-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px #1a1a1a solid;
  border-radius: 100%;
  font-size: 10px;
  text-align: center;
  padding: 1px 0 0;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-02-acc .panel-num {
    display: none;
  }
}
#main #sec-01-03 {
  margin: 50px 0 0;
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03 {
    margin: 40px 0 0;
    padding-top: 20px;
  }
}
#main #sec-01-03-acc .text {
  font-size: 19px;
  line-height: 37px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03-acc .text {
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    font-weight: normal;
    margin: 15px 0 0;
    padding: 0 0.533333vw;
    letter-spacing: 0.05em;
  }
}
#main #sec-01-03-acc .list {
  display: flex;
  justify-content: space-between;
  margin: 25px 0 55px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03-acc .list {
    display: block;
    margin: 20px 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03-acc .item + .item {
    margin: 15px 0 0;
    padding: 0 0.533333vw;
  }
}
#main #sec-01-03-acc .image {
  display: block;
  width: 261px;
  height: 151px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03-acc .image {
    width: 100%;
    height: auto;
    padding-top: 35.388994%;
  }
}
#main #sec-01-03-acc .image-01 {
  background-image: url("../img/pc/sec-01/03/image-01.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03-acc .image-01 {
    background-image: url("../img/sp/sec-01/03/image-01.jpg");
  }
}
#main #sec-01-03-acc .image-02 {
  background-image: url("../img/pc/sec-01/03/image-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03-acc .image-02 {
    background-image: url("../img/sp/sec-01/03/image-02.jpg");
  }
}
#main #sec-01-03-acc .image-03 {
  background-image: url("../img/pc/sec-01/03/image-03.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03-acc .image-03 {
    background-image: url("../img/sp/sec-01/03/image-03.jpg");
  }
}
#main #sec-01-03-acc .caption {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-03-acc .caption {
    font-size: 12px;
    margin: 5px 0 0;
    font-weight: normal;
  }
}
#main #sec-01-04 {
  margin: 50px 0 0;
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04 {
    margin: 40px 0 0;
    padding-top: 20px;
  }
}
#main #sec-01-04-acc {
  padding: 15px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc {
    padding: 0;
  }
}
#main #sec-01-04-acc .box {
  margin: 0 auto;
  width: 652px;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc .box {
    width: auto;
    padding: 0 0.533333vw;
  }
}
#main #sec-01-04-acc .icons {
  display: block;
  height: 128px;
  background-image: url("../img/pc/sec-01/04/image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc .icons {
    width: 85.422222vw;
    height: 25.066667vw;
    margin: 0 auto;
    background-image: url("../img/sp/sec-01/04/image.png");
  }
}
#main #sec-01-04-acc .text {
  margin: 35px -15px 0 !important;
  font-size: 19px;
  line-height: 37px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc .text {
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    font-weight: normal;
    margin: 15px 0 0 !important;
    letter-spacing: 0.05em;
  }
}
#main #sec-01-04-acc .graph {
  margin: 25px 0 20px;
  height: 306px;
  display: block;
  background-image: url("../img/pc/sec-01/04/graph.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc .graph {
    margin: 30px auto 5px;
    width: 93.955556vw;
    height: 57.066667vw;
    background-image: url("../img/sp/sec-01/04/graph.png");
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc .box-sp {
    max-width: 300px;
    margin: 0 auto;
  }
}
#main #sec-01-04-acc .strong {
  margin: 80px 0 40px !important;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  position: relative;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc .strong {
    margin: 40px 0 10px;
    font-size: 20px;
    letter-spacing: 0;
  }
}
#main #sec-01-04-acc .strong:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 2px;
  background: linear-gradient(to right, #cc6f1e, #004cb2);
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc .strong:before {
    width: 300px;
  }
}
#main #sec-01-04-acc .first {
  margin: 55px 0 40px !important;
}
@media only screen and (max-width: 767px) {
  #main #sec-01-04-acc .first {
    margin: 40px 0 10px;
  }
}
#main #sec-02-kv {
  height: 36.09vw;
  min-height: 462px;
  padding: 11% 0 0;
  background-image: url("../img/pc/sec-02/main.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-kv {
    height: 93.78vw;
    min-height: auto;
    padding: 6.67vw 0 0;
    background-image: url("../img/sp/sec-02/main.jpg");
    background-size: cover;
  }
}
#main #sec-02-kv .title {
  text-align: center;
}
#main #sec-02-kv .image {
  width: 624.5px;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-kv .image {
    margin: 0 auto;
    width: 265px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-02-read {
    padding: 0 3.2vw;
  }
}
#main #sec-02-read .title {
  margin: 55px 0 0;
  font-size: 37px;
  font-weight: bold;
  color: #2c6e75;
  text-align: center;
  letter-spacing: 0.12em;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-read .title {
    margin: 30px 0 0;
    font-size: 23px;
    line-height: 31px;
    letter-spacing: 0.08em;
  }
}
#main #sec-02-read .text {
  font-size: 20px;
  line-height: 1.75;
  text-align: center;
  margin: 20px 0 0;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-read .text {
    font-size: 16px;
    margin: 20px 0 0;
    letter-spacing: 0.05em;
    text-align: justify;
    font-weight: normal;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-02-read .text + .text {
    margin: 15px 0 0;
  }
}
#main #sec-02-01 {
  margin: 40px auto 0;
  width: 747px;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-01 {
    margin: 30px 0 0;
    width: auto;
    padding: 0 3.2vw;
  }
}
#main #sec-02-01 .title {
  font-size: 37px;
  font-weight: bold;
  padding: 30px 0 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-01 .title {
    padding: 0 2.666667vw 5px;
    font-size: 17px;
    line-height: 24px;
    color: #2c6e75;
  }
}
#main #sec-02-01 .title:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 122px;
  height: 122px;
  border-radius: 100%;
  background-color: white;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-01 .title:before {
    top: auto;
    bottom: -15px;
    left: -0.533333vw;
    width: 62px;
    height: 62px;
  }
}
#main #sec-02-01 .inner {
  position: relative;
  z-index: 2;
}
#main #sec-02-01 .image {
  display: block;
  width: 747px;
  height: 592px;
  background-image: url("../img/pc/sec-02/image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-01 .image {
    margin: 0 -3.2vw;
    width: 100vw;
    height: auto;
    padding-top: 113.765542vw;
    background-image: url("../img/sp/sec-02/image.jpg");
  }
}
#main #sec-02-02 {
  margin: 100px auto 0;
  width: 747px;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 {
    margin: 0 auto;
    width: auto;
    padding: 30px 5.866667vw 0;
  }
}
#main #sec-02-02 .title {
  font-size: 35px;
  line-height: 48px;
  font-weight: bold;
  padding: 30px 0 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .title {
    padding: 0 0 5px;
    font-size: 17px;
    line-height: 24px;
    color: #2c6e75;
  }
}
#main #sec-02-02 .title:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 122px;
  height: 122px;
  border-radius: 100%;
  background-color: white;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .title:before {
    top: auto;
    bottom: -15px;
    left: -3.2vw;
    width: 62px;
    height: 62px;
  }
}
#main #sec-02-02 .inner {
  position: relative;
  z-index: 2;
}
#main #sec-02-02 .list {
  margin: 20px 0 0;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .list {
    margin: 3px 0 0;
    display: block;
  }
}
#main #sec-02-02 .list-item {
  background-color: #2c6e75;
  width: 242px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 0;
  color: white;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .list-item {
    width: 100%;
    padding: 3px 0 0;
    font-size: 16px;
    height: 30px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .list-item + .list-item {
    margin: 10px auto 0;
  }
}
#main #sec-02-02 .text {
  font-size: 18px;
  line-height: 2;
  margin: 20px 0 0;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .text {
    font-size: 14px;
    margin: 10px 0 0;
    text-align: justify;
  }
}
#main #sec-02-02 .icon-list {
  margin: 15px 0 0;
  padding: 0;
  display: flex;
  border: 1px #2c6e75 solid;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-list {
    margin: 5px auto 0;
    display: block;
  }
}
#main #sec-02-02 .icon-item {
  display: block;
  height: 188px;
  width: 33.333333%;
  background-color: white;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-item {
    height: 90px;
    width: 100%;
  }
}
#main #sec-02-02 .link {
  padding: 145px 0 0;
  background-position: center top 20px;
  background-repeat: no-repeat;
  background-size: 150px;
  display: block;
  height: 100%;
  width: 100%;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .link {
    background-position: left 8vw center;
    background-size: auto 58px;
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 0 0 0 48%;
  }
}
#main #sec-02-02 .link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .link:hover {
    opacity: 1;
  }
}
#main #sec-02-02 .icon-01 {
  background-image: url("../img/pc/sec-02/icon-01.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-01 {
    background-image: url("../img/sp/sec-02/icon-01.jpg");
  }
}
#main #sec-02-02 .icon-02 {
  background-image: url("../img/pc/sec-02/icon-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-02 {
    background-image: url("../img/sp/sec-02/icon-02.jpg");
  }
}
#main #sec-02-02 .icon-03 {
  background-image: url("../img/pc/sec-02/icon-03.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-03 {
    background-image: url("../img/sp/sec-02/icon-03.jpg");
  }
}
#main #sec-02-02 .icon-04 {
  background-image: url("../img/pc/sec-02/icon-04.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-04 {
    background-image: url("../img/sp/sec-02/icon-04.jpg");
  }
}
#main #sec-02-02 .icon-05 {
  background-image: url("../img/pc/sec-02/icon-05.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-05 {
    background-image: url("../img/sp/sec-02/icon-05.jpg");
  }
}
#main #sec-02-02 .icon-06 {
  background-image: url("../img/pc/sec-02/icon-06.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-06 {
    background-image: url("../img/sp/sec-02/icon-06.jpg");
  }
}
#main #sec-02-02 .icon-07 {
  background-image: url("../img/pc/sec-02/icon-07.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-07 {
    background-image: url("../img/sp/sec-02/icon-07.jpg");
  }
}
#main #sec-02-02 .icon-08 {
  background-image: url("../img/pc/sec-02/icon-08.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-08 {
    background-image: url("../img/sp/sec-02/icon-08.jpg");
  }
}
#main #sec-02-02 .icon-item + .icon-item {
  border-left: 1px #2c6e75 solid;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .icon-item + .icon-item {
    border-left: 0;
    border-top: 1px #2c6e75 solid;
  }
}
#main #sec-02-02 .acc {
  width: 747px;
  margin: 30px auto 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc {
    width: auto;
    margin: 15px 0 0;
  }
}
#main #sec-02-02 .acc-header {
  background: linear-gradient(to right, #cc6f1e, #004cb2);
  padding: 2px;
  cursor: pointer;
}
#main #sec-02-02 .acc-text {
  height: 54px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 0 20px;
  font-size: 17px;
  letter-spacing: 0.08em;
  font-weight: bold;
  position: relative;
  transition: background 0.4s, color 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-text {
    height: 56px;
    padding: 4px 16vw 0 2.1333333vw;
    font-size: 14px;
    letter-spacing: 0;
  }
}
#main #sec-02-02 .acc-header:hover .acc-text {
  color: white;
  background: transparent;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-header:hover .acc-text {
    color: #1a1a1a;
    background: white;
  }
}
#main #sec-02-02 .acc-text:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../img/pc/common/plus--hover.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 40px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-text:before {
    display: none;
  }
}
#main #sec-02-02 .acc-text:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../img/pc/common/plus.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 40px;
  z-index: 2;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-text:after {
    right: 4vw;
    background-image: url("../img/sp/common/plus.png");
    width: 30px;
    height: 30px;
  }
}
#main #sec-02-02 .acc-header:hover .acc-text:after {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-header:hover .acc-text:after {
    opacity: 1;
  }
}
#main #sec-02-02 .c-acc-header--active .acc-text:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../img/pc/common/minus--hover.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 40px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .c-acc-header--active .acc-text:before {
    display: none;
  }
}
#main #sec-02-02 .c-acc-header--active .acc-text:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../img/pc/common/minus.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 40px;
  z-index: 2;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .c-acc-header--active .acc-text:after {
    right: 4vw;
    background-image: url("../img/sp/common/minus.png");
    width: 30px;
    height: 30px;
  }
}
#main #sec-02-02 .acc-wrap {
  display: block;
  width: 747px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-wrap {
    width: auto;
  }
}
#main #sec-02-02 .acc-list {
  margin: 30px 0 0;
  display: flex;
  border: 1px #2c6e75 solid;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-list {
    margin: 15px 0 0;
    flex-wrap: wrap;
  }
}
#main #sec-02-02 .acc-item {
  height: 178px;
  width: 20%;
  background-color: white;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-item {
    width: 50%;
    height: 111px;
  }
}
#main #sec-02-02 .acc-item + .acc-item {
  border-left: 1px #2c6e75 solid;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-item + .acc-item {
    border-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-item:nth-child(n+3) {
    border-top: 1px #2c6e75 solid;
  }
  #main #sec-02-02 .acc-item:nth-child(n+3) {
    border-top: 1px #2c6e75 solid;
  }
  #main #sec-02-02 .acc-item:nth-child(2),
#main #sec-02-02 .acc-item:nth-child(4) {
    border-left: 1px #2c6e75 solid;
  }
  #main #sec-02-02 .acc-item:nth-child(5) {
    width: 100%;
  }
}
#main #sec-02-02 .acc-link {
  padding: 135px 0 0;
  background-position: center top 35px;
  background-repeat: no-repeat;
  background-size: 100px;
  display: block;
  height: 100%;
  width: 100%;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-link {
    padding: 86px 0 0;
    background-position: center top 9px;
    background-repeat: no-repeat;
    background-size: auto 70px;
    font-size: 14px;
    font-weight: bold;
  }
}
#main #sec-02-02 .acc-link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-02-02 .acc-link:hover {
    opacity: 1;
  }
}
#main #sec-03-kv {
  height: 547px;
  background-color: #0f0f0f;
  background-image: url("../img/pc/sec-03/main.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 50px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-kv {
    background-image: url("../img/sp/sec-03/main.jpg");
    height: 352px;
    padding: 25px 0 0;
  }
}
#main #sec-03-kv .title {
  text-align: center;
}
#main #sec-03-kv .image {
  width: 624.5px;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-kv .image {
    margin: 0 auto;
    width: 265px;
  }
}
#main #sec-03-acc .heading {
  padding: 60px 0 55px;
  font-size: 37px;
  font-weight: bold;
  color: #2c6e75;
  text-align: center;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .heading {
    font-size: 23px;
    line-height: 31px;
    padding: 25px 3.2vw 15px;
  }
}
#main #sec-03-acc .acc {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  position: relative;
  height: 420px;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .acc {
    max-width: none;
    height: auto;
  }
}
#main #sec-03-acc .wrap {
  position: absolute;
  top: 0;
  left: -200px;
  margin-right: -2000px;
  display: flex;
  transition: left 0.4s;
}
@media only screen and (max-width: 1499px) {
  #main #sec-03-acc .wrap {
    left: calc((1100px - 100vw) / 2);
  }
}
@media only screen and (max-width: 1279px) {
  #main #sec-03-acc .wrap {
    left: -90px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .wrap {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    margin-right: 0;
  }
}
#main #sec-03-acc [js-acc-02-pos="1"] .wrap {
  left: 0;
}
@media only screen and (max-width: 1499px) {
  #main #sec-03-acc [js-acc-02-pos="1"] .wrap {
    left: calc((300px - 20vw) * 0.5);
  }
}
@media only screen and (max-width: 1279px) {
  #main #sec-03-acc [js-acc-02-pos="1"] .wrap {
    left: 22px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc [js-acc-02-pos="1"] .wrap {
    left: auto;
  }
}
#main #sec-03-acc [js-acc-02-pos="2"] .wrap {
  left: -300px;
  transform: none;
}
@media only screen and (max-width: 1499px) {
  #main #sec-03-acc [js-acc-02-pos="2"] .wrap {
    left: calc(-300px + (300px - 20vw) * 1.5);
  }
}
@media only screen and (max-width: 1279px) {
  #main #sec-03-acc [js-acc-02-pos="2"] .wrap {
    left: -234px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc [js-acc-02-pos="2"] .wrap {
    left: auto;
  }
}
#main #sec-03-acc [js-acc-02-pos="3"] .wrap {
  left: -600px;
  transform: none;
}
@media only screen and (max-width: 1499px) {
  #main #sec-03-acc [js-acc-02-pos="3"] .wrap {
    left: calc(-600px + (300px - 20vw) * 2.5);
  }
}
@media only screen and (max-width: 1279px) {
  #main #sec-03-acc [js-acc-02-pos="3"] .wrap {
    left: -490px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc [js-acc-02-pos="3"] .wrap {
    left: auto;
  }
}
#main #sec-03-acc [js-acc-02-pos="4"] .wrap {
  left: -900px;
  transform: none;
}
@media only screen and (max-width: 1499px) {
  #main #sec-03-acc [js-acc-02-pos="4"] .wrap {
    left: calc(-900px + (300px - 20vw) * 3.5);
  }
}
@media only screen and (max-width: 1279px) {
  #main #sec-03-acc [js-acc-02-pos="4"] .wrap {
    left: -746px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc [js-acc-02-pos="4"] .wrap {
    left: auto;
  }
}
#main #sec-03-acc [js-acc-02-pos="5"] .wrap {
  left: -1200px;
  transform: none;
}
@media only screen and (max-width: 1499px) {
  #main #sec-03-acc [js-acc-02-pos="5"] .wrap {
    left: calc(-1200px + (300px - 20vw) * 4.5);
  }
}
@media only screen and (max-width: 1279px) {
  #main #sec-03-acc [js-acc-02-pos="5"] .wrap {
    left: -1002px;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc [js-acc-02-pos="5"] .wrap {
    left: auto;
  }
}
#main #sec-03-acc .item {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .item {
    display: block;
  }
}
#main #sec-03-acc .head {
  width: 300px;
  min-width: 256px;
  max-width: 20vw;
  height: 420px;
  background-color: white;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .head {
    width: 100%;
    min-width: auto;
    max-width: none;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
#main #sec-03-acc .box {
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 320px;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .box {
    order: 2;
    height: auto;
  }
}
#main #sec-03-acc .image {
  display: block;
  width: 100%;
  height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .image {
    height: auto;
    padding-top: 35.968028%;
  }
}
#main #sec-03-acc .head:hover .image {
  transform: scale(1.2);
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .head:hover .image {
    transform: scale(1.01);
  }
}
#main #sec-03-acc .image-01 {
  background-image: url("../img/pc/sec-03/image-01.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .image-01 {
    background-image: url("../img/sp/sec-03/image-01.jpg");
    padding-top: 80.461812%;
  }
}
#main #sec-03-acc .image-02 {
  background-image: url("../img/pc/sec-03/image-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .image-02 {
    background-image: url("../img/sp/sec-03/image-02.jpg");
  }
}
#main #sec-03-acc .image-04 {
  background-image: url("../img/pc/sec-03/image-04.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .image-04 {
    background-image: url("../img/sp/sec-03/image-04.jpg");
  }
}
#main #sec-03-acc .image-05 {
  background-image: url("../img/pc/sec-03/image-05.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .image-05 {
    background-image: url("../img/sp/sec-03/image-05.jpg");
  }
}
#main #sec-03-acc .image-03 {
  position: relative;
}
#main #sec-03-acc .image-03:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/pc/sec-03/image-03-01.jpg");
  animation: imageLoop 12s ease-in-out 0s infinite;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .image-03:before {
    background-image: url("../img/sp/sec-03/image-03-01.jpg");
  }
}
@keyframes imageLoop {
  10% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
}
#main #sec-03-acc .image-03:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/pc/sec-03/image-03-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .image-03:after {
    background-image: url("../img/sp/sec-03/image-03-02.jpg");
  }
}
#main #sec-03-acc .caption {
  height: 100px;
  background-color: #2c6e75;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 24px 20px 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .caption {
    height: auto;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 9.333333vw 8px 2.66667vw;
    background-position: right 1.333333vw center;
    background-repeat: no-repeat;
    background-size: 25px;
    background-image: url("../img/sp/sec-03/plus.png");
    order: 1;
    cursor: pointer;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .caption--active {
    background-image: url("../img/sp/sec-03/close.png");
  }
}
#main #sec-03-acc .break {
  display: none;
}
@media only screen and (max-width: 1359px) {
  #main #sec-03-acc .break {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .break {
    display: none;
  }
}
#main #sec-03-acc .inner {
  width: 0;
  height: 420px;
  position: relative;
  color: white;
  background-color: black;
  transition: width 0.4s;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .inner {
    height: auto;
    width: 100%;
    display: none;
  }
}
#main #sec-03-acc [js-acc-02-pos="1"] .inner[js-acc-02-wrap="1"],
#main #sec-03-acc [js-acc-02-pos="2"] .inner[js-acc-02-wrap="2"],
#main #sec-03-acc [js-acc-02-pos="3"] .inner[js-acc-02-wrap="3"],
#main #sec-03-acc [js-acc-02-pos="4"] .inner[js-acc-02-wrap="4"],
#main #sec-03-acc [js-acc-02-pos="5"] .inner[js-acc-02-wrap="5"] {
  width: 800px;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc [js-acc-02-pos="1"] .inner[js-acc-02-wrap="1"],
#main #sec-03-acc [js-acc-02-pos="2"] .inner[js-acc-02-wrap="2"],
#main #sec-03-acc [js-acc-02-pos="3"] .inner[js-acc-02-wrap="3"],
#main #sec-03-acc [js-acc-02-pos="4"] .inner[js-acc-02-wrap="4"],
#main #sec-03-acc [js-acc-02-pos="5"] .inner[js-acc-02-wrap="5"] {
    width: auto;
  }
}
#main #sec-03-acc .close {
  cursor: pointer;
  position: absolute;
  top: 40px;
  left: 718px;
  background-image: url("../img/pc/common/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 42px;
  height: 42px;
  transition: opacity 0.4s;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .close {
    display: none;
  }
}
#main #sec-03-acc .close:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .close:hover {
    opacity: 1;
  }
}
#main #sec-03-acc .block {
  padding: 130px 70px 0;
  width: 800px;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s ease 0.15s, opacity 0.4s ease 0.15s;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .block {
    width: auto;
    transform: none;
    padding: 50px 3.2vw 30px;
    opacity: 1;
  }
}
#main #sec-03-acc [js-acc-02-pos="1"] .inner[js-acc-02-wrap="1"] .block,
#main #sec-03-acc [js-acc-02-pos="2"] .inner[js-acc-02-wrap="2"] .block,
#main #sec-03-acc [js-acc-02-pos="3"] .inner[js-acc-02-wrap="3"] .block,
#main #sec-03-acc [js-acc-02-pos="4"] .inner[js-acc-02-wrap="4"] .block,
#main #sec-03-acc [js-acc-02-pos="5"] .inner[js-acc-02-wrap="5"] .block {
  transform: translateX(0);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc [js-acc-02-pos="1"] .inner[js-acc-02-wrap="1"] .block,
#main #sec-03-acc [js-acc-02-pos="2"] .inner[js-acc-02-wrap="2"] .block,
#main #sec-03-acc [js-acc-02-pos="3"] .inner[js-acc-02-wrap="3"] .block,
#main #sec-03-acc [js-acc-02-pos="4"] .inner[js-acc-02-wrap="4"] .block,
#main #sec-03-acc [js-acc-02-pos="5"] .inner[js-acc-02-wrap="5"] .block {
    transform: none;
  }
}
#main #sec-03-acc .title {
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .title {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.04em;
  }
}
#main #sec-03-acc .text {
  margin: 40px 0 0;
  font-size: 14px;
  line-height: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .text {
    margin: 35px 0 0;
    line-height: 22px;
    text-align: justify;
    font-weight: normal;
  }
}
#main #sec-03-acc .text + .text {
  margin: 25px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .text + .text {
    margin: 20px 0 0;
  }
}
#main #sec-03-acc .sup {
  font-size: 75%;
  top: -0.3em;
}
#main #sec-03-acc .note {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 18px;
  padding: 0 0 0 25px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .note {
    margin: 15px 0 0;
    font-size: 10px;
    padding: 0 0 0 20px;
  }
}
#main #sec-03-acc .note + .note {
  margin: 0;
}
#main #sec-03-acc .mark {
  position: absolute;
  top: 0;
  left: 0;
}
#main #sec-03-acc .navi {
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-acc .navi {
    display: none;
  }
}
#main #sec-03-acc .navi-item {
  width: 130px;
  margin: 0 7.5px;
  padding: 24px 0 0;
}
#main #sec-03-acc .navi-button {
  width: 130px;
  margin: 0 7.5px;
  display: flex;
  justify-content: flex-end;
}
#main #sec-03-acc .navi-text {
  border-top: 3px #919191 solid;
  color: #919191;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  padding: 5px 0 0;
  height: 41px;
  cursor: pointer;
  transition: color 0.4s, border 0.4s;
}
#main #sec-03-acc [js-acc-02-pos="1"] + .navi [js-acc-02-navi="1"],
#main #sec-03-acc [js-acc-02-pos="2"] + .navi [js-acc-02-navi="2"],
#main #sec-03-acc [js-acc-02-pos="3"] + .navi [js-acc-02-navi="3"],
#main #sec-03-acc [js-acc-02-pos="4"] + .navi [js-acc-02-navi="4"],
#main #sec-03-acc [js-acc-02-pos="5"] + .navi [js-acc-02-navi="5"] {
  color: #333333;
  border-top: 3px #333333 solid;
}
#main #sec-03-acc .navi-text:hover {
  color: #333333;
  border-top: 3px #333333 solid;
}
#main #sec-03-acc .navi-prev {
  display: block;
  width: 51px;
  height: 51px;
  background-image: url("../img/pc/sec-03/prev--disabled.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
}
#main #sec-03-acc .navi-prev:after {
  content: "";
  width: 51px;
  height: 51px;
  background-image: url("../img/pc/sec-03/prev.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  opacity: 0;
  transition: opacity 0.4s;
  position: absolute;
  top: 0;
  left: 0;
}
#main #sec-03-acc .navi-prev:hover:after {
  opacity: 1;
}
#main #sec-03-acc [js-acc-02-pos="0"] + .navi .navi-prev,
#main #sec-03-acc [js-acc-02-pos="1"] + .navi .navi-prev {
  pointer-events: none;
}
#main #sec-03-acc .navi-next {
  display: block;
  width: 51px;
  height: 51px;
  background-image: url("../img/pc/sec-03/next--disabled.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
  margin: 0 0 0 10px;
}
#main #sec-03-acc .navi-next:after {
  content: "";
  width: 51px;
  height: 51px;
  background-image: url("../img/pc/sec-03/next.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  opacity: 0;
  transition: opacity 0.4s;
  position: absolute;
  top: 0;
  left: 0;
}
#main #sec-03-acc .navi-next:hover:after {
  opacity: 1;
}
#main #sec-03-acc [js-acc-02-pos="5"] + .navi .navi-next {
  pointer-events: none;
}
#main #sec-03-detail .title {
  margin: 35px 0 30px;
  color: #2c6e75;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-detail .title {
    margin: 15px 0 0;
    font-size: 16px;
    letter-spacing: 0.05em;
    padding: 0 3.2vw;
  }
}
#main #sec-03-detail .box {
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-detail .box {
    margin: 0;
    flex-wrap: wrap;
  }
}
#main #sec-03-detail .item {
  margin: 0 20px;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-detail .item {
    margin: 10px 3.2vw 0;
    width: 96.8vw;
    max-width: 353px;
  }
}
#main #sec-03-detail .link {
  display: block;
  height: 80px;
  width: 353px;
  background-color: white;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-detail .link {
    height: 70px;
    width: 100%;
  }
}
#main #sec-03-detail .link-01:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: opacity 0.4s;
  background-image: url("../img/pc/sec-03/link-01.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 304px;
  transition: opacity 0.4s;
  width: 304px;
  height: 18px;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-detail .link-01:after {
    background-image: url("../img/sp/sec-03/link-02.png");
    right: 50%;
    transform: translate(50%, -50%);
    width: 90%;
    height: 18px;
    background-size: contain;
  }
}
#main #sec-03-detail .link-02:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: opacity 0.4s;
  background-image: url("../img/pc/sec-03/link-02.png");
  background-position: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 304px;
  transition: opacity 0.4s;
  width: 304px;
  height: 18px;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-detail .link-02:after {
    background-image: url("../img/sp/sec-03/link-01.png");
    right: 50%;
    transform: translate(50%, -50%);
    width: 90%;
    height: 18px;
    background-size: contain;
  }
}

#main #sec-03-detail .link-03,
#main #sec-06 .link-03 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 170%;
  font-weight: 600;
  transition: opacity 0.4s;
}
#main #sec-03-detail .link-03{
  border: 1px #2c6e75 solid;
}
#main #sec-06 .link-03 {
  border: 1px #1A1A1A solid;
}
#main #sec-03-detail .link-03:after,
#main #sec-06 .link-03:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 25px;
  transform: translateY(-50%);
  background-image: url("../../../images/common/bg_sidebarArrow.png");
  width: 8px;
  height: 16px;
}
#main #sec-03-detail .link:hover,
#main #sec-03-detail .link:hover:after {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-03-detail .link:hover:after {
    opacity: 1;
  }
}
#main #sec-04 {
  background-color: #dcf7e3;
  padding: 35px 0 30px;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 {
    padding: 30px 0;
  }
}
#main #sec-04 .read {
  text-align: center;
}
#main #sec-04 .image {
  width: 624.5px;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .image {
    margin: 0 auto;
    width: 265px;
  }
}
#main #sec-04 .text-01 {
  margin: 35px 0 0;
  font-size: 24px;
  line-height: 44px;
  letter-spacing: 0.08em;
  color: #00712c;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .text-01 {
    margin: 25px 0 0;
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0;
    padding: 0 1.6vw;
  }
}
#main #sec-04 .box {
  margin: 60px auto 0;
  padding: 0 0 35px;
  max-width: 758px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .box {
    margin: 30px 0 0;
    padding: 0 3.2vw;
    display: block;
    max-width: none;
  }
}
#main #sec-04 .item {
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .item {
    letter-spacing: 0.04em;
  }
}
#main #sec-04 .item:nth-child(1) {
  width: 100%;
}
#main #sec-04 .item:nth-child(2) {
  width: 449px;
  margin: 40px 50px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .item:nth-child(2) {
    width: auto;
    margin: 25px 0 0;
  }
}
#main #sec-04 .item:nth-child(3) {
  width: 259px;
  margin: 40px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .item:nth-child(3) {
    width: auto;
    margin: 30px 0 0;
  }
}
#main #sec-04 .title-02 {
  font-size: 24px;
  line-height: 40px;
  font-weight: bold;
  color: #00712c;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .title-02 {
    font-size: 17px;
    line-height: 24px;
    text-align: center;
  }
}
#main #sec-04 .text-02 {
  font-size: 16px;
  line-height: 32px;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .text-02 {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }
}
#main #sec-04 .icons {
  display: block;
  margin: 10px 0 0;
  width: 454px;
  height: 47px;
  background-image: url("../img/pc/sec-04/icons.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .icons {
    margin: 5px 0 0;
    width: auto;
    height: auto;
    padding-top: 10.151802%;
    background-image: url("../img/sp/sec-04/icons.svg");
  }
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .link-box {
    text-align: center;
  }
}
#main #sec-04 .link {
  display: inline-block;
  padding: 0 20px 0 0;
  background-image: url("../img/pc/sec-04/arrow.png");
  background-position: right top 4px;
  background-repeat: no-repeat;
  background-size: 7px;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .link {
    font-size: 14px;
    background-image: url("../img/sp/sec-04/arrow.png");
    background-size: 5px;
    padding: 0 10px 0 0;
    line-height: 24px;
    background-position: right top 5px;
  }
}
#main #sec-04 .link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-04 .link:hover {
    opacity: 1;
  }
}
#main #sec-05 {
  background-color: white;
  padding: 80px 0 70px;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 {
    padding: 70px 0;
  }
}
#main #sec-05 .inner {
  margin: 0 auto;
  width: 758px;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .inner {
    width: auto;
    padding: 0 3.2vw;
  }
}
#main #sec-05 .title {
  color: #4080bc;
  font-size: 17px;
  font-weight: bold;
  font-weight: bold;
  border-bottom: 2px #4080bc solid;
  padding: 0 5px;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .title {
    font-size: 20px;
    border-bottom: 1px #4080bc solid;
    padding: 0 2.666667vw;
  }
}
#main #sec-05 .box {
  margin: 15px 0 0;
  padding: 0 6px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .box {
    padding: 0;
    display: block;
  }
}
#main #sec-05 .left {
  width: 490px;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .left {
    width: auto;
  }
}
#main #sec-05 .right {
  width: 190px;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .right {
    width: auto;
    margin: 20px 0 0;
  }
}
#main #sec-05 .item {
  padding: 0 0 0 20px;
  background-image: url("../img/pc/sec-05/arrow.png");
  background-position: left top 5px;
  background-repeat: no-repeat;
  background-size: 11px;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .item {
    padding: 0 0 0 calc(20px + 2.666667vw);
    background-image: url("../img/sp/sec-05/arrow.png");
    background-position: left 2.666667vw top 6px;
  }
}
#main #sec-05 .item + .item {
  margin: 12px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .item + .item {
    margin: 20px 0 0;
  }
}
#main #sec-05 .link {
  font-size: 15px;
  line-height: 24px;
  transition: opacity 0.4s;
}
#main #sec-05 .link b {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .link {
    font-size: 14px;
    line-height: 20px;
  }
  #main #sec-05 .link b {
    font-size: 15px;
  }
}
#main #sec-05 .link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-05 .link:hover {
    opacity: 1;
  }
}
#main #sec-06 {
  background-color: white;
  padding: 0 0 100px;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 {
    padding: 0 0 50px;
  }
}
#main #sec-06 .inner {
  width: 1100px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .inner {
    width: auto;
  }
}
#main #sec-06 .title {
  font-size: 24px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .title {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}

#main #sec-06 .link {
  /*display: block;*/
  /*padding: 35px 0 15px;*/
  text-align: center;
  position: relative;
  transition: opacity 0.4s;
}
#main #sec-06 .link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .link:hover {
    opacity: 1;
  }
}
#main #sec-06 .new {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  padding: 3px 0 0;
  border-bottom: 2px #4080bc solid;
}
#main #sec-06 .new:before {
  content: "NEW";
  font-size: 18px;
  padding: 0 6px;
  color: #4080bc;
  background-color: white;
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.02em;
  font-weight: bold;
}
#main #sec-06 .image {
  display: block;
  width: 131.5px;
  height: 90px;
  margin: 0 auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}
#main #sec-06 .image-01 {
  background-image: url("../img/pc/sec-06/item-01.jpg");
  background-size: 100%;
  background-position: center bottom -20px;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .image-01 {
    background-image: url("../img/sp/sec-06/item-01.jpg");
  }
}
#main #sec-06 .image-02 {
  background-image: url("../img/pc/sec-06/item-02.jpg");
  background-size: 100%;
  background-position: center bottom -20px;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .image-02 {
    background-image: url("../img/sp/sec-06/item-02.jpg");
  }
}
#main #sec-06 .image-03 {
  background-image: url("../img/pc/sec-06/item-03.jpg");
  background-size: 100%;
  background-position: center bottom -17px;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .image-03 {
    background-image: url("../img/sp/sec-06/item-03.jpg");
  }
}
#main #sec-06 .image-04 {
  background-image: url("../img/pc/sec-06/item-04.jpg");
  background-size: 100%;
  background-position: center bottom -16px;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .image-04 {
    background-image: url("../img/sp/sec-06/item-04.jpg");
  }
}
#main #sec-06 .image-05 {
  background-image: url("../img/pc/sec-06/item-05.jpg");
  background-size: 100%;
  background-position: center bottom -15px;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .image-05 {
    background-image: url("../img/sp/sec-06/item-05.jpg");
  }
}
#main #sec-06 .image-06 {
  background-image: url("../img/pc/sec-06/item-06.jpg");
  background-size: 100%;
  background-position: center bottom -20px;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .image-06 {
    background-image: url("../img/sp/sec-06/item-06.jpg");
  }
}

#main #sec-06 .image-07 {
  background-image: url("../img/pc/sec-06/item-07.jpg");
  background-size: 100%;
  background-position: center bottom -20px;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .image-07 {
    background-image: url("../img/sp/sec-06/item-07.jpg");
  }
}

#main #sec-06 .name {
  margin: 10px 0 0;
  font-size: 18px;
  letter-spacing: 0.02em;
}
#main #sec-06 .tag {
  display: flex;
  margin: 0 auto;
  width: 86px;
  height: 16px;
  color: white;
  font-size: 12px;
  justify-content: center;
    background-color: #4d4d4d;
}
#main #sec-06 .box {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    #main #sec-06 .box {
      margin: 0;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
    #main #sec-06 .item {
      margin: 10px 3.2vw 0;
    width: 96.8vw;
    max-width: 353px;
    }
}
#main #sec-06 .link {
  height: 80px;
  width: 353px;
  background-color: white;
  position: relative;
    padding: 0;
}
@media only screen and (max-width: 767px) {
  #main #sec-06 .link {
    height: 70px;
    width: 100%;
  }
}

#main #sec-07 {
  background-color: white;
  padding: 0 0 60px;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 {
    padding: 0 0 90px;
  }
}
#main #sec-07 .inner {
  width: 780px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 .inner {
    width: auto;
    padding: 0 5.86667vw;
  }
}
#main #sec-07 .box {
  display: flex;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 .box {
    display: block;
  }
}
#main #sec-07 .left {
  width: 135px;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 .left {
    width: auto;
  }
}
#main #sec-07 .intel {
  display: block;
  width: 116px;
  height: 47px;
  background-image: url("../img/pc/sec-07/intel.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 116px;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 .intel {
    background-image: url("../img/sp/sec-07/intel.png");
  }
}
#main #sec-07 .right {
  width: 645px;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 .right {
    width: auto;
    margin: 10px 0 0;
  }
}
#main #sec-07 .strong {
  font-size: 12px;
  font-weight: bold;
  line-height: 22px;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 .strong {
    font-size: 10px;
    line-height: 15px;
  }
}
#main #sec-07 .text {
  font-size: 11px;
  line-height: 22px;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 .text {
    font-size: 10px;
    line-height: 15px;
    text-align: justify;
  }
}
#main #sec-07 .note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 22px;
}
@media only screen and (max-width: 767px) {
  #main #sec-07 .note {
    margin: 20px 0 0;
    line-height: 16px;
    text-align: justify;
  }
}
@media only screen and (max-width: 1024px) {
  #main .pc {
    display: none;
  }
}
#main .sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  #main .sp {
    display: block;
  }
}
#main .sp-ib {
  display: inline;
}
@media only screen and (max-width: 767px) {
  #main .sp-ib {
    display: inline-block;
  }
}
#main .sub {
  font-size: 1em;
  bottom: -0.3em;
}
#main #modal .screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#main #modal .item {
  display: none;
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  height: 100%;
  max-height: calc(100% - 120px);
  width: 1000px;
  margin: 60px 0;
}
@media only screen and (max-width: 767px) {
  #main #modal .item {
    top: 76px;
    max-height: calc(100% - 94px);
    margin: 0;
    width: calc(100% - 6.4vw);
  }
}
#main #modal .wrap {
  margin: 0 auto;
  width: 1000px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #main #modal .wrap {
    width: 100%;
    padding: 10px 1.333333vw 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  #main #modal [js-modal-item^=i-] {
    background-color: white;
  }
}
#main #modal .close {
  display: block;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: absolute;
  top: -60px;
  right: 0;
  background-image: url("../img/pc/common/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 42px;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  #main #modal .close {
    width: 40px;
    height: 40px;
    top: -58px;
    background-image: url("../img/sp/common/close.png");
    background-size: 40px;
  }
}
#main #modal .close:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #main #modal .close:hover {
    opacity: 1;
  }
}
#main #modal .inner {
  height: 100%;
  max-height: calc(100% - 60px);
  background-color: white;
  padding: 10px 10px 10px 70px;
}
@media only screen and (max-width: 767px) {
  #main #modal .inner {
    max-height: none;
    padding: 0 4vw 0 5.3333333vw;
    overflow-y: scroll;
  }
  #main #modal .inner::-webkit-scrollbar {
    width: 6px;
  }
  #main #modal .inner::-webkit-scrollbar-track {
    border: 1px #919191 solid;
  }
  #main #modal .inner::-webkit-scrollbar-thumb {
    background: #919191;
  }
}
#main #modal .inner .mCSB_container {
  margin-right: 60px;
}
@media only screen and (max-width: 767px) {
  #main #modal .inner .mCSB_container {
    margin-right: 8vw;
  }
}
#main #modal .inner .mCSB_dragger_bar {
  border-radius: 0;
  background-color: #919191;
}
#main #modal .inner .mCSB_draggerRail {
  border: 1px #919191 solid;
  border-radius: 0;
  background-color: white;
}
#main #modal .box {
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  #main #modal .box {
    padding: 10px 0;
  }
}
#main #modal .image {
  margin: 25px auto 80px;
  display: block;
  width: 423px;
  height: 275px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 423px;
}
@media only screen and (max-width: 767px) {
  #main #modal .image {
    margin: 15px auto 40px;
    width: 81.961838568%;
    height: auto;
    padding-top: 51.144187266%;
    background-size: cover;
  }
}
#main #modal .image-01 {
  background-image: url("../img/pc/modal/image-01.jpg?1");
}
@media only screen and (max-width: 767px) {
  #main #modal .image-01 {
    background-image: url("../img/sp/modal/image-01.jpg?1");
  }
}
#main #modal .image-02 {
  background-image: url("../img/pc/modal/image-02.jpg");
}
@media only screen and (max-width: 767px) {
  #main #modal .image-02 {
    background-image: url("../img/sp/modal/image-02.jpg");
  }
}
#main #modal .image-03 {
  background-image: url("../img/pc/modal/image-03.jpg");
}
@media only screen and (max-width: 767px) {
  #main #modal .image-03 {
    background-image: url("../img/sp/modal/image-03.jpg");
  }
}
#main #modal .image-04 {
  background-image: url("../img/pc/modal/image-04.jpg");
}
@media only screen and (max-width: 767px) {
  #main #modal .image-04 {
    background-image: url("../img/sp/modal/image-04.jpg");
  }
}
#main #modal .image-05 {
  background-image: url("../img/pc/modal/image-05.jpg");
}
@media only screen and (max-width: 767px) {
  #main #modal .image-05 {
    background-image: url("../img/sp/modal/image-05.jpg");
  }
}
#main #modal .image-06 {
  background-image: url("../img/pc/modal/image-06.jpg");
}
@media only screen and (max-width: 767px) {
  #main #modal .image-06 {
    background-image: url("../img/sp/modal/image-06.jpg");
  }
}
#main #modal .image-07 {
  background-image: url("../img/pc/modal/image-07.jpg");
}
@media only screen and (max-width: 767px) {
  #main #modal .image-07 {
    background-image: url("../img/sp/modal/image-07.jpg");
  }
}
#main #modal .heading {
  font-size: 30px;
  font-weight: bold;
  color: #2c6e75;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  #main #modal .heading {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0.05em;
  }
}
#main #modal .person {
  display: flex;
  justify-content: flex-end;
  margin: 10px 0 0 !important;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #main #modal .person {
    margin: 30px 0 0 !important;
  }
}
#main #modal .job {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  #main #modal .job {
    font-size: 15px;
  }
}
#main #modal .division {
  margin: 8px 0 0 !important;
  font-size: 14px;
}
#main #modal .name {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  #main #modal .name {
    font-size: 17px;
  }
}
#main #modal .block {
  margin: 35px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #modal .block {
    margin: 40px 0 0;
  }
}
#main #modal .block + .block {
  margin: 50px 0 0;
}
@media only screen and (max-width: 767px) {
  #main #modal .block + .block {
    margin: 40px 0 0;
  }
}
#main #modal .title {
  font-size: 23px;
  font-weight: bold;
  color: #2c6e75;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  #main #modal .title {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}
#main #modal .text {
  font-size: 18px;
  line-height: 37px;
  margin: 20px 0 0 !important;
}
@media only screen and (max-width: 767px) {
  #main #modal .text {
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
  }
}
#main #modal .movie {
  margin: 18px 0 60px;
  padding-top: 56.25%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main #modal .movie {
    margin: 0;
  }
}
#main #modal .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ==========================================================================
   TB�i�^�u���b�g�j�ł̕\���C��
   �Ώ۔͈́F768px�ȏ� ? 1279px�ȉ�
   ========================================================================== */
@media only screen and (min-width: 768px) and (max-width: 1279px) {

  /* �O���100%���R�[�h���c���Ă��Ă���肠��܂��� */

  /* ------------------------------------------------------------------------
     ���[�_����TB�őΉ��i�͂ݏo���h�~�j
     ------------------------------------------------------------------------ */
  /* ���[�_���{�̂̃R���e�i */
  #main #modal .item {
    width: 90% !important; /* ��ʕ���90%�ɏk�����A���E��5%���̗]�������܂� */
    max-width: 1000px !important; /* ��ʂ��L�����͍ő�1000px���ێ� */
  }

  /* ���[�_�����̃��b�v�v�f */
  #main #modal .wrap {
    width: 100% !important; /* �e�v�f(.item)�̉����i90%�j�ɒǏ]�����܂� */
  }

  /* ���[�_�����̃R���e���c�G���A */
  #main #modal .inner {
    padding: 20px 30px 20px 40px !important; /* PC��(���]��70px)�͍L�����邽�߁ATB�p�ɒ��� */
  }

  /* ���[�_�����̉摜�G���A�̒��� */
  #main #modal .image {
    /* height: auto !important; ���폜���A����Ɉȉ����w�肵�܂� */
    max-width: 100% !important;
    
    /* ���������ɂ��āA��ʂɍ��킹�ďk�ނ悤�ɂ��܂��iPC�ł�423px�j */
    width: 100% !important; 
    /* ���܂�傫���Ȃ肷���Ȃ��悤�APC�ł̃T�C�Y������ɂ��܂� */
    max-width: 423px !important; 
    
    /* �y�d�v�z�������k��ł��A�c����i423:275�j���ێ����č����������v�Z������L�q */
    aspect-ratio: 423 / 275 !important;
    height: auto !important; /* aspect-ratio�Ƒg�ݍ��킹�邱�ƂŁA���x�͐������@�\���܂� */
    
    /* �w�i�摜���g�ɍ��킹���Y��ɏk���g�傳���悤�ɂ��܂� */
    background-size: contain !important; 
  }
}