@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, picture {
  display: block;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/* reset for form */
input {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}
select::-ms-expand {
  display: none;
}

/* ▼IE10・IE11用 */
:-ms-input-placeholder {
  color: #919191;
}

/* ▼Chrome・Safari・Opera用(※1：Edgeでも有効) */
::-webkit-input-placeholder {
  color: #919191;
}

/* ▼Firefox18以前用(※2) */
:-moz-placeholder {
  color: #919191;
}

/* ▼Firefox19以上用(※3) */
::-moz-placeholder {
  color: #919191;
  opacity: 1;
}

/* ▼CSS4標準(予定)の記述 */
::placeholder {
  color: #919191;
}

/*========== set.scss ==========*/
html {
  font-size: 62.5%;
  background-color: #fff;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: left;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.indexPage {
  background: url("../images/main_bg.png") 0 0 repeat;
}
@media screen and (max-width: 767px) {
  body.open {
    overflow: hidden;
  }
}
body.ch {
  font-family: "微软雅黑", "宋体";
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.txtLink {
  text-decoration: underline;
  display: inline;
  color: #0062a6;
}

@media screen and (max-width: 767px) {
  .noSP {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .noPC {
    display: none !important;
  }
}

sup, sub {
  font-size: 70%;
}

sup {
  vertical-align: super;
}

.icon_arrow, .c-btn-std {
  position: relative;
  color: #000;
  font-weight: 700;
  padding-top: 1em;
  padding-bottom: 1em;
}
.icon_arrow:after, .c-btn-std:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background: url("../images/icon_arrow_bk.svg") center no-repeat;
  background-size: contain;
  width: 3.0666666667vw;
  height: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .icon_arrow:after, .c-btn-std:after {
    width: 8px;
    height: 14px;
  }
}

.toggle {
  cursor: pointer;
}

.toggled {
  display: none;
}

/*========== l-header.scss ==========*/
.l-header {
  background-color: #fff;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #000;
}
.l-header-top {
  border-bottom: none;
  background: url("../images/main_bg.png") 0 0 repeat;
}

/*========== l-main.scss ==========*/
.l-main {
  display: block;
  overflow: hidden;
}
.l-main__contents {
  padding-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents {
    padding-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents {
    padding-top: 128px;
  }
}
.l-main__contents--pt0 {
  padding-top: 0;
}
.l-main__contents p, .l-main__contents figure, .l-main__contents ul, .l-main__contents ol, .l-main__contents table {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .l-main__contents p, .l-main__contents figure, .l-main__contents ul, .l-main__contents ol, .l-main__contents table {
    margin-top: 5.3333333333vw;
  }
}
.l-main__contents p:first-child, .l-main__contents figure:first-child, .l-main__contents ul:first-child, .l-main__contents ol:first-child, .l-main__contents table:first-child {
  margin-top: 0;
}
.l-main__txt {
  line-height: 2.375;
}
@media screen and (max-width: 767px) {
  .l-main__txt {
    line-height: 2;
  }
}
.l-main__index {
  padding-bottom: 17.0666666667vw;
}
@media screen and (min-width: 768px) {
  .l-main__index {
    padding-bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__index {
    padding-bottom: 128px;
  }
}

/*========== l-footer.scss ==========*/
.l-footer {
  background-color: #262626;
}

/*========== c-inner.scss ==========*/
.c-inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-inner {
    width: 89.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-inner {
    width: 95%;
    max-width: 1140px;
  }
}
@media screen and (min-width: 768px) {
  .c-inner--w1000 {
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .c-inner.sizeS {
    width: 59.6899224806vw;
  }
}
@media screen and (min-width: 768px) {
  .c-inner.sizeM {
    width: 75.1937984496vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-inner.sizeM {
    max-width: 970px;
  }
}

/*========== c-tab.scss ==========*/
.c-tab-list {
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 768px) {
  .c-tab-list {
    border-bottom: 4px solid #0062a6;
    padding: 0 4.5%;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-tab-list {
    margin-bottom: 48px;
  }
}
.c-tab-list__item {
  cursor: pointer;
  background-color: #EAEDF4;
  color: #0062a6;
  text-align: center;
  padding: 1em 0;
  border-radius: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-tab-list__item {
    border-radius: 8px 8px 0 0;
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-tab-list__item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-tab-list__item:not(:last-child) {
    margin-bottom: 1.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .c-tab-list__item:not(:last-child) {
    margin-right: 4px;
  }
}
.c-tab-list__item.slick-current {
  background-color: #0062a6;
  color: #fff;
}
.c-tab-list .slick-track {
  transform: unset !important;
}
.c-tab .slick-dots {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}
.c-tab .slick-dots li {
  margin: 0 16px;
}
.c-tab .slick-dots li button {
  text-indent: -9999px;
  width: 8px;
  height: 8px;
  background-color: #EAEDF4;
  border-radius: 50%;
  cursor: pointer;
}
.c-tab .slick-dots li.slick-active button {
  background-color: #0062a6;
}
.c-tab .slick-disabled {
  display: none !important;
}
.c-tab .slick-slide {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

@media screen and (min-width: 768px) {
  .en .c-tab-list {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .en .c-tab-list__item {
    width: 28% !important;
  }
  .en .c-tab-list__item:last-child {
    width: 40% !important;
  }
}
@media screen and (max-width: 767px) {
  .en .c-tab-list__item {
    font-size: 3.7333333333vw;
  }
  .en .c-tab-list__item:last-child {
    letter-spacing: -0.015em;
  }
}
@media screen and (min-width: 768px) {
  .en .c-tab-list .slick-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*========== c-title.scss ==========*/
.c-title__head {
  color: #fff;
  font-size: 6.4vw;
}
@media screen and (max-width: 767px) {
  .c-title__head {
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .c-title__head {
    font-size: 4.1666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-title__head {
    font-size: 5rem;
  }
}
.c-title__head-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-title__head-bg .c-inner {
  position: relative;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .c-title__head-bg .c-inner {
    height: 40vw;
  }
}
.c-title__head-bg--concept {
  background-image: url("../images/concept/bg_head.jpg");
}
.c-title__head-bg--concept-apparel {
  background-image: url("../images/concept/bg_head_apparel.jpg");
  padding: 12.8vw 0;
}
@media screen and (min-width: 768px) {
  .c-title__head-bg--concept-apparel {
    padding: 8.3333333333vw 0 7.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-title__head-bg--concept-apparel {
    padding: 100px 0 90px;
  }
}
.c-title__head-bg--concept-apparel .c-inner {
  height: auto !important;
}
.c-title__head-bg--concept-corporate {
  background-image: url("../images/concept/bg_head_corporate.jpg");
  padding: 12.8vw 0;
}
@media screen and (min-width: 768px) {
  .c-title__head-bg--concept-corporate {
    padding: 8.3333333333vw 0 7.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-title__head-bg--concept-corporate {
    padding: 100px 0 90px;
  }
}
.c-title__head-bg--concept-corporate .c-inner {
  height: auto !important;
}
.c-title__head-bg--company {
  background-image: url("../images/company/bg_head.jpg");
}
.c-title__head-bg--products {
  background-image: url("../images/products/bg_head.jpg");
}
.c-title__head-bg--technology {
  background-image: url("../images/technology/bg_head.jpg");
}
.c-title__head-bg--project {
  background-image: url("../images/project/bg_head.jpg");
}
.c-title__head-bg--news {
  background: url("../images/news/bg_head.png") center bottom no-repeat #cfb48e;
  background-size: contain;
}
.c-title__head-bg--special {
  background-image: url("../images/special/bg_head.jpg");
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .c-title__head-bg--special {
    background-position: left top;
  }
}
.c-title__head-bg--special .c-inner {
  height: 50vw;
}
@media screen and (min-width: 1201px) {
  .c-title__head-bg--special .c-inner {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .c-title__head-bg--special .c-inner {
    height: 80vw;
  }
}
.c-title__head-bg--special .c-title__head {
  color: #000;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .c-title__head-bg--special .c-title__head {
    font-size: 1.75vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-title__head-bg--special .c-title__head {
    font-size: 2.1rem;
  }
}
.c-title__head-bg--special .c-title__head-name {
  display: block;
  padding-top: 0.25em;
  font-size: 12.8vw;
}
@media screen and (min-width: 768px) {
  .c-title__head-bg--special .c-title__head-name {
    font-size: 6.5833333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-title__head-bg--special .c-title__head-name {
    font-size: 7.9rem;
  }
}
.c-title__head-bg--special .c-title__head-name-san {
  font-size: 60%;
}
.c-title__head-bg--pfacts {
  background-image: url("../images/p-facts/bg_head.jpg");
}
.c-title__head-bg--pfacts .c-inner:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(13.3333333333vw, -50%);
  width: 25vw;
  height: 12.6666666667vw;
  background: url("../images/p-facts/head_obj.svg") center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1201px) {
  .c-title__head-bg--pfacts .c-inner:after {
    width: 300px;
    height: 152px;
    transform: translate(160px, -50%);
  }
}
@media screen and (max-width: 767px) {
  .c-title__head-bg--pfacts .c-inner:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 5.3333333333vw;
    transform: translateY(0);
  }
}
.c-title__head-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
}
@media screen and (max-width: 767px) {
  .c-title__head-inner {
    left: 0;
  }
}
.c-title__head-inner--special {
  transform: translateY(0);
  top: 7.5vw;
}
@media screen and (min-width: 1201px) {
  .c-title__head-inner--special {
    top: 90px;
  }
}
.c-title__head-txt {
  color: #fff;
  line-height: 1.75;
  margin-top: 1em;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .c-title__head-txt {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-title__head-txt {
    font-size: 2rem;
  }
}
.c-title__head-txt--bk {
  color: #000;
}
.c-title-brackets {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-title-brackets {
    font-size: 5.3333333333vw;
  }
}
.c-title-brackets__inner {
  display: inline-block;
  position: relative;
  padding: 0 2.5em;
}
.c-title-brackets__inner:before, .c-title-brackets__inner:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 3em;
  background: url("../images/title_brackets.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-title-brackets__inner:before, .c-title-brackets__inner:after {
    height: 2.5em;
  }
}
.c-title-brackets__inner:before {
  left: 0;
}
.c-title-brackets__inner:after {
  right: 0;
  transform: rotate(180deg) translateY(50%);
}
.c-title-brackets--bl {
  color: #0062a6;
}
.c-title-brackets--bl .c-title-brackets__inner:before, .c-title-brackets--bl .c-title-brackets__inner:after {
  background-image: url("../images/title_brackets_bl.svg");
}
.c-title-brackets--gr {
  color: #278857;
}
.c-title-brackets--gr .c-title-brackets__inner:before, .c-title-brackets--gr .c-title-brackets__inner:after {
  background-image: url("../images/title_brackets_gr.svg");
}
.c-title-round {
  position: absolute;
  left: 64px;
  top: 0;
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 1000px;
  background: #fff;
  font-weight: 700;
  padding: 0.7em 1em;
  font-size: 2.5rem;
  color: #0062a6;
  text-align: center;
  white-space: nowrap;
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-title-round {
    font-size: 4.8vw;
    left: 5.3333333333vw;
    padding: 0.7em 1em;
    line-height: 1.3;
  }
}
.c-title-round__wrap {
  position: relative;
  margin-top: 96px;
}
@media screen and (max-width: 767px) {
  .c-title-round__wrap {
    margin-top: 12vw;
    padding-top: 9.3333333333vw !important;
  }
}
.c-title-round--bl {
  background: #0062a6;
  color: #fff;
  width: auto;
}
.c-title-round--gr {
  background: #2b875a;
  color: #fff;
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-title-round--company {
    width: 15em;
  }
}
.c-title-round--center {
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-title-round--pfacts {
  width: 20em;
  color: #2b875a;
}
@media screen and (max-width: 767px) {
  .c-title-round--pfacts {
    font-size: 4vw;
  }
}
.c-title-round--technology {
  width: auto;
  color: #2b875a;
}
@media screen and (max-width: 767px) {
  .c-title-round--technology {
    font-size: 4vw;
  }
}
.c-title-contact {
  font-weight: 700;
  position: relative;
  padding-left: 2em;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-title-contact {
    font-size: 4.2666666667vw;
    line-height: 1.4;
  }
}
.c-title-contact:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6em;
  height: 1.6em;
  background: url("../images/icon_contact.svg") center no-repeat;
  background-size: contain;
}
.c-title-contact--GR:before {
  background-image: url("../images/icon_contact_gr.svg");
}
.c-title-top {
  text-align: center;
  font-weight: 700;
  font-size: 6.4vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-title-top {
    font-size: 3.3333333333vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-title-top {
    font-size: 4rem;
    margin-bottom: 48px;
  }
}
.c-title-top__inner {
  display: inline-block;
  position: relative;
  padding: 0 1.75em;
}
@media screen and (max-width: 767px) {
  .c-title-top__inner {
    line-height: 1.3;
  }
}
.c-title-top__inner:before, .c-title-top__inner:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 2em;
  background: url("../images/title_brackets_bk.svg") center no-repeat;
  background-size: contain;
}
.c-title-top__inner:before {
  left: 0;
}
.c-title-top__inner:after {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.c-title-bd {
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #000;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-title-bd {
    font-size: 5.3333333333vw;
    line-height: 1.3;
  }
}
.c-title-bd--S {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-title-bd--S {
    font-size: 4.2666666667vw;
  }
}
.c-title-std {
  font-weight: 700;
  font-size: 120%;
  line-height: 1.4;
}
.c-title-secondary {
  font-weight: 700;
  border-bottom: 1px solid #000;
  font-size: 120%;
  margin-bottom: 1em;
}
.c-title-diagonal {
  text-align: center;
}
.c-title-diagonal__inner {
  display: inline-block;
  position: relative;
  padding: 0 1em;
  line-height: 1.3;
}
.c-title-diagonal__inner:before, .c-title-diagonal__inner:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 1px;
  height: 100%;
  background: #000;
}
.c-title-diagonal__inner:before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.c-title-diagonal__inner:after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}

.c-title-primary {
  text-align: center;
  color: #0062a6;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1em;
  font-size: 6vw;
}

@media screen and (min-width: 768px) {
  .c-title-primary {
    line-height: 1.3;
    font-size: 3.5658914729vw;
  }
}
@media screen and (min-width: 1170px) {
  .c-title-primary {
    font-size: 4.6rem;
  }
}
.c-title-primary .wa {
  display: block;
  color: #262626;
  font-size: 3.7333333333vw;
}

@media screen and (min-width: 768px) {
  .c-title-primary .wa {
    font-size: 1.2403100775vw;
  }
}
@media screen and (min-width: 1170px) {
  .c-title-primary .wa {
    font-size: 1.6rem;
  }
}
.c-title-primary .en {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .c-title-primary .en {
    font-size: 10.6666666667vw;
    line-height: 1.2;
  }
}
.c-title-primary.clWH {
  color: #f5f5f5;
}

.c-title-primary.clWH .en {
  color: #f5f5f5;
}

/*========== c-table.scss ==========*/
.c-table-std {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}
.c-table-std caption {
  text-align: left;
  margin-bottom: 0.5em;
}
.c-table-std th, .c-table-std td {
  padding: 1em;
  line-height: 140%;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}
.c-table-std th {
  font-weight: 700;
}
.c-table-std thead th {
  background: #0062a6;
  color: #fff;
  text-align: center;
}
.c-table-std tbody th {
  background: #cfb48e;
}
@media screen and (max-width: 767px) {
  .c-table-std--collect th, .c-table-std--collect td {
    display: flex;
  }
}
.c-table-std--collect tbody th {
  background: #eee;
  width: 20%;
  border-bottom-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-table-std--collect tbody th {
    width: 100%;
  }
}
.c-table-std--collect tbody td a {
  color: #cfb48e;
}
.c-table-std--collect tbody td a.gm {
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
  margin-left: 1.5em;
}
.c-table-std--collect tbody td a.gm:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 2em;
  background: url("../images/p-facts/icon_googlemaps.svg") center no-repeat;
  background-size: contain;
}

/*========== c-list.scss ==========*/
.c-list-item {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.4;
}
.c-list-item:not(:last-child) {
  margin-bottom: 1.75em;
}
@media screen and (max-width: 767px) {
  .c-list-item:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.c-list-item:before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
}
.c-list-item--disc:before {
  content: "";
  border-radius: 50%;
  background: #0062a6;
}
.c-list-item--discGR:before {
  content: "";
  border-radius: 50%;
  background: #2b875a;
}
.c-list-item--discBK:before {
  content: "";
  border-radius: 50%;
  background: #000;
}
.c-list-item--doc:before {
  content: "";
  width: 0.75em;
  height: 1.1em;
  background: url("../images/icon_doc.svg") center no-repeat;
  background-size: contain;
}
.c-list-item--doc a {
  color: #0071b8;
  text-decoration: underline;
}
.c-list-item--check:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .c-list-item--check:not(:last-child) {
    margin-bottom: 1em;
  }
}
.c-list-item--check:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1em;
  height: 1em;
  background: url("../images/icon_check.svg") center no-repeat;
  background-size: contain;
}
.c-list-item--blank:before {
  content: "";
  background: url("../images/icon_link_bk.svg") center no-repeat;
}
.c-list-item--idt1em {
  text-indent: -1em;
  margin-left: 1em;
  padding-left: 0;
}
.c-list-item--idt1em:not(:last-child) {
  margin-bottom: 0.5em;
}
.c-list-item--idt1em:before {
  display: none;
}
.c-list-history {
  position: relative;
}
.c-list-history:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1em;
  height: 100%;
  width: 1px;
  background: #000;
}
.c-list-history__item {
  position: relative;
  padding-left: 1.5em;
}
.c-list-history__item:not(:last-child) {
  margin-bottom: 1.75em;
}
.c-list-history__item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1em;
  width: 1em;
  height: 1px;
  background: #000;
}
.c-list-history__item:after {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  top: calc(1em - 2px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}
@media screen and (min-width: 768px) {
  .c-list-history__inner {
    display: flex;
    flex-wrap: wrap;
  }
}
.c-list-history__date {
  color: #0062a6;
  padding: 0.5em 0;
}
@media screen and (min-width: 768px) {
  .c-list-history__date {
    width: 8.5em;
  }
}
@media screen and (max-width: 767px) {
  .c-list-history__date {
    margin-bottom: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  .c-list-history__date--year {
    width: 4em;
  }
  .c-list-history__date--year + .c-list-history__txt {
    width: calc(100% - 4em);
  }
}
.c-list-history__txt {
  background: #fff;
  border-radius: 5px;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-list-history__txt {
    width: calc(100% - 8.5em);
  }
}
@media screen and (max-width: 767px) {
  .c-list-history__txt {
    line-height: 1.6;
  }
}
.c-list__ttl {
  color: #2b875a;
  font-weight: 500;
  margin-bottom: 0.5em;
}

/*========== c-box.scss ==========*/
.c-box {
  border: 1px solid #000;
  background: #fff;
  border-radius: 15px;
  padding: 5.3333333333vw;
  margin-bottom: 12.8vw;
}
@media screen and (min-width: 768px) {
  .c-box {
    border-radius: 2.5vw;
    margin-bottom: 64px;
    padding: 64px;
  }
}
@media screen and (min-width: 1201px) {
  .c-box {
    border-radius: 30px;
  }
}
.c-box--noBD {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
.c-box--noBG {
  background: transparent;
}
.c-box--noPD {
  padding-left: 0;
  padding-right: 0;
}
.c-box--bgGR {
  background: #d8eada;
}
.c-box-2nd {
  padding-top: 9.6vw;
}
@media screen and (min-width: 768px) {
  .c-box-2nd {
    padding-top: 32px;
  }
}
.c-box-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-box-flex > .inBox {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-box-flex > .inBox {
    width: 47.435%;
  }
}
@media screen and (max-width: 767px) {
  .c-box-flex > .inBox:not(:last-child) {
    margin-bottom: 2.6666666667vw;
  }
}
.c-box-flex.x3 {
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .c-box-flex.x3 > .inBox {
    width: 31.6%;
  }
  .c-box-flex.x3 > .inBox:not(:nth-child(3n)) {
    margin-right: 2.6%;
  }
}
.c-box-flex.x4 {
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .c-box-flex.x4 > .inBox {
    width: 45%;
    margin-right: 2.5%;
    margin-left: 2.5%;
  }
}
@media screen and (min-width: 768px) {
  .c-box-flex.x4 > .inBox {
    width: 23%;
  }
  .c-box-flex.x4 > .inBox:not(:nth-child(4n)) {
    margin-right: 2.6%;
  }
}

.c-box-flex.x37 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.c-box-flex.x37 > .inBoxA {
  width: 100%;
}

.c-box-flex.x37 > .inBoxB {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-box-flex.x37 > .inBoxA {
    margin-right: 2%;
    margin-left: 2%;
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .c-box-flex.x37 > .inBoxB {
    width: 65%;
  }
}
.c-box-flex.x37c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .c-box-flex.x37c > .inBoxA {
    margin-top: 10px;
    margin-right: 2%;
    margin-left: 2%;
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .c-box-flex.x37c > .inBoxB {
    width: 65%;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  .c-box-flex.x37c > .inBoxA {
    width: 35%;
    margin-top: 20px;
    margin-right: 1%;
    margin-left: 1%;
  }
}
@media screen and (max-width: 767px) {
  .c-box-flex.x37c > .inBoxB {
    width: 61%;
    margin-right: 1%;
    margin-left: 1%;
  }
}
.c-box-flex.x46 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.c-box-flex.x46 > .inBoxA46 {
  width: 100%;
}

.c-box-flex.x46 > .inBoxB46 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-box-flex.x46 > .inBoxA46 {
    margin-right: 2%;
    margin-left: 2%;
    width: 38%;
  }
}
@media screen and (min-width: 768px) {
  .c-box-flex.x46 > .inBoxB46 {
    width: 58%;
  }
}
.c-box-flex.forInsta {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .c-box-flex.forInsta > .inBox {
    margin-right: 2%;
    margin-left: 2%;
    width: 20%;
  }
}
/*========== c-btn.scss ==========*/
.c-btn {
  border: 1px solid #000;
  border-radius: 1000px;
  background: #cfb48e;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 500;
  width: 74.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: 3.5882em;
    width: 22.35em;
    font-size: 1.7rem;
  }
}
.c-btn:after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  background: url("../images/icon_arrow.svg") center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-btn:after {
    width: 2.35em;
    height: 2.35em;
  }
}
.c-btn--center {
  margin: auto;
}
.c-btn--sns {
  background: transparent;
  font-size: 1.4rem;
  width: 15em;
}
.c-btn--pageTop {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  z-index: 2;
  height: 3.4285em;
  right: 0;
  width: 15em;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-btn--pageTop {
    width: 11em;
    font-size: 3.2vw;
    justify-content: flex-start;
    padding-left: 2em;
  }
}
.c-btn--pageTop:after {
  transform: rotate(-90deg) translate(50%, 0);
}
.c-btn--pk {
  border-radius: 15px;
  background: #ec7d86;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0px 6px 0px 0px rgb(255, 255, 255);
}
.c-btn--gr {
  background: #cfecd9;
}
.c-btn__course {
  display: flex;
  justify-content: center;
}
.c-btn__course .c-btn {
  width: auto;
  padding: 0 4em 0 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-btn__course .c-btn {
    line-height: 1.3;
    height: auto;
    padding: 0.5em 4em 0.5em 2em;
  }
}
.c-btn-std {
  display: block;
  text-align: center;
  background-color: #0062a6;
}
@media screen and (min-width: 768px) {
  .c-btn-std {
    width: 20.9302325581vw;
  }
}
@media screen and (min-width: 1201px) {
  .c-btn-std {
    width: 270px;
  }
}
.c-btn-std--linkPdf {
  padding: 1em 3em 1em 1em;
  display: inline-block;
  width: auto;
}
.c-btn-std--linkPdf:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background: url(../images/icon_pdf.svg) center no-repeat;
  background-size: contain;
  width: 1.25em;
  height: 1.5em;
}
.c-btn-std.clBR {
  background-color: #cfb48e;
  color: #000;
}
.c-btn-std.clBK {
  background-color: #000;
  color: #cfb48e;
}

/*========== c-bg.scss ==========*/
.c-bg {
  background: url("../images/main_bg.png") 0 0 repeat;
}
.c-bg--lbl {
  background-image: url("../images/main_bg_lbl.png");
}
.c-bgBlue {
  background: #0062a6;
}
.c-bgGray {
  background: #eee;
}
.c-bgGreen {
  background: #2b875a;
}
.c-bgBrown {
  background: #cfb48e;
}


/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  cursor: pointer;
  width: 3.8759689922vw;
  height: 3.8759689922vw;
  background: url("../images/icon_next.svg") center no-repeat rgba(255, 255, 255, 0.8);
  background-size: 1.3953488372vw auto;
}
@media screen and (min-width: 1201px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
    background-size: 18px auto;
  }
}
@media screen and (max-width: 767px) {
  .slick-arrow {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    background-size: 3.0666666667vw auto;
  }
}

.slick-prev {
  left: 0;
  transform: translateY(-50%) rotate(-180deg);
}

.slick-next {
  right: 0;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
  margin: auto;
  max-width: 800px;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/*========== p-kv.scss ==========*/
.p-kv {
  margin-bottom: 1.6666666667vw;
}
@media screen and (min-width: 1201px) {
  .p-kv {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv {
    margin-bottom: 5.3333333333vw;
    padding-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-kv__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.p-kv__slide {
  overflow: hidden;
  border: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .p-kv__slide {
    width: 61.6666666667vw;
    border-radius: 2.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__slide {
    width: 740px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__slide {
    border-radius: 4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-kv__slideWrap {
  position: relative;
}
.p-kv__slide .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
  text-indent: -9999px;
  background: url("../images/top/kv_slide_arrow.png") center no-repeat;
  background-size: contain;
  width: 3.75vw;
  height: 6.6666666667vw;
}
@media screen and (min-width: 1201px) {
  .p-kv__slide .slick-arrow {
    width: 45px;
    height: 80px;
  }
}
.p-kv__slide .slick-prev {
  left: 0;
  transform: rotate(-180deg) translateY(50%);
}
.p-kv__slide .slick-next {
  right: 0;
}
.p-kv__slide .slick-dots {
  position: absolute;
  left: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.p-kv__slide .slick-dots li {
  margin: 0 5px;
  height: 5px;
}
.p-kv__slide .slick-dots li button {
  text-indent: -9999px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.39);
}
.p-kv__slide .slick-dots li.slick-active button {
  background: rgb(255, 255, 255);
}
.p-kv__sponcer {
  position: relative;
  border: 1px solid #000;
  background: #fff;
  overflow: hidden;
  border-radius: 4vw;
  padding: 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-kv__sponcer {
    width: 31.6666666667vw;
    border-radius: 2.5vw;
    padding: 0 2.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__sponcer {
    width: 380px;
    border-radius: 30px;
    padding: 0 30px;
  }
}
.p-kv__sponcer-img {
  margin: 0 calc(-5.3333333333vw - 1px);
}
@media screen and (min-width: 768px) {
  .p-kv__sponcer-img {
    margin: 0 calc(-2.5vw - 1px);
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__sponcer-img {
    margin: 0 -31px;
  }
}
.p-kv__sponcer-txt {
  line-height: 1.4;
  margin-bottom: 0.7em;
}
@media screen and (min-width: 768px) {
  .p-kv__sponcer-txt {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__sponcer-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__sponcer-list {
    margin-bottom: 4.2666666667vw;
  }
}
.p-kv__sponcer-item {
  position: relative;
  padding-left: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-kv__sponcer-item {
    padding-left: 5.4166666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__sponcer-item {
    padding-left: 65px;
  }
}
.p-kv__sponcer-item:not(:last-child) {
  margin-bottom: 1em;
}
.p-kv__sponcer-item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/top/kv_sponcer_icon.svg") center no-repeat;
  background-size: contain;
  width: 8vw;
  height: 8vw;
}
@media screen and (min-width: 768px) {
  .p-kv__sponcer-item:before {
    width: 4.0833333333vw;
    height: 4.0833333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__sponcer-item:before {
    width: 49px;
    height: 49px;
  }
}
.p-kv__sponcer-item a {
  display: flex;
  flex-direction: column;
}
.p-kv__sponcer-item {
  display: flex;
  flex-direction: column;
}
.p-kv__sponcer-date {
  margin-bottom: 0.3em;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-kv__sponcer-date {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__sponcer-date {
    font-size: 1.2rem;
  }
}
.p-kv__sponcer-news {
  line-height: 1.3;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .p-kv__sponcer-news {
    font-size: 1.1666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__sponcer-news {
    font-size: 1.4rem;
  }
}
.p-kv__sponcer-btn {
  display: block;
  color: #fff;
  padding: 1.375em 0;
  background: #2b875a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-kv__sponcer-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-kv__sponcer-btn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__sponcer-btn {
    margin: 0 calc(-5.3333333333vw - 1px);
  }
}
.p-kv__sponcer-btn:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 1em;
  width: 2.5em;
  height: 2.5em;
  background: url("../images/icon_arrow.svg") center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-kv__sponcer-btn:after {
    bottom: 2.4vw;
    transform: translateY(0);
  }
}

/*========== p-nav.scss ==========*/
@media screen and (min-width: 768px) {
  .p-nav {
    padding-right: 1.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-nav {
    padding-right: 20px;
  }
}
.p-nav__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  height: 16vw;
  padding: 0 16vw 0 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-nav__inner {
    height: 9.1666666667vw;
    padding: 0 0 0 2.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-nav__inner {
    height: 110px;
    padding: 0 0 0 32px;
  }
}
.p-nav__logo {
  width: 30.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-nav__logo {
    width: 16.1666666667vw;
    max-width: 194px;
  }
}
.p-nav__logo--expo {
  width: 53.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-nav__logo--expo {
    width: 32vw;
    max-width: 384px;
  }
}
.p-nav__headSP {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-nav__headSP {
    display: none;
  }
}
.p-nav__headSP-lang {
  width: 16vw;
  height: 16vw;
  background: #cfb48e;
  background: url("../images/icon_lang.png") center no-repeat #ccc;
  background-size: 5.3333333333vw auto;
}
.p-nav__headSP-lang.lang-active {
  background-image: url("../images/lang--btn_close.svg");
}
@media screen and (min-width: 768px) {
  .p-nav__items {
    display: flex;
    align-items: center;
    margin-right: 3em;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__items {
    margin-bottom: 3em;
  }
}
.p-nav__items-item {
  font-size: 1.6666666667vw;
}
@media screen and (min-width: 1201px) {
  .p-nav__items-item {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__items-item {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__items-item:not(:last-child) {
    margin-right: 2em;
  }
}
.p-nav__items-item a {
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-nav__items-item a {
    color: #fff;
    text-align: center;
    padding: 1em 0;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__items-item a {
    height: 9.1666666667vw;
    display: flex;
    width: 100%;
    align-items: center;
  }
}
@media screen and (min-width: 1201px) {
  .p-nav__items-item a {
    height: 110px;
  }
}
.p-nav__tPath {
  border-bottom: 1px solid #000;
  padding: 1em 0;
}
.p-nav__tPath-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-nav__tPath-items-item {
  position: relative;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .p-nav__tPath-items-item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__tPath-items-item {
    line-height: 1.3;
  }
}
.p-nav__tPath-items-item a {
  display: inline-block;
  color: #000;
}
.p-nav__tPath-items-item:not(:last-child) {
  margin-right: 2em;
}
.p-nav__tPath-items-item:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  right: -1.25em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #0062a6;
  border-right: 1px solid #0062a6;
  width: 0.35em;
  height: 0.35em;
}
.p-nav__burger {
  width: 100%;
  height: 100%;
  z-index: 9999;
  cursor: pointer;
  background: url("../images/burger--btn_open.svg") center no-repeat;
  background-size: 100% 100%;
}
.p-nav__burger-wrap {
  height: 100%;
  z-index: 9999;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 16vw;
}
@media screen and (min-width: 768px) {
  .p-nav__burger-wrap {
    display: none;
  }
}
.p-nav__burger.burger-active {
  background: url("../images/lang--btn_close.svg") center no-repeat #cfb48e;
  background-size: 5.3333333333vw auto;
}
@media screen and (max-width: 767px) {
  .p-nav__navigation {
    opacity: 0;
    top: 16vw;
    right: -100vw;
    z-index: -1;
    width: 100vw;
    position: fixed;
    transition: 0.3s;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.5);
    height: calc(100vh - 16vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navigation-content {
    position: absolute;
    right: 0;
    height: calc(100vh - 16vw);
    background-color: #fff;
    width: 80vw;
    display: flex;
    flex-direction: column;
    padding-left: 4vw;
    padding-bottom: 4vw;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__navigation-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 9px;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navigation.nav-active {
    opacity: 1;
    z-index: 9998;
    right: 0;
  }
  .p-nav__navigation.nav-active .p-nav__navigation-content {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navigation2 {
    opacity: 0;
    top: 16vw;
    right: -100vw;
    z-index: -1;
    width: 100vw;
    position: fixed;
    transition: 0.3s;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.5);
    height: calc(100vh - 16vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navigation2-content {
    position: absolute;
    right: 0;
    height: calc(100vh - 16vw);
    background-color: #fff;
    width: 80vw;
    padding-left: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navigation2.nav-active {
    opacity: 1;
    z-index: 9998;
    right: 0;
  }
  .p-nav__navigation2.nav-active .p-nav__navigation-content {
    right: 0;
  }
}
.p-nav__other {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-nav__other {
    align-items: center;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__other {
    order: 2;
    justify-content: center;
    margin-left: -4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__other-item--sns {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__other-item--sns {
    width: 12vw;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__other-item--lang {
    cursor: pointer;
    position: relative;
    margin-left: 2px;
    margin-right: 12px;
  }
  .p-nav__other-item--lang:hover .p-nav__other-child {
    display: block;
  }
}
.p-nav__other-item--contact {
  background: #000;
}
@media screen and (max-width: 767px) {
  .p-nav__other-item--contact {
    width: 16vw;
    height: 16vw;
    background: url("../images/icon_mail.png") center no-repeat #000;
    background-size: 5.3333333333vw auto;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__other-item--contact {
    border-radius: 1000px;
    border: 1px solid #000;
  }
}
.p-nav__other-item--contact a {
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5em 1em;
}
@media screen and (min-width: 768px) {
  .p-nav__other-child {
    display: none;
    position: absolute;
    left: 0;
    top: -1px;
    background: #fff;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__other-child-list:not(:last-child) {
    border-bottom: 2px solid #eee;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__other-child-list a {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    padding: 1em;
    font-weight: 700;
  }
}
.p-nav__other-parent {
  border: 1px solid #000;
  border-radius: 1000px;
  font-size: 1.2rem;
  padding: 0.5em 1em;
}
@media screen and (max-width: 767px) {
  .p-nav__menu {
    order: 1;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__menu {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__menu-item {
    border-bottom: 1px solid #eee;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__menu-item:not(:last-child) {
    margin-right: 2em;
  }
}
@media screen and (min-width: 1201px) {
  .p-nav__menu-item:not(:last-child) {
    margin-right: 3em;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__menu-item--hasChild {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__menu-item--hasChild:hover .p-nav__menu-child {
    display: block;
  }
}
.p-nav__menu-item a {
  font-weight: 500;
  font-size: 1.3rem;
  padding: 1em 0;
}
@media screen and (max-width: 767px) {
  .p-nav__menu-item a {
    display: block;
    font-size: 4.2666666667vw;
    position: relative;
  }
  .p-nav__menu-item a:after {
    content: "";
    display: block;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5em;
    height: 1em;
    background: url("../images/icon_arrow_br.svg") center no-repeat;
    background-size: contain;
  }
}
.p-nav__menu-item a.current, .p-nav__menu-item a:hover {
  color: #2b875a;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-nav__menu-item--cat:after {
    transform: translateY(-50%) rotate(90deg) !important;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__menu-child {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    background: #2b875a;
    min-width: 12em;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__menu-child {
    border-top: 1px solid #eee;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__menu-child-item:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__menu-child-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    white-space: nowrap;
  }
}
.p-nav__menu-child-item a {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-nav__menu-child-item a {
    font-size: 3.4666666667vw;
    padding-left: 8vw;
  }
  .p-nav__menu-child-item a:after {
    right: auto;
    left: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__menu-child-item a {
    color: #fff;
    padding: 1em;
  }
  .p-nav__menu-child-item a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (min-width: 768px) {
  .p-nav__menu-child-item a.current {
    color: #fff;
    background: #cfb48e;
  }
}
.p-nav-btm {
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 1201px) {
  .p-nav-btm {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav-btm {
    padding: 8.5333333333vw 0;
  }
}
.p-nav-btm__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-nav-btm__items-item {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #000;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-nav-btm__items-item {
    width: 23.68%;
  }
}
@media screen and (max-width: 767px) {
  .p-nav-btm__items-item:not(:last-child) {
    margin-bottom: 3.7333333333vw;
  }
}
.p-nav-btm__inner {
  padding: 16px 0;
  text-align: center;
  display: block;
}
.p-nav-btm__inner:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.p-nav-btm__ttl {
  margin-bottom: 0.5em;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .p-nav-btm__ttl {
    font-size: 4vw;
  }
}
.p-nav-btm__txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-nav-btm__txt {
    font-size: 3.4666666667vw;
  }
}

/*========== p-concept.scss ==========*/
.l-main__contents .p-concept {
  display: flex;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept {
    flex-direction: column;
  }
}
.l-main__contents .p-concept__ttl {
  width: 22%;
  color: #0062a6;
  font-weight: 700;
  line-height: 1.75;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept__ttl {
    width: 100%;
    border-bottom: 1px solid #0062a6;
    font-size: 4vw;
    padding-bottom: 1em;
  }
}
.l-main__contents .p-concept__ctt {
  width: 78%;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept__ctt {
    padding-left: 64px;
    border-left: 1px solid #0062a6;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept__ctt {
    width: 100%;
    padding-top: 5.3333333333vw;
  }
}
.l-main__contents .p-concept__lead {
  color: #0062a6;
  font-weight: 700;
  line-height: 1.6;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept__lead {
    line-height: 1.4;
    margin-top: -0.3em !important;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept__lead {
    margin-top: -0.6em !important;
    line-height: 2.2;
  }
}
.l-main__contents .p-concept__obj01 {
  max-width: 463px;
}
.l-main__contents .p-concept__obj02 {
  max-width: 356px;
}
.l-main__contents .p-concept2nd {
  background: #f4f4f4;
  border-radius: 15px;
  border-bottom: none;
  padding: 5.3333333333vw 10.6666666667vw 10.6666666667vw;
  margin: 5.3333333333vw calc(-5.3333333333vw - 1px) 0;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept2nd {
    margin: 64px -65px 0;
    padding: 64px 80px 128px;
    width: calc(100% + 130px);
  }
}
.l-main__contents .p-concept2nd + .p-concept2nd {
  margin-top: -64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept2nd + .p-concept2nd {
    margin-top: -5.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
}
.l-main__contents .p-concept2nd__wrap {
  padding-bottom: 0;
}
.l-main__contents .p-concept2nd__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #0062a6;
  font-size: 3rem;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept2nd__ttl {
    font-size: 5.3333333333vw;
    line-height: 1.6;
    gap: 3.7333333333vw;
  }
}
.l-main__contents .p-concept2nd__ttl-catch {
  background: #0062a6;
  color: #fff;
  border-radius: 1000px;
  padding: 0.2em 1em;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept2nd__ttl-catch {
    font-size: 4vw;
  }
}
.l-main__contents .p-concept2nd__feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-main__contents .p-concept2nd__feature-item {
  width: 21.5%;
}

@media screen and (max-width: 767px) {
  .l-main__contents .p-concept2nd__feature-item {
    width: 48%;
  }
}
.l-main__contents .p-concept2nd__icon {
  display: block;
  margin: 0 auto;
  width: 76%;
}
.l-main__contents .p-concept2nd__cap {
  color: #0062a6;
  text-align: center;
  padding-top: 1em;
  line-height: 1.4;
}
.l-main__contents .p-concept2nd__txt {
  line-height: 1.6;
  font-size: 1.5rem;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept2nd__txt {
    font-size: 3.4666666667vw;
  }
}
.l-main__contents .p-concept2nd__sum {
  display: inline-block;
  background: #fff;
  padding: 0.2em 0.5em;
  line-height: 1.4;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept2nd__sum {
    font-size: 4vw;
    padding: 0.2em 0.5em 0.35em;
  }
}
.l-main__contents .p-concept-future {
  padding: 10.6666666667vw 0 5.3333333333vw;
  margin-top: -10.6666666667vw;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-future {
    padding: 17.0666666667vw 0 8.5333333333vw;
    margin-top: -17.0666666667vw;
  }
}
.l-main__contents .p-concept-about {
  padding-top: 0;
  overflow: hidden;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-about:not(:last-child) {
    margin-bottom: 48px;
  }
}
.l-main__contents .p-concept-about__ttl {
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1.4;
  font-size: 4.8vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 32vw;
  margin: 0 -5.3333333333vw;
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-about__ttl {
    height: 20.3333333333vw;
    padding-left: 13.3333333333vw;
    margin: 0 -64px;
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-about__ttl {
    height: 244px;
    padding-left: 160px;
  }
}
.l-main__contents .p-concept-about__ttl--bl {
  color: #0062a6;
  background-image: url("../images/concept/apparel_about_bg_bl.png");
}
.l-main__contents .p-concept-about__ttl--gr {
  color: #2b875a;
  background-image: url("../images/concept/apparel_about_bg_gr.png");
}
.l-main__contents .p-concept-about__item {
  line-height: 1.6;
  position: relative;
  padding: 1em 0 1em 2em;
  letter-spacing: 0.1em;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-about__item {
    padding-left: 3em;
    font-size: 2.5vw;
    margin: 0 8.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-about__item {
    font-size: 3rem;
    margin: 0 100px;
  }
}
.l-main__contents .p-concept-about__item:not(:last-child) {
  border-bottom: 1px dashed #000;
}
.l-main__contents .p-concept-about__item:before {
  content: "";
  display: block;
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-about__item:before {
    left: 0;
  }
}
.l-main__contents .p-concept-about__item--bl:before {
  background-image: url("../images/icon_check_bl.svg");
}
.l-main__contents .p-concept-about__item--gr:before {
  background-image: url("../images/icon_check_gr.svg");
}
.l-main__contents .p-concept-about__item .uLine--bl {
  background: linear-gradient(transparent 60%, #bdd6e8 60%);
}
.l-main__contents .p-concept-about__item .uLine--gr {
  background: linear-gradient(transparent 60%, #dcedc6 60%);
}
.l-main__contents .p-concept-about__noteWrap {
  display: flex;
  justify-content: center;
}
.l-main__contents .p-concept-about__note-item {
  line-height: 1.5;
  text-indent: -1.75em;
  margin-left: 1.75em;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-about__note-item {
    font-size: 1.5rem;
  }
}
.l-main__contents .p-concept-about__note-item:not(:last-child) {
  margin-bottom: 0.5em;
}
.l-main__contents .p-concept-about__wrap {
  padding-bottom: 12.8vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-about__wrap {
    padding-bottom: 96px;
  }
}
.l-main__contents .p-concept-project {
  padding-top: 12.8vw;
  margin-bottom: 17.0666666667vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project {
    margin-bottom: 11.25vw;
    padding-top: 64px;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project {
    margin-bottom: 135px;
  }
}
.l-main__contents .p-concept-project__list {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__list {
    margin-top: 6.4vw;
  }
}
.l-main__contents .p-concept-project__item {
  position: relative;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  height: 48vw;
  width: 95%;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item {
    height: 27.25vw;
    width: 88.5%;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item {
    height: 327px;
  }
}
.l-main__contents .p-concept-project__item:not(:last-child) {
  margin-bottom: 9.6vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item:not(:last-child) {
    margin-bottom: 5.4166666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item:not(:last-child) {
    margin-bottom: 65px;
  }
}
.l-main__contents .p-concept-project__item:nth-child(odd) {
  align-items: flex-start;
  background-color: #2b875a;
  border-radius: 15px 0 0 15px;
  margin-left: 5%;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item:nth-child(odd) {
    background-position: right center;
    margin-left: 11.5%;
    border-radius: 2.5vw 0 0 2.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item:nth-child(odd) {
    border-radius: 30px 0 0 30px;
  }
}
.l-main__contents .p-concept-project__item:nth-child(odd) .p-concept-project__link {
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item:nth-child(odd) .p-concept-project__link {
    padding-left: 5vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item:nth-child(odd) .p-concept-project__link {
    padding-left: 60px;
  }
}
.l-main__contents .p-concept-project__item:nth-child(even) {
  align-items: flex-end;
  background-color: #0062a6;
  border-radius: 0 15px 15px 0;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item:nth-child(even) {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item:nth-child(even) {
    background-position: left center;
    margin-right: 11.5%;
    border-radius: 0 2.5vw 2.5vw 0;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item:nth-child(even) {
    border-radius: 0 30px 30px 0;
  }
}
.l-main__contents .p-concept-project__item:nth-child(even) .p-concept-project__link {
  justify-content: flex-end;
  padding-right: 1.5em;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item:nth-child(even) .p-concept-project__link {
    padding-right: 5vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item:nth-child(even) .p-concept-project__link {
    padding-right: 60px;
  }
}
.l-main__contents .p-concept-project__item:after {
  content: "";
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.l-main__contents .p-concept-project__item--apparel01 {
  background-image: url("../images/concept/apparel_project_bg01.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--apparel01 {
    background-position: 80% center;
  }
}
.l-main__contents .p-concept-project__item--apparel02 {
  background-image: url("../images/concept/apparel_project_bg02.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--apparel02 {
    background-position: 20% center;
  }
}
.l-main__contents .p-concept-project__item--apparel02:after {
  background-image: url("../images/concept/project_obj_apparel02.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--apparel02:after {
    left: 2.6666666667vw;
    bottom: -2.6666666667vw;
    width: 22.1333333333vw;
    height: 22.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item--apparel02:after {
    right: -5vw;
    top: -1.6666666667vw;
    width: 13.8333333333vw;
    height: 13.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item--apparel02:after {
    right: -60px;
    top: -20px;
    width: 166px;
    height: 166px;
  }
}
.l-main__contents .p-concept-project__item--apparel03 {
  background-image: url("../images/concept/apparel_project_bg03.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--apparel03 {
    background-position: 65% center;
  }
}
.l-main__contents .p-concept-project__item--apparel04 {
  background-image: url("../images/concept/apparel_project_bg04.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--apparel04 {
    background-position: 50% center;
  }
}
.l-main__contents .p-concept-project__item--corporate01 {
  background-image: url("../images/concept/corporate_project_bg01.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--corporate01 {
    background-position: 80% center;
  }
}
.l-main__contents .p-concept-project__item--corporate02 {
  background-image: url("../images/concept/corporate_project_bg02.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--corporate02 {
    background-position: 20% center;
  }
}
.l-main__contents .p-concept-project__item--corporate02:after {
  background-image: url("../images/concept/project_obj_corporate02.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--corporate02:after {
    left: 1.3333333333vw;
    top: -8vw;
    width: 36vw;
    height: 26.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item--corporate02:after {
    right: -6.6666666667vw;
    bottom: -3.3333333333vw;
    width: 22.4166666667vw;
    height: 16.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item--corporate02:after {
    right: -80px;
    bottom: -40px;
    width: 269px;
    height: 196px;
  }
}
.l-main__contents .p-concept-project__item--corporate03 {
  background-image: url("../images/concept/corporate_project_bg03.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--corporate03 {
    background-position: 65% center;
  }
}
.l-main__contents .p-concept-project__item--corporate03:after {
  background-image: url("../images/concept/project_obj_corporate03.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--corporate03:after {
    right: 5.3333333333vw;
    bottom: -5.3333333333vw;
    width: 37.3333333333vw;
    height: 25.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item--corporate03:after {
    right: 15.4166666667vw;
    bottom: -3.75vw;
    width: 30.5833333333vw;
    height: 20vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item--corporate03:after {
    right: 185px;
    bottom: -45px;
    width: 367px;
    height: 240px;
  }
}
.l-main__contents .p-concept-project__item--corporate04 {
  background-image: url("../images/concept/corporate_project_bg04.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--corporate04 {
    background-position: 25% center;
  }
}
.l-main__contents .p-concept-project__item--corporate05 {
  background-image: url("../images/concept/corporate_project_bg05.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--corporate05 {
    background-position: 60% center;
  }
}
.l-main__contents .p-concept-project__item--corporate05:after {
  background-image: url("../images/concept/project_obj_corporate05.png");
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__item--corporate05:after {
    right: 2.6666666667vw;
    top: -13.3333333333vw;
    width: 17.0666666667vw;
    height: 33.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__item--corporate05:after {
    left: -6.6666666667vw;
    bottom: -4.5833333333vw;
    width: 10.5833333333vw;
    height: 21.0833333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__item--corporate05:after {
    left: -80px;
    bottom: -55px;
    width: 127px;
    height: 253px;
  }
}
.l-main__contents .p-concept-project__link {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  color: #fff;
}
.l-main__contents .p-concept-project__ttl {
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.3;
  font-size: 4.2666666667vw;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__ttl {
    text-shadow: 1px 1px 3px #000;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__ttl {
    font-size: 2.9166666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__ttl {
    font-size: 3.5rem;
  }
}
.l-main__contents .p-concept-project__txt {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-project__txt {
    text-shadow: 1px 1px 3px #000;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-project__txt {
    line-height: 1.8;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-project__txt {
    font-size: 2rem;
  }
}
.l-main__contents .p-concept-effect {
  background: #fff;
  padding: 12.8vw 0 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-effect {
    padding: 64px 0;
  }
}
.l-main__contents .p-concept-effect__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-effect__list {
    justify-content: center;
    gap: 1.6666666667vw;
    margin-top: 48px;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-effect__list {
    gap: 20px;
  }
}
.l-main__contents .p-concept-effect__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-effect__item {
    width: 46%;
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-effect__item {
    gap: 16px;
    width: 19.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-effect__item {
    width: 236px;
  }
}
.l-main__contents .p-concept-effect__txt {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-effect__txt {
    line-height: 1.6;
    font-size: 1.5rem;
  }
}
.l-main__contents .p-concept-problem {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 13.3333333333vw 0 17.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-problem {
    padding: 4.1666666667vw 0 5.4166666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-problem {
    padding: 50px 0 65px;
  }
}
.l-main__contents .p-concept-problem:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.6666666667vw;
  height: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-problem:after {
    width: 4.1666666667vw;
    height: 8.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-problem:after {
    width: 50px;
    height: 100px;
  }
}
.l-main__contents .p-concept-problem--apparel {
  background-image: url("../images/concept/apparel_problem_bg.jpg");
}
.l-main__contents .p-concept-problem--apparel:after {
  background-image: url("../images/concept/problem_apparel_after.svg");
}
.l-main__contents .p-concept-problem--corporate {
  background-image: url("../images/concept/corporate_problem_bg.jpg");
}
.l-main__contents .p-concept-problem--corporate:after {
  background-image: url("../images/concept/problem_corporate_after.svg");
}
.l-main__contents .p-concept-problem__bg {
  background: rgba(255, 255, 255, 0.8);
  max-width: 790px;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6.4vw 0;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-problem__bg {
    padding: 4.1666666667vw 0;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-problem__bg {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-problem__inner {
    padding: 0 6.4vw;
  }
}
.l-main__contents .p-concept-problem__ttl {
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.075em;
  text-decoration: underline;
  font-feature-settings: "palt";
  font-size: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-problem__ttl {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-problem__ttl {
    font-size: 3.2rem;
  }
}
.l-main__contents .p-concept-problem__txt {
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-problem__txt {
    font-size: 1.4166666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-problem__txt {
    font-size: 1.7rem;
  }
}
.l-main__contents .p-concept-problem__list {
  color: #0062a6;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-problem__list {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-problem__list {
    font-size: 2rem;
  }
}
.l-main__contents .p-concept-problem__summary {
  background: #cfb48e;
  text-align: center;
  color: #fff;
  width: 100%;
  line-height: 1.7;
  padding: 0.75em 0;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-problem__summary {
    font-size: 2.1rem;
    margin-top: 3.75vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-problem__summary {
    margin-top: 45px;
  }
}
.l-main__contents .p-concept-solution {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 17.3333333333vw 5.3333333333vw 12.8vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-solution {
    padding: 19.1666666667vw 0 7.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-solution {
    padding: 230px 0 90px;
  }
}
.l-main__contents .p-concept-solution--apparel {
  background-image: url("../images/concept/apparel_solution_bg.jpg");
}
.l-main__contents .p-concept-solution--corporate {
  position: relative;
  background-image: url("../images/concept/corporate_solution_bg.jpg");
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-solution--corporate {
    padding: 8vw 0;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-solution--corporate {
    padding: 96px 0;
  }
}
.l-main__contents .p-concept-solution--corporate:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/concept/corporate_solution_obj.png") center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-solution--corporate:before {
    width: 41.5vw;
    height: 42.1666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-solution--corporate:before {
    width: 498px;
    height: 506px;
  }
}
.l-main__contents .p-concept-solution__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.l-main__contents .p-concept-solution__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  color: #0062a6;
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-solution__ttl {
    font-size: 4rem;
  }
}
.l-main__contents .p-concept-solution__ttl--gr {
  color: #2b875a;
}
.l-main__contents .p-concept-solution__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-solution__txt {
    font-size: 1.7rem;
    margin-top: 40px;
  }
}
.l-main__contents .p-concept-solution__sentence {
  background: #fff;
  border-radius: 5px;
  padding: 8px 15px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-solution__sentence {
    line-height: 1.3;
  }
}
.l-main__contents .p-concept-contact {
  padding: 6.4vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 0;
    gap: 16px;
  }
}
.l-main__contents .p-concept-contact__txt {
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-contact__txt {
    text-align: center;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-contact__txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-contact__btn {
    margin: auto;
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-contact__btn {
    font-size: 2rem;
    max-width: 320px;
  }
}
.l-main__contents .p-concept-uniform {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-uniform {
    padding: 25vw 0 26.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-uniform {
    padding: 300px 0 320px;
  }
}
.l-main__contents .p-concept-uniform__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-uniform__inner {
    z-index: 1;
    width: 100%;
    padding: 12.8vw 0 32vw;
  }
}
.l-main__contents .p-concept-uniform__inner:before, .l-main__contents .p-concept-uniform__inner:after {
  content: "";
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.l-main__contents .p-concept-uniform__inner:before {
  background-image: url("../images/concept/uniform_bg_l.png");
  left: 0;
  width: 45%;
  height: 72vw;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-uniform__inner:before {
    bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-uniform__inner:before {
    left: -24.5833333333vw;
    top: -22.0833333333vw;
    width: 48.9166666667vw;
    height: 75.4166666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-uniform__inner:before {
    left: -295px;
    top: -265px;
    width: 587px;
    height: 905px;
  }
}
.l-main__contents .p-concept-uniform__inner:after {
  background-image: url("../images/concept/uniform_bg_r.png");
  right: 0;
  width: 25%;
  height: 53.3333333333vw;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-uniform__inner:after {
    bottom: 21.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-uniform__inner:after {
    right: -23.8333333333vw;
    top: -20.4166666667vw;
    width: 32.5vw;
    height: 69.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-uniform__inner:after {
    right: -286px;
    top: -245px;
    width: 390px;
    height: 836px;
  }
}
.l-main__contents .p-concept-uniform__ttl {
  font-weight: 600;
  color: #0062a6;
  line-height: 1.875;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-uniform__ttl {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-uniform__ttl {
    font-size: 4rem;
  }
}
.l-main__contents .p-concept-uniform__txt {
  font-weight: 600;
  line-height: 2;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-uniform__txt {
    line-height: 2.5;
    font-size: 1.4166666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-uniform__txt {
    font-size: 1.7rem;
  }
}
.l-main__contents .p-concept-item {
  margin-bottom: 17.0666666667vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-item {
    margin-bottom: 5vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-item {
    margin-bottom: 60px;
  }
}
.l-main__contents .p-concept-item__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-item__list {
    padding: 2.5vw 2.5vw 2.0833333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-item__list {
    padding: 30px 30px 25px;
  }
}
.l-main__contents .p-concept-item__item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-item__item {
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-item__item {
    width: 19.1666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-item__item {
    width: 230px;
  }
}
.l-main__contents .p-concept-item__cap {
  line-height: 1.5;
  margin-top: 0.8em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-item__cap {
    font-size: 2rem;
  }
}
.l-main__contents .p-concept-item__txt {
  text-align: center;
  text-decoration: underline;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-item__txt {
    line-height: 1.4;
    font-size: 4.2666666667vw;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step {
    padding: 5.3333333333vw 6.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-step {
    padding: 64px 82px;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step__flow {
    padding-top: 5.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-step__flow {
    padding-top: 70px;
  }
}
.l-main__contents .p-concept-step__item {
  display: flex;
  align-items: flex-end;
  position: relative;
  border-bottom: 1px dashed #0062a6;
  padding: 0 21.3333333333vw 5.3333333333vw 10.6666666667vw;
  margin-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step__item {
    align-items: center;
    padding: 1.6666666667vw 16.6666666667vw 1.6666666667vw 9.5833333333vw;
    margin-bottom: 8.75vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-step__item {
    padding: 20px 0 20px 115px;
    margin-bottom: 105px;
  }
}
.l-main__contents .p-concept-step__item:before {
  content: "";
  display: block;
  position: absolute;
  left: -1.3333333333vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-step__item:before {
    width: 10.1333333333vw;
    height: 9.3333333333vw;
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step__item:before {
    width: 4.5vw;
    height: 8.3333333333vw;
    left: 1.6666666667vw;
    bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-step__item:before {
    width: 54px;
    height: 100px;
    left: 20px;
    bottom: 20px;
  }
}
.l-main__contents .p-concept-step__item:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10.6666666667vw;
  transform: translateX(-50%);
  background: url("../images/concept/corporate_step_arrow.svg") center no-repeat;
  background-size: contain;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step__item:after {
    width: 38px;
    height: 35px;
    bottom: -6.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-step__item:after {
    bottom: -80px;
  }
}
.l-main__contents .p-concept-step__item--num01:before {
  background-image: url("../images/concept/step_num01.svg");
}
.l-main__contents .p-concept-step__item--num02:before {
  background-image: url("../images/concept/step_num02.svg");
}
.l-main__contents .p-concept-step__item--num03:before {
  background-image: url("../images/concept/step_num03.svg");
}
.l-main__contents .p-concept-step__item--num04:before {
  background-image: url("../images/concept/step_num04.svg");
}
.l-main__contents .p-concept-step__item--num05:before {
  background-image: url("../images/concept/step_num05.svg");
}
.l-main__contents .p-concept-step__ttl {
  display: inline-block;
  color: #0062a6;
  background: linear-gradient(transparent 70%, #e3d4be 70%);
  font-weight: 700;
  margin-bottom: 0.55em;
  letter-spacing: 0.1em;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-step__ttl {
    letter-spacing: 0.05em;
    font-size: 4.2666666667vw;
    line-height: 1.3;
    margin-right: -40vw;
  }
}
.l-main__contents .p-concept-step__txt {
  color: #0062a6;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step__txt {
    letter-spacing: 0.1em;
    line-height: 1.4;
    font-size: 2.1rem;
  }
}
.l-main__contents .p-concept-step__img {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-step__img {
    right: -2.6666666667vw;
    width: 21.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step__img {
    bottom: 0;
    right: -2.5vw;
    width: 18vw;
    transform: translateY(1.6666666667vw);
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-concept-step__img {
    right: -30px;
    width: 216px;
    transform: translateY(20px);
  }
}
.l-main__contents .p-concept-step__sum {
  background: #e8f1fa;
  border-radius: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0062a6;
  letter-spacing: 0.1em;
  padding: 5.3333333333vw 0;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step__sum {
    padding: 20px 0;
    gap: 20px;
  }
}
.l-main__contents .p-concept-step__sum-txt01 {
  font-weight: 700;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-concept-step__sum-txt01 {
    font-size: 4.3rem;
  }
}
.l-main__contents .p-concept-step__sum-txt02 {
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-concept-step__sum-txt02 {
    font-size: 4.2666666667vw;
    line-height: 1.4;
  }
}

.p-concept-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-concept-head__ttl {
  margin: 0 auto 10px;
  max-width: 575px;
}
.p-concept-head__sentence {
  background: #fff;
  border-radius: 5px;
  margin-top: 10px;
  padding: 8px 15px;
}
@media screen and (max-width: 767px) {
  .p-concept-head__sentence {
    line-height: 1.4;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-concept-head__sentence {
    font-size: 1.7rem;
  }
}

/*========== p-company.scss ==========*/
.l-main__contents .p-company-info__ttl {
  font-weight: 700;
  color: #0062a6;
  margin-bottom: 1em;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-info__ttl {
    font-size: 4.2666666667vw;
  }
}
.l-main__contents .p-company-info__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-company-info__inner:after {
    content: "";
    display: block;
    position: absolute;
    top: 1.1875em;
    left: 5em;
    height: calc(100% - 2.375em);
    width: 1px;
    background: #000;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-company-info__th {
    float: left;
    clear: both;
    width: 5em;
    padding: 1.1875em 0;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-info__th {
    margin-bottom: 0.75em;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-company-info__txt {
    margin-left: 5em;
    padding: 1.1875em 0 1.1875em 1em;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-info__txt {
    margin-bottom: 2em;
  }
}
.l-main__contents .p-company-visionTtl {
  display: flex;
  flex-direction: column;
  color: #0062a6;
  font-weight: 700;
  font-size: 1.7rem;
  padding-left: 90px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-visionTtl {
    font-size: 4vw;
    padding-left: 12vw;
  }
}
.l-main__contents .p-company-visionTtl__en {
  width: 319px;
  position: relative;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-visionTtl__en {
    width: 58.6666666667vw;
  }
}
.l-main__contents .p-company-visionTtl__en:before {
  content: "";
  display: block;
  position: absolute;
  left: -90px;
  top: 50%;
  background: #000;
  width: 58px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-visionTtl__en:before {
    left: -12vw;
    width: 8vw;
  }
}
.l-main__contents .p-company-specialist {
  padding-top: 8vw;
  padding-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-company-specialist {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.l-main__contents .p-company-specialist__ttl {
  position: relative;
  left: auto;
  top: auto;
  transform: translateY(0);
}
.l-main__contents .p-company-specialist__txt {
  color: #0062a6;
}
.l-main__contents .p-company-specialist__member {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-company-specialist__member {
    margin-left: -64px;
    margin-right: -64px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member {
    margin-left: -5.3333333333vw;
    margin-right: -5.3333333333vw;
  }
}
.l-main__contents .p-company-specialist__member-item {
  background: #fff;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  text-align: center;
  padding: 4.2666666667vw 0;
  width: 48%;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-company-specialist__member-item {
    width: 18.25%;
    padding: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member-item {
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member-item:nth-child(odd) {
    margin-right: 4%;
  }
}
.l-main__contents .p-company-specialist__member-ph {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member-ph {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-company-specialist__member-ph {
    flex-direction: column;
    margin-bottom: 16px;
  }
}
.l-main__contents .p-company-specialist__member-ph img {
  display: block;
  margin: 0 auto 16px;
  width: 49.75%;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member-ph img {
    margin-bottom: 2.6666666667vw;
  }
}
.l-main__contents .p-company-specialist__member-cap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member-cap {
    font-size: 2.6666666667vw;
  }
}
.l-main__contents .p-company-specialist__member-en {
  color: #0062a6;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member-en {
    font-size: 3.4666666667vw;
  }
}
.l-main__contents .p-company-specialist__member-ttl {
  background: #0062a6;
  color: #fff;
  font-size: 1.2rem;
  padding: 1em 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member-ttl {
    font-size: 3.4666666667vw;
  }
}
.l-main__contents .p-company-specialist__member-txt {
  line-height: 1.6;
  font-size: 1.2rem;
  padding: 1.6rem 1.6rem 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company-specialist__member-txt {
    font-size: 3.2vw;
    padding: 1em 1em 0;
  }
}
.l-main__contents .p-company__feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-main__contents .p-company__feature-item {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company__feature-item {
    width: 46%;
  }
  .l-main__contents .p-company__feature-item:nth-child(1), .l-main__contents .p-company__feature-item:nth-child(2) {
    margin-bottom: 8%;
  }
}
.l-main__contents .p-company__feature-icon {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company__feature-icon {
    width: 60%;
  }
}
.l-main__contents .p-company__feature-txt {
  line-height: 1.6;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-company__feature-txt {
    margin-top: 1em;
    font-size: 3.4666666667vw;
  }
}

/*========== p-technology.scss ==========*/
.l-main__contents .p-technology-intro {
  display: flex;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-intro {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-intro {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-intro__img {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-intro__img {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-intro__txt {
    width: 55%;
  }
}
.l-main__contents .p-technology-head {
  margin-left: -5.3333333333vw;
  margin-right: -5.3333333333vw;
  padding: 8.5333333333vw 5.3333333333vw 5.3333333333vw;
  border-radius: 15px 15px 0 0;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-head {
    margin-left: -64px;
    margin-right: -64px;
    padding: 64px 64px 48px;
    border-radius: 2.5vw 2.5vw 0 0;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-technology-head {
    border-radius: 30px 30px 0 0;
  }
}
.l-main__contents .p-technology-head--bl {
  background: #caeeff;
}
.l-main__contents .p-technology-head--gr {
  background: #d8eada;
}
.l-main__contents .p-technology-head__wrap {
  padding-top: 0 !important;
}
.l-main__contents .p-technology-head__ttl {
  display: inline-block;
  font-weight: 500;
  color: #0062a6;
  line-height: 1.3;
  border-bottom: 1px solid #0062a6;
  font-size: 3.4rem;
  padding-bottom: 0.5em;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-head__ttl {
    font-size: 5.3333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.l-main__contents .p-technology-head__ttl--gr {
  color: #2b875a;
  border-bottom-color: #2b875a;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-head__ttl--short {
    width: 52.5%;
  }
}
.l-main__contents .p-technology-head__txt {
  color: #0062a6;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-head__txt {
    line-height: 1.9;
    font-size: 2rem;
  }
}
.l-main__contents .p-technology-head__txt--gr {
  color: #2b875a;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-head__txt--short {
    width: 52.5%;
  }
}
.l-main__contents .p-technology__ttl {
  font-weight: 500;
  color: #0062a6;
  line-height: 1.3;
  font-size: 2rem;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology__ttl {
    font-size: 4vw;
    margin-top: 2.6666666667vw;
  }
}
.l-main__contents .p-technology-ex {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-ex {
    padding: 12.8vw 0 0;
    margin-top: 25.6vw;
  }
}
.l-main__contents .p-technology-ex__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-ex__items {
    gap: 10%;
  }
}
.l-main__contents .p-technology-ex__items-item {
  width: 45%;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-ex__items-item {
    width: 26.6666%;
    max-width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-ex__items-item {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-ex__items-item:nth-child(even) {
    margin-left: 4.2666666667vw;
  }
}
.l-main__contents .p-technology-ex__items-ttl {
  margin-top: 0;
  color: #2b875a;
  text-align: center;
  padding: 0.5em 0;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-ex__items-ttl {
    font-size: 4vw;
  }
}
.l-main__contents .p-technology-ex__items-txt {
  line-height: 1.6;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-ex__items-txt {
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-ex__items.x4 .p-technology-ex__items-item {
    width: 23.5%;
  }
  .l-main__contents .p-technology-ex__items.x4 {
    gap: 2%;
  }
}
.l-main__contents .p-technology-data__img {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-data__img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 28px;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-data__img-item {
    width: 48%;
    margin: 4% 0 0;
  }
  .l-main__contents .p-technology-data__img-item:nth-child(odd) {
    margin-right: 4%;
  }
  .l-main__contents .p-technology-data__img-item:nth-child(1), .l-main__contents .p-technology-data__img-item:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.l-main__contents .p-technology-col:not(:last-child) {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-col:not(:last-child) {
    margin-bottom: 4.2666666667vw;
  }
}
.l-main__contents .p-technology-col__inner {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-col__inner {
    padding-top: 12.8vw;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-col__img {
    margin-bottom: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-col__img {
    width: 40%;
  }
}
.l-main__contents .p-technology-col__ttl {
  margin-bottom: 1.2em;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-technology-col__ttl {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-col__txt {
    width: 55%;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-detail {
    width: 52.5%;
    padding-top: 16px;
  }
}
.l-main__contents .p-technology-detail__ttl {
  color: #0062a6;
  display: inline-block;
  line-height: 1.6;
  margin-top: 5.3333333333vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-detail__ttl {
    font-size: 3rem;
    margin-top: 28px;
  }
}
.l-main__contents .p-technology-detail__ttl__uLine {
  background: linear-gradient(transparent 70%, #bdd6e8 80%);
}
.l-main__contents .p-technology-detail__ttl--gr {
  color: #2b875a;
}
.l-main__contents .p-technology-detail__ttl--gr .p-technology-detail__ttl__uLine {
  background: linear-gradient(transparent 70%, #d4ecb8 80%);
}
.l-main__contents .p-technology-detail__txt {
  line-height: 1.8;
  margin-top: 1em !important;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-detail__txt {
    line-height: 2.75;
    font-size: 1.6rem;
  }
}
.l-main__contents .p-technology-img {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-img {
    width: 35%;
    position: absolute;
    right: 64px;
    bottom: 64px;
    max-width: 400px;
  }
}
.l-main__contents .p-technology-img img {
  border-radius: 4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-img img {
    border-radius: 20px;
  }
}
.l-main__contents .p-technology-img img:not(:last-child) {
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-technology-img img:not(:last-child) {
    margin-bottom: 48px;
  }
}

/*========== p-pfacts.scss ==========*/
.l-main__contents .p-pfacts-intro__ttl {
  color: #2b875a;
  font-weight: 700;
  font-size: 2.5rem;
}
.l-main__contents .p-pfacts-intro__mark {
  width: 2.5em;
  vertical-align: middle;
}
.l-main__contents .p-pfacts-obj {
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-obj {
    padding-bottom: 21.3333333333vw;
  }
}
.l-main__contents .p-pfacts-obj__img {
  margin: 0 auto;
  max-width: 907px;
}
.l-main__contents .p-pfacts-step {
  background: #d8eada;
  margin-top: -128px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-step {
    margin-top: -17.0666666667vw;
    padding-bottom: 21.3333333333vw;
  }
}
.l-main__contents .p-pfacts-step__phase {
  position: relative;
}
.l-main__contents .p-pfacts-step__phase:before, .l-main__contents .p-pfacts-step__phase:after {
  content: "";
  display: block;
  position: absolute;
  left: 1.5em;
  width: 1px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-step__phase:before, .l-main__contents .p-pfacts-step__phase:after {
    left: 4.2666666667vw;
  }
}
.l-main__contents .p-pfacts-step__phase:before {
  top: 0;
  height: calc(100% - 2.5em);
  background: #000;
}
.l-main__contents .p-pfacts-step__phase:after {
  bottom: 0;
  height: 2.5em;
  background: url("../images/p-facts/step_phase_after.svg") center top repeat-y;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-step__phase-item {
    display: flex;
    flex-wrap: wrap;
  }
}
.l-main__contents .p-pfacts-step__phase-item:not(:last-child) {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-pfacts-step__phase-item:not(:last-child) {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-step__phase-item:not(:last-child) {
    margin-bottom: 8.5333333333vw;
  }
}
.l-main__contents .p-pfacts-step__ttl {
  position: relative;
  width: 14.75vw;
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-pfacts-step__ttl {
    width: 177px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-step__ttl {
    width: 34.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.l-main__contents .p-pfacts-step__items {
  margin-top: 0;
  padding-left: 12vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-step__items {
    width: calc(100% - 14.75vw);
    padding-left: 3.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-pfacts-step__items {
    width: calc(100% - 177px);
    padding-left: 40px;
  }
}
.l-main__contents .p-pfacts-step__items-item {
  background: #fff;
  border-radius: 10px;
  padding: 0.5em;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-step__items-item {
    line-height: 1.4;
  }
}
.l-main__contents .p-pfacts-step__items-item:not(:last-child) {
  margin-bottom: 1em;
}
.l-main__contents .p-pfacts-step__items-item--arrow {
  margin-left: 3.5em;
  position: relative;
  color: #2b875a;
}
.l-main__contents .p-pfacts-step__items-item--arrow:before {
  content: "";
  display: block;
  position: absolute;
  left: -2.5em;
  top: -1em;
  width: 3em;
  height: 2.5em;
  background: url("../images/p-facts/step_arrow.svg") center no-repeat;
  background-size: contain;
}
.l-main__contents .p-pfacts-why {
  margin-top: -128px;
  margin-bottom: 96px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-why {
    padding-top: 8.5333333333vw;
    margin-top: -17.0666666667vw;
    margin-bottom: 17.0666666667vw;
  }
}
.l-main__contents .p-pfacts-why__inner {
  margin: 96px -64px 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-why__inner {
    margin: 17.0666666667vw -5.3333333333vw 0;
  }
}
.l-main__contents .p-pfacts-why__sec {
  width: 50%;
  position: relative;
}
.l-main__contents .p-pfacts-why__sec--usual {
  background: #e2e2e2;
  border-right: 1px solid #000;
  border-radius: 0 0 0 15px;
}
.l-main__contents .p-pfacts-why__sec--usual .p-pfacts-why__ttl {
  background: #e2e2e2;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-why__sec--usual .p-pfacts-why__items-item {
    padding: 1em 2em 1em 2em;
  }
}
.l-main__contents .p-pfacts-why__sec--usual .p-pfacts-why__items-item:before {
  background: #000;
}
.l-main__contents .p-pfacts-why__sec--usual .p-pfacts-why__items-item:after {
  content: "";
  display: block;
  position: absolute;
  right: -2.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 6em;
  height: 1.75em;
  background: url("../images/p-facts/why_arrow.svg") center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-why__sec--usual .p-pfacts-why__items-item:after {
    width: 3.5em;
    right: -1.5em;
  }
}
.l-main__contents .p-pfacts-why__sec--sol {
  background: #d8eada;
  border-radius: 0 0 15px 0;
}
.l-main__contents .p-pfacts-why__sec--sol .p-pfacts-why__ttl {
  background: #2b875a;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-why__sec--sol .p-pfacts-why__items-item {
    padding: 1em 1em 1em 2.5em;
  }
}
.l-main__contents .p-pfacts-why__sec--sol .p-pfacts-why__items-item:before {
  background: #2b875a;
}
.l-main__contents .p-pfacts-why__ttl {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2.8em;
  width: 18em;
  height: 2.8em;
  line-height: 2.8em;
  border: 1px solid #000;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-why__ttl {
    left: -1px;
    transform: translateX(0);
    width: calc(100% + 2px);
    font-size: 4vw;
  }
}
.l-main__contents .p-pfacts-why__items {
  border-top: 1px solid #000;
  margin-top: 0 !important;
}
.l-main__contents .p-pfacts-why__items-item {
  position: relative;
  line-height: 1.4;
  padding: 1.5em 5em;
}
.l-main__contents .p-pfacts-why__items-item:not(:last-child) {
  border-bottom: 1px solid #000;
}
.l-main__contents .p-pfacts-why__items-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 1.8em;
  left: 3.5em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-why__items-item:before {
    top: 1.2em;
    left: 1em;
  }
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-scheme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 96px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-scheme {
    padding-top: 8.5333333333vw;
    margin-bottom: 17.0666666667vw;
  }
}
.l-main__contents .p-pfacts-scheme__txt {
  margin-bottom: 28px;
}
.l-main__contents .p-pfacts-scheme__ttl {
  color: #2b875a;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-scheme__ttl {
    font-size: 4.2666666667vw;
    line-height: 1.4;
  }
}
.l-main__contents .p-pfacts-scheme__sec:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-scheme__sec:not(:last-child) {
    margin-bottom: 12.8vw;
  }
}
.l-main__contents .p-pfacts-ex {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-ex {
    padding: 12.8vw 0 0;
  }
}
.l-main__contents .p-pfacts-ex__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-ex__items {
    gap: 10%;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-ex__items {
    margin-top: 0 !important;
  }
}
.l-main__contents .p-pfacts-ex__items-item {
  width: 45%;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-ex__items-item {
    width: 26.6666%;
    max-width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-ex__items-item {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-ex__items-item:nth-child(even) {
    margin-left: 4.2666666667vw;
  }
}
.l-main__contents .p-pfacts-ex__items-ttl {
  color: #2b875a;
  text-align: center;
  padding: 1em 0;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-ex__items-ttl {
    padding: 0.5em 0;
    font-size: 4vw;
  }
}
.l-main__contents .p-pfacts-ex__items-txt {
  line-height: 1.6;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-main__contents .p-pfacts-ex__items-txt {
    font-size: 3.4666666667vw;
  }
}
.l-main__contents .p-pfacts-contact {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.l-main__contents .p-pfacts-map {
  height: 500px;
  margin-top: 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-map {
    margin-top: 32px;
    height: 600px;
  }
}
.l-main__contents .p-pfacts-map__label {
  display: flex;
}
.l-main__contents .p-pfacts-map__label-item {
  position: relative;
  padding-left: 1.5em;
  margin-right: 1em;
}
.l-main__contents .p-pfacts-map__label-item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 2em;
  background: url("../images/p-facts/marker_open.png") center no-repeat;
  background-size: contain;
}
.l-main__contents .p-pfacts-map__label-item--finished:before {
  background-image: url("../images/p-facts/marker_close.png");
}
.l-main__contents .p-pfacts-place {
  background: #fff;
  border-radius: 8px;
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-place {
    margin-top: 24px;
  }
}
.l-main__contents .p-pfacts-placeWrap:not(:first-child) {
  margin-top: 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-placeWrap:not(:first-child) {
    margin-top: 40px;
  }
}
.l-main__contents .p-pfacts-place__toggle {
  position: relative;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.3;
  padding: 3.7333333333vw 3em 3.7333333333vw 3.7333333333vw;
  padding-right: 3em;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-place__toggle {
    padding: 16px 3em 16px 16px;
  }
}
.l-main__contents .p-pfacts-place__toggle:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  background: url("../images/icon_plus.svg") center no-repeat;
  background-size: contain;
  right: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-place__toggle:after {
    right: 16px;
  }
}
.l-main__contents .p-pfacts-place__toggle.open:after {
  background-image: url("../images/icon_minus.svg");
}
.l-main__contents .p-pfacts-place__toggled {
  padding: 0 3.7333333333vw 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-place__toggled {
    padding: 0 16px 16px;
  }
}
.l-main__contents .p-pfacts-place__toMap {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.75em;
}
.l-main__contents .p-pfacts-collect {
  padding: 8.5333333333vw 0;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-collect {
    padding: 5.3333333333vw 0;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-pfacts-collect {
    padding: 64px 0;
  }
}
.l-main__contents .p-pfacts-collect__ttl {
  position: relative;
  padding-left: 1.5em;
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .l-main__contents .p-pfacts-collect__ttl {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .l-main__contents .p-pfacts-collect__ttl {
    font-size: 4rem;
  }
}
.l-main__contents .p-pfacts-collect__ttl:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/p-facts/marker_open.png") center no-repeat;
  background-size: contain;
  width: 1em;
  height: 2em;
}
.l-main__contents .p-pfacts-collect__ttl--finished:before {
  background-image: url("../images/p-facts/marker_close.png");
}

/*========== p-bn.scss ==========*/
@media screen and (min-width: 768px) {
  .p-bn__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-bn__items-item {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .p-bn__items-item:not(:last-child) {
    margin-bottom: 2.6666666667vw;
  }
}
.p-bn__items-item img {
  border: 1px solid #000;
  border-radius: 2.5vw;
}
@media screen and (min-width: 1201px) {
  .p-bn__items-item img {
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-bn__items-item img {
    border-radius: 4vw;
  }
}

/*========== p-about.scss ==========*/
.p-about {
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-about {
    padding-top: 64px;
  }
}
.p-about__inner {
  position: relative;
  padding: 10.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding: 5.3333333333vw 0 10.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-about__inner {
    padding: 64px 0 128px;
  }
}
.p-about__inner:before, .p-about__inner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-about__inner:before {
  left: 0;
  background-image: url("../images/top/about_bg_l.png");
  background-position: left center;
  width: 18.75vw;
}
@media screen and (min-width: 1201px) {
  .p-about__inner:before {
    width: 225px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__inner:before {
    width: 18.6666666667vw;
    background-position: left 42vw;
    left: -5.3333333333vw;
  }
}
.p-about__inner:after {
  right: 0;
  background-image: url("../images/top/about_bg_r.png");
  background-position: right center;
  width: 20.8333333333vw;
}
@media screen and (min-width: 1201px) {
  .p-about__inner:after {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__inner:after {
    width: 21.3333333333vw;
    background-position: right 42vw;
    right: -5.3333333333vw;
  }
}
.p-about__ttl {
  text-align: center;
  color: #2b875a;
  line-height: 1.5;
  font-size: 4.3rem;
  margin-bottom: 32px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about__ttl {
    font-size: 5.8666666667vw;
    margin-bottom: 1.2em;
  }
}
.p-about__txt {
  text-align: center;
  line-height: 2.4;
  font-size: 1.7rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about__txt {
    line-height: 2;
    font-size: 4vw;
  }
}
.p-about__txt + .p-about__txt {
  margin-top: 2em;
}

/*========== p-topics.scss ==========*/
.p-topics {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-topics {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-topics {
    margin-bottom: 32px;
  }
}
.p-topics__list {
  position: relative;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .p-topics__list {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-topics__list {
    margin-top: 64px;
  }
}
.p-topics__list .slick-prev {
  display: none !important;
}
.p-topics__list .slick-next {
  position: absolute;
  text-indent: -9999px;
  background: url("../images/icon_arrow_line.svg") center no-repeat;
  background-size: contain;
  top: -4vw;
  right: 1.3333333333vw;
  width: 8.3333333333vw;
  height: 1vw;
}
@media screen and (min-width: 1201px) {
  .p-topics__list .slick-next {
    top: -48px;
    right: 16px;
    width: 100px;
    height: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__list .slick-next {
    top: -6.4vw;
    right: 4.2666666667vw;
    width: 13.3333333333vw;
    height: 3.2vw;
  }
}
.p-topics__item {
  display: inline-block;
  width: 240px;
  margin-right: 32px;
}
.p-topics__ph {
  border: 1px solid #000;
  border-radius: 0.8333333333vw;
}
@media screen and (min-width: 1201px) {
  .p-topics__ph {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__ph {
    border-radius: 2.6666666667vw;
  }
}
.p-topics__txt {
  line-height: 1.6;
  margin: 16px 0 8px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-topics__txt {
    font-size: 3.4666666667vw;
  }
}
.p-topics__date {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-topics__date {
    font-size: 2.6666666667vw;
  }
}
.p-topics__date:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 1.15em;
  background: #2b875a;
}

/*========== p-products.scss ==========*/
.p-products {
  position: relative;
  padding: 8vw 0 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-products {
    padding: 48px 0 60px;
  }
}
.p-products__list {
  position: relative;
}
.p-products__list .slick-prev {
  display: none !important;
}
.p-products__list .slick-next {
  position: absolute;
  text-indent: -9999px;
  background: url("../images/icon_arrow_line.svg") center no-repeat;
  background-size: contain;
  top: -6.6666666667vw;
  right: 2.6666666667vw;
  width: 8.3333333333vw;
  height: 1vw;
}
@media screen and (min-width: 1201px) {
  .p-products__list .slick-next {
    top: -80px;
    right: 32px;
    width: 100px;
    height: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-products__list .slick-next {
    top: -4.2666666667vw;
    right: 4.2666666667vw;
    width: 13.3333333333vw;
    height: 3.2vw;
  }
}
.p-products__item {
  width: 16vw;
  margin-right: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-products__item {
    width: 180px;
    margin-right: 32px;
  }
}
.p-products__cap {
  text-align: center;
  padding-top: 1em;
}
.p-products__btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.p-products-pd {
  padding: 0;
}
.p-products-pd__items {
  display: flex;
  flex-wrap: wrap;
}
.p-products-pd__items-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-products-pd__items-list {
    width: 23.5%;
    margin-bottom: 2%;
  }
  .p-products-pd__items-list:not(:nth-child(4n)) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 767px) {
  .p-products-pd__items-list {
    width: 48.5%;
    margin-bottom: 5.3333333333vw;
  }
  .p-products-pd__items-list:nth-child(odd) {
    margin-right: 3%;
  }
}
.p-products-pd__thumb {
  border-radius: 0.8333333333vw;
}
@media screen and (min-width: 1201px) {
  .p-products-pd__thumb {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-products-pd__thumb {
    border-radius: 2.6666666667vw;
  }
}
.p-products-pd__name {
  display: block;
  font-weight: 500;
  padding: 0.6em 0;
  line-height: 1.3;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-products-pd__name {
    font-size: 3.4666666667vw;
  }
}
.p-products-pd__btns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-products-pd__btns-btn {
  width: 49%;
  background: #cfb48e;
  padding: 1em 0 1em 3em;
  position: relative;
  font-weight: 500;
  font-size: 1vw;
}
@media screen and (min-width: 1201px) {
  .p-products-pd__btns-btn {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-products-pd__btns-btn {
    font-size: 2.4vw;
    padding-left: 1em;
  }
}
.p-products-pd__btns-btn:after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url("../images/icon_arrow_bk.svg") right center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-products-pd__btns-btn:after {
    right: 0.7em;
  }
}
.p-products-pd__btns-btn--blank {
  background: #000;
  color: #fff;
  margin-left: 2%;
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  .p-products-pd__btns-btn--blank {
    padding-left: 0.5em;
  }
}
.p-products-pd__btns-btn--blank:after {
  background-image: url("../images/icon_link_wh.svg");
}
.p-products-pfacts__ttl {
  color: #000;
  position: relative;
  display: inline-block;
  padding-left: 2.5em;
}
.p-products-pfacts__ttl:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 1.25em;
  background: url("../images/p-facts/head_obj.svg") left center no-repeat;
  background-size: contain;
}
.p-products-pfacts__txt {
  line-height: 1.8;
}
.p-products-brand {
  padding: 5.3333333333vw 0 4vw;
}
@media screen and (min-width: 1201px) {
  .p-products-brand {
    padding: 64px 0 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-products-brand {
    padding: 8.5333333333vw 0;
  }
}
.p-products-brand__txt {
  margin-bottom: 3em;
  line-height: 1.6;
}
.p-products-brand__items {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-products-brand__items {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-products-brand__items-list {
    width: 22.9%;
    margin-bottom: 2.8%;
  }
  .p-products-brand__items-list:not(:nth-child(4n)) {
    margin-right: 2.8%;
  }
}
@media screen and (max-width: 767px) {
  .p-products-brand__items-list {
    width: 47.435%;
    margin-bottom: 5.3333333333vw;
  }
}
.p-products-brand__cap {
  display: inline-block;
  position: relative;
  margin-top: 0.5em;
  font-weight: 500;
  padding-right: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-products-brand__cap {
    font-size: 3.2vw;
  }
}
.p-products-brand__cap:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url("../images/icon_link_bk.svg") center no-repeat;
  background-size: contain;
}
.p-products-detail {
  line-height: 2.125;
}
.p-products-detail .forPfacts {
  position: relative;
  padding-left: 2.5em;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.p-products-detail .forPfacts:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 1em;
  background: url("../images/p-facts/head_obj.svg") left center no-repeat;
  background-size: contain;
}
.p-products-detail .forName {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1em;
  font-size: 6vw;
}
@media screen and (min-width: 768px) {
  .p-products-detail .forName {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-products-detail .forName {
    font-size: 40px;
  }
}
.p-products-detail .forPrice {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .p-products-detail .forPrice {
    margin-bottom: 5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-products-detail .forPrice {
    margin-bottom: 60px;
  }
}
.p-products-detail .forPrice .yen {
  font-weight: 700;
  font-size: 1.5em;
}
.p-products-detail .forSpec .ttl {
  font-weight: 700;
  float: left;
  clear: both;
  width: 6em;
  margin-bottom: 1em;
}
.p-products-detail .forSpec .txt {
  margin-left: 6em;
  margin-bottom: 1em;
}
.p-products-detail .forDetail {
  border-bottom: 1px solid #dddddd;
  margin: 6.6666666667vw 0 8vw;
}
@media screen and (min-width: 768px) {
  .p-products-detail .forDetail {
    margin: 4.1666666667vw 0 5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-products-detail .forDetail {
    margin: 50px 0 60px;
  }
}
.p-products-detail .forDetail .toggle {
  font-weight: 700;
  padding: 1em 0;
  position: relative;
  border-top: 1px solid #dddddd;
}
.p-products-detail .forDetail .toggle:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/icon_plus.svg") center no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
}
.p-products-detail .forDetail .toggle.open:after {
  background-image: url("../images/icon_minus.svg");
}
.p-products-detail .forDetail .toggled {
  padding-bottom: 1em;
}
.p-products-detail .forBtn:after {
  background-image: url("../images/icon_link_wh.svg");
  width: 1em;
  height: 1em;
}
.p-products-detail .forMovie {
  display: block;
  position: relative;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .p-products-detail .forMovie {
    margin-bottom: 2.3255813953vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-products-detail .forMovie {
    margin-bottom: 30px;
  }
}
.p-products-detail .forMovie:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../images/icon_play.svg") center no-repeat;
  background-size: contain;
  pointer-events: none;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-products-detail .forMovie:after {
    width: 7.7519379845vw;
    height: 7.7519379845vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-products-detail .forMovie:after {
    width: 100px;
    height: 100px;
  }
}

.p-slider-03_thumbnail {
  margin-right: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-slider-03_thumbnail {
    margin-right: -0.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-slider-03_thumbnail {
    margin-right: -10px;
  }
}
.p-slider-03_thumbnail .slick-track {
  margin: 0;
  transform: unset !important;
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
}
.p-slider-03_thumbnail .slick-slide {
  float: none;
  width: 12.5% !important;
}
@media screen and (max-width: 767px) {
  .p-slider-03_thumbnail .slick-slide {
    width: 20% !important;
  }
}
.p-slider-03_thumbnail .slick-slide.thumbnail-img {
  cursor: pointer;
  padding-right: 2.6666666667vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-slider-03_thumbnail .slick-slide.thumbnail-img {
    padding-right: 0.8333333333vw;
    margin-top: 0.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-slider-03_thumbnail .slick-slide.thumbnail-img {
    padding-right: 10px;
    margin-top: 10px;
  }
}

/*========== p-brand.scss ==========*/
.p-brand {
  padding: 10.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .p-brand {
    padding: 64px 0;
  }
}
.p-brand__slide01 {
  margin: 6.4vw 0 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-brand__slide01 {
    margin: 2.6666666667vw 0 1.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-brand__slide01 {
    margin: 32px 0 16px;
  }
}
.p-brand__item {
  width: 200px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-brand__item {
    width: 21.3333333333vw;
    margin-right: 2.1333333333vw;
  }
}

/*========== p-why.scss ==========*/
.p-why {
  position: relative;
  background: url("../images/top/why_bg.png") center bottom no-repeat;
  background-size: cover;
  padding: 16vw 0 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-why {
    padding: 128px 0 64px;
  }
}
.p-why__head {
  color: #fff;
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-why__head {
    padding-left: 64px;
    padding-bottom: 96px;
  }
}
.p-why__ttl {
  line-height: 1.54;
  margin-bottom: 0.5em;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);
  font-size: 5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-why__ttl {
    font-size: 6.9333333333vw;
  }
}
.p-why__txt {
  line-height: 2;
  letter-spacing: 0.1em;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-why__txt {
    line-height: 2.235;
    text-align: justify;
    font-size: 1.7rem;
    width: 23em;
  }
}
@media screen and (min-width: 768px) {
  .p-why__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.p-why__menu-item {
  position: relative;
  border: 1px solid #000;
  border-radius: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-why__menu-item {
    width: 49%;
    border-radius: 2.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-why__menu-item {
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-why__menu-item:not(:last-child) {
    margin-bottom: 10.6666666667vw;
  }
}
.p-why__btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

/*========== p-sns.scss ==========*/
.p-sns {
  padding: 10.6666666667vw 0 16vw;
}
@media screen and (min-width: 768px) {
  .p-sns {
    padding: 64px 0 80px;
  }
}
.p-sns__insta {
  border-bottom: 1px solid #959595;
  padding: 5.3333333333vw 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-sns__insta {
    display: flex;
    flex-wrap: wrap;
    padding: 2.6666666667vw 0 5.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-sns__insta {
    padding: 32px 0 64px;
  }
}
@media screen and (min-width: 768px) {
  .p-sns__insta-head {
    width: 25.4%;
  }
}
.p-sns__insta-btn {
  justify-content: flex-start;
  padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-sns__insta-embed {
    margin-top: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-sns__insta-embed {
    width: 74.6%;
  }
}
.p-sns__yt {
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .p-sns__yt {
    width: 55.5%;
    border-right: 1px solid #959595;
    padding-top: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-sns__yt {
    padding-top: 64px;
    padding-right: 64px;
  }
}
.p-sns__yt-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-sns__yt-items {
    margin-top: 4.2666666667vw;
  }
}
.p-sns__yt-item {
  width: 45.5%;
}
@media screen and (max-width: 767px) {
  .p-sns__yt-item {
    width: 48%;
  }
}
.p-sns__yt-item:nth-child(odd) {
  margin-right: 9%;
}
@media screen and (max-width: 767px) {
  .p-sns__yt-item:nth-child(odd) {
    margin-right: 4%;
  }
}
.p-sns__yt-item:nth-child(1), .p-sns__yt-item:nth-child(2) {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .p-sns__yt-item:nth-child(1), .p-sns__yt-item:nth-child(2) {
    margin-bottom: 4.2666666667vw;
  }
}
.p-sns__yt-cap {
  line-height: 1.6;
  margin-top: 1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sns__yt-cap {
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-sns__X {
    width: 44.5%;
    padding-top: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-sns__X {
    padding-top: 64px;
    padding-left: 64px;
  }
}
.p-sns__X-embed {
  background: #fff;
  margin-top: 32px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .p-sns__X-embed {
    margin-top: 4.2666666667vw;
    height: 64vw;
  }
}
@media screen and (min-width: 768px) {
  .p-sns__wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-sns__ttl {
  position: relative;
  padding-left: 1.5em;
  font-size: 2.9rem;
  margin-bottom: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-sns__ttl {
    font-size: 5.8666666667vw;
  }
}
.p-sns__ttl:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-sns__ttl-insta:before {
  background-image: url("../images/icon_insta_bk.svg");
}
.p-sns__ttl-yt:before {
  background-image: url("../images/icon_yt_bk.svg");
}
.p-sns__ttl-X:before {
  background-image: url("../images/icon_x_bk.svg");
}

/*========== p-news.scss ==========*/
.p-news__inner {
  padding: 10.6666666667vw 0 16vw;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    padding: 64px 0 80px;
    max-width: 800px;
  }
}
.p-news__list {
  border-top: 1px solid #000;
  margin: 64px 0;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    margin: 7.4666666667vw 0;
  }
}
.p-news__list-item {
  border-bottom: 1px solid #000;
}
.p-news__list-item a {
  padding: 1em 0;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-news__list-item a {
    flex-wrap: wrap;
    padding: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-news__list-item a {
    flex-direction: column;
  }
}
.p-news__date {
  font-size: 1.2rem;
  padding: 0.1em 0;
}
@media screen and (min-width: 768px) {
  .p-news__date {
    width: 8em;
  }
}
@media screen and (max-width: 767px) {
  .p-news__date {
    margin-bottom: 0.5em;
    font-size: 2.6666666667vw;
  }
}
.p-news__txt {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-news__txt {
    width: calc(100% - 8em);
  }
}
@media screen and (max-width: 767px) {
  .p-news__txt {
    font-size: 3.4666666667vw;
    line-height: 1.3;
  }
}
.p-news-index {
  margin-bottom: 0;
  padding: 0;
}
.p-news-index__nav {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-news-index__nav {
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-news-index__nav {
    flex-direction: column;
  }
}
.p-news-index__nav-cat {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-news-index__nav-cat {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-news-index__nav-cat-item {
    margin: 0 1em 1em;
  }
}
@media screen and (min-width: 768px) {
  .p-news-index__nav-cat-item:not(:last-child) {
    margin-right: 1em;
  }
}
.p-news-index__nav-cat-item a {
  position: relative;
}
.p-news-index__nav-cat-item a.current {
  font-weight: 700;
  color: #cfb48e;
}
.p-news-index__nav-cat-item a.current:after {
  content: "";
  display: block;
  margin: 0.3em 0 0;
  height: 2px;
  background: #cfb48e;
}
.p-news-index__nav-select {
  background: #fff;
  border: 1px solid #000;
  padding: 0.5em 2em 0.5em 0.5em;
}
.p-news-index__nav-selectWrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news-index__nav-selectWrap {
    margin: 2.6666666667vw auto;
  }
}
.p-news-index__nav-selectWrap:after {
  content: "";
  display: block;
  position: absolute;
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 0.5em;
  height: 0.5em;
  background: url("../images/icon_arrow_bk.svg") center no-repeat;
  background-size: contain;
}
.p-news-index__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-news-index__list-item {
    width: 23.5%;
    margin-bottom: 2.5vw;
  }
  .p-news-index__list-item:not(:nth-child(4n)) {
    margin-right: 2%;
  }
}
@media screen and (min-width: 1201px) {
  .p-news-index__list-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-index__list-item {
    width: 48.5%;
    margin-bottom: 5.3333333333vw;
  }
  .p-news-index__list-item:nth-child(odd) {
    margin-right: 3%;
  }
}
.p-news-index__list-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.75em 0 0.5em;
  font-size: 1.2rem;
}
.p-news-index__list-thumb img {
  border-radius: 0.8333333333vw;
}
@media screen and (min-width: 1201px) {
  .p-news-index__list-thumb img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-index__list-thumb img {
    border-radius: 2.6666666667vw;
  }
}
.p-news-index__list-cat {
  background: #cfb48e;
  padding: 0.4em 0.8em;
}
.p-news-index__list-ttl {
  line-height: 1.3;
  font-size: 1.4rem;
}
.p-news-index__btn {
  cursor: pointer;
  display: block;
  margin: auto;
}
.p-news-index__btn:hover {
  opacity: 0.75;
  transition: all 0.3s ease;
}
.p-news-index__btn:after {
  transform: translateY(-50%) rotate(90deg);
}
.p-news.forDetail .postArea p, .p-news.forDetail .postArea figure, .p-news.forDetail .postArea ul, .p-news.forDetail .postArea ol, .p-news.forDetail .postArea table {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-news.forDetail .postArea p, .p-news.forDetail .postArea figure, .p-news.forDetail .postArea ul, .p-news.forDetail .postArea ol, .p-news.forDetail .postArea table {
    margin-top: 0;
  }
}
.p-news.forDetail .postArea p:first-child, .p-news.forDetail .postArea figure:first-child, .p-news.forDetail .postArea ul:first-child, .p-news.forDetail .postArea ol:first-child, .p-news.forDetail .postArea table:first-child {
  margin-top: 0;
}
.p-news.forDetail .postArea {
  line-height: 2.125;
}
.p-news.forDetail .postArea .forTtl {
  padding-bottom: 1.5em;
}
.p-news.forDetail .postArea .forTtl .cat {
  font-size: 87.5%;
  display: inline-block;
  background-color: #cfb48e;
  line-height: 1;
  padding: 0.5em 0.8em;
}
.p-news.forDetail .postArea .forTtl .ttl {
  margin-top: 0.1em;
  line-height: 1.5;
  display: block;
  font-size: 6vw;
}
@media screen and (min-width: 768px) {
  .p-news.forDetail .postArea .forTtl .ttl {
    font-size: 3.1666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-news.forDetail .postArea .forTtl .ttl {
    font-size: 3.8rem;
  }
}
.p-news.forDetail .postArea .forTtl .ttl-sub {
  margin-top: 0.3em;
  line-height: 1.6;
  display: block;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .p-news.forDetail .postArea .forTtl .ttl-sub {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-news.forDetail .postArea .forTtl .ttl-sub {
    font-size: 2.4rem;
  }
}
.p-news.forDetail .postArea .forTtl .date {
  margin-top: 0.3em;
  display: block;
  color: #666666;
}
.p-news.forDetail .postArea .forSubttl {
  margin-top: 2.5em;
  padding-bottom: 0;
}
.p-news.forDetail .postArea .forTxt {
  margin-top: 2em;
  word-break: break-all;
}
.p-news.forDetail .postArea .forTxt a {
  display: inline-block;
  color: #0062a6;
  position: relative;
  padding-left: 1em;
  font-weight: 700;
}
.p-news.forDetail .postArea .forTxt a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
.p-news.forDetail .postArea .forTxt a.linkIcon {
  padding: 0 1.5em 0 1em;
}
.p-news.forDetail .postArea .forTxt a.linkIcon:after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  background: url("../images/icon_link_bk.svg") center no-repeat;
  background-size: contain;
}
.p-news.forDetail .postArea .forProducts {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .p-news.forDetail .postArea .forProducts {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-news.forDetail .postArea .forProducts {
    margin-top: 60px;
  }
}
.p-news.forDetail .postArea .forProducts .item {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news.forDetail .postArea .forProducts .item {
    width: 27.835%;
    margin: 0 1.546%;
  }
}
@media screen and (max-width: 767px) {
  .p-news.forDetail .postArea .forProducts .item:not(:last-child) {
    margin-bottom: 5.3333333333vw;
  }
}
.p-news.forDetail .postArea .forProducts .item_ph .cap {
  font-weight: 700;
  padding-top: 0.5em;
}
.p-news.forDetail .postArea .forBtn {
  margin-top: 6vw;
}
@includde pc {
  .p-news.forDetail .postArea .forBtn {
    margin-top: 3.75vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-news.forDetail .postArea .forBtn {
    margin-top: 45px;
  }
}
.p-news.forDetail .postArea .forBtn .c-btn-std {
  margin: auto;
}
.p-news.forDetail .postArea .forBtn .c-btn-std.linkPdf:after {
  background-image: url("../images/icon_pdf.svg");
  width: 1.25em;
  height: 1.5em;
}
.p-news.forDetail .postArea .forImg {
  margin-top: 4vw;
}
@includde pc {
  .p-news.forDetail .postArea .forImg {
    margin-top: 2.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-news.forDetail .postArea .forImg {
    margin-top: 30px;
  }
}
.p-news.forDetail .postArea .forImg .cap {
  padding-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-news.forDetail .postArea .forImg .img:not(:last-child) {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-news.forDetail .postArea .forImg {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .p-news.forDetail .postArea .forImg.sizeS .img {
    width: 27.835%;
    margin: 0 1.546%;
  }
  .p-news.forDetail .postArea .forImg.sizeM {
    justify-content: space-between;
  }
  .p-news.forDetail .postArea .forImg.sizeM .img {
    width: 48.4536%;
  }
  .p-news.forDetail .postArea .forImg.sizeL .img {
    width: 79.381%;
  }
  .p-news.forDetail .postArea .forImg.sizeXL .img {
    width: 100%;
  }
}
.p-news.forDetail .postArea .forMessage {
  padding: 1.2em 1.5em;
  background-color: #e6e6e6;
  margin-top: 5.3333333333vw;
}
@includde pc {
  .p-news.forDetail .postArea .forMessage {
    margin-top: 2.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-news.forDetail .postArea .forMessage {
    margin-top: 30px;
  }
}
.p-news.forDetail .postArea .forMessageTtl {
  margin-bottom: 1em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #000;
  font-weight: 700;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .p-news.forDetail .postArea .forMessageTtl {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-news.forDetail .postArea .forMessageTtl {
    font-size: 2rem;
  }
}
.p-news.forDetail .postArea .forTable {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.p-news.forDetail .postArea .forTable .onTtl {
  font-weight: 700;
  padding: 1em;
  background-color: #e6e6e6;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-news.forDetail .postArea .forTable .onTtl {
    display: block;
    width: 100%;
  }
}
.p-news.forDetail .postArea .forTable .onTxt {
  padding: 1em;
  background-color: #fff;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-news.forDetail .postArea .forTable .onTxt {
    display: block;
    width: 100%;
  }
}

.forTable {
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.forTable .onTtl {
  font-weight: 700;
  padding: 1em;
  background-color: #e6e6e6;
  border-top: 1px solid #ccc;
  white-space: nowrap;
}

.forTable .onTtl.collect {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .forTable .onTtl.collect {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .forTable .onTtl {
    display: block;
    width: 100%;
  }
}
.forTable .onTxt {
  padding: 1em;
  background-color: #fff;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .forTable .onTxt {
    display: block;
    width: 100%;
    word-break: break-all;
  }
}
/*========== p-project.scss ==========*/
.p-project-flow {
  position: relative;
}
.p-project-flow:before {
  content: "";
  display: block;
  position: absolute;
  left: 1em;
  width: 1px;
  top: 0;
  height: calc(100% - 1.5em);
  background: #000;
}
@media screen and (max-width: 767px) {
  .p-project-flow:before {
    height: calc(100% - 2.5em);
    left: 0.8em;
  }
}
@media screen and (min-width: 768px) {
  .p-project-flow__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.p-project-flow__item:not(:last-child) {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1201px) {
  .p-project-flow__item:not(:last-child) {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-project-flow__item:not(:last-child) {
    margin-bottom: 6.4vw;
  }
}
.p-project-flow__ttl {
  position: relative;
  width: 24.8333333333vw;
}
@media screen and (min-width: 1201px) {
  .p-project-flow__ttl {
    width: 298px;
  }
}
@media screen and (max-width: 767px) {
  .p-project-flow__ttl {
    width: 58.6666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
.p-project-flow__txt {
  margin-top: 0 !important;
  margin-left: 8.5333333333vw;
}
@media screen and (max-width: 767px) {
  .p-project-flow__txt {
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .p-project-flow__txt {
    margin-left: 3.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-project-flow__txt {
    margin-left: 40px;
  }
}
.p-project-voice__list {
  display: flex;
  flex-wrap: wrap;
}
.p-project-voice__list-item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-project-voice__list-item {
    width: 48.5%;
    margin-bottom: 3%;
  }
  .p-project-voice__list-item:nth-child(odd) {
    margin-right: 3%;
  }
}
@media screen and (min-width: 768px) {
  .p-project-voice__list-item {
    width: 23.5%;
    margin-bottom: 2%;
  }
  .p-project-voice__list-item:not(:nth-child(4n)) {
    margin-right: 2%;
  }
}
.p-project-voice__ttl {
  order: 2;
  padding-top: 0.5em;
  line-height: 1.3;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-project-voice__ttl {
    font-size: 3.4666666667vw;
  }
}
.p-project-voice__ttl-small {
  font-size: 80%;
}
.p-project-voice__movie {
  order: 1;
  position: relative;
}
.p-project-voice__movie:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/icon_play.svg") center no-repeat;
  background-size: contain;
  width: 9.3333333333vw;
  height: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-project-voice__movie:after {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-project-ex__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 2.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-project-ex__inner {
    padding-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-project-ex__img {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-project-ex__img {
    padding: 7.4666666667vw 0;
  }
}
@media screen and (min-width: 768px) {
  .p-project-ex__txt {
    width: 55%;
  }
}
.p-project-ex__txt p {
  line-height: 180%;
}
.p-project-ex__ttl {
  font-weight: 700;
  color: #2b875a;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-project-ex__ttl {
    font-size: 4.2666666667vw;
  }
}
.p-project-ex__ttl:not(:first-child) {
  margin-top: 1.5em;
}

/*========== p-contact.scss ==========*/
.p-contact {
  background: url("../images/main_bg.png") 0 0 repeat;
}
.p-contact__inner {
  padding: 21.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding: 10.6666666667vw 0;
  }
}
@media screen and (min-width: 1201px) {
  .p-contact__inner {
    padding: 128px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__nav {
    margin: 7.4666666667vw 0;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-contact__nav {
    margin-bottom: 32px;
  }
}
.p-contact__nav-item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__nav-item {
    text-align: center;
    line-height: 1.4;
    height: 4em;
    font-size: 4.2666666667vw;
  }
  .p-contact__nav-item:first-child {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__nav-item {
    width: 48.5%;
    border-radius: 32px;
    font-size: 1.5vw;
    height: 8em;
    justify-content: flex-start;
    padding-left: 3em;
  }
}
@media screen and (min-width: 1201px) {
  .p-contact__nav-item {
    font-size: 1.8rem;
    justify-content: center;
    padding-left: 0;
  }
}
.p-contact__intro {
  text-align: center;
  line-height: 180%;
}
@media screen and (min-width: 768px) {
  .p-contact__intro {
    margin-bottom: 5.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-contact__intro {
    margin-bottom: 70px;
  }
}
.p-contact__txt {
  line-height: 180%;
}
.p-contactform {
  padding-top: 12.8vw;
  padding-bottom: 12.8vw;
}
@media screen and (min-width: 768px) {
  .p-contactform {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/*========== p-summary.scss ==========*/
.p-summary {
  color: #fff;
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 1201px) {
  .p-summary {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-summary {
    padding: 8.5333333333vw 0;
  }
}
.p-summary__txt {
  text-align: center;
  line-height: 2.4;
  font-size: 1.125em;
}
.p-summary-list__wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-summary-list__wrap {
    margin-top: 4.2666666667vw;
  }
}
.p-summary__btn {
  font-size: 1.5em;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-summary__btn {
    margin-top: 4.2666666667vw;
  }
}

/*========== p-top.scss ==========*/
.p-top-other {
  padding: 10.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .p-top-other {
    padding: 5.3333333333vw 0;
  }
}
@media screen and (min-width: 1201px) {
  .p-top-other {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-other__inner {
    padding-top: 2.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-top-other__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-top-other__sec {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-top-other__sec:not(:last-child) {
    margin-bottom: 8.5333333333vw;
  }
}
.p-top-other__txt {
  display: flex;
  flex-direction: column;
  gap: 4.2666666667vw;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-top-other__txt {
    gap: 16px;
    margin-bottom: 32px;
  }
}
.p-top-other__ttl {
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-top-other__ttl {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-top-kv__inner {
    width: 100%;
  }
}

/*========== p-special.scss ==========*/
.p-special-ttl {
  font-weight: 700;
  color: #0062a6;
  margin-bottom: 1em;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-special-ttl {
    font-size: 5.3333333333vw;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .p-special__inner {
    max-width: 1020px;
  }
}
.p-special-message {
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 1201px) {
  .p-special-message {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special-message {
    padding: 12.8vw 0 8.5333333333vw;
  }
}
.p-special-message__says {
  position: relative;
  background: #0062A6;
  background: linear-gradient(59deg, rgb(0, 98, 166) 0%, rgb(12, 163, 185) 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 2.5;
  filter: drop-shadow(7px 7px 3px rgba(0, 0, 0, 0.25));
  padding: 4.2666666667vw;
  border-radius: 4vw;
}
@media screen and (min-width: 768px) {
  .p-special-message__says {
    border-radius: 30px;
    font-size: 1.9rem;
    padding: 2.6666666667vw 0;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-message__says {
    padding: 32px 0;
  }
}
.p-special-message__says:before, .p-special-message__says:after {
  content: "";
  display: block;
  position: absolute;
  width: 1.6em;
  height: 1.6em;
  background: url("../images/special/message_says_obj.svg") center no-repeat;
  background-size: contain;
}
.p-special-message__says:before {
  left: 1.5em;
  top: 1em;
}
@media screen and (max-width: 767px) {
  .p-special-message__says:before {
    left: 1em;
  }
}
.p-special-message__says:after {
  right: 1.5em;
  bottom: 1em;
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .p-special-message__says:after {
    right: 1em;
  }
}
.p-special-intro {
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 1201px) {
  .p-special-intro {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special-intro {
    padding: 8.5333333333vw 0;
  }
}
@media screen and (min-width: 768px) {
  .p-special-intro__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-special-intro__txt {
    width: 49.215%;
  }
}
@media screen and (max-width: 767px) {
  .p-special-intro__obj {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-special-intro__obj {
    width: 44.5%;
  }
}
.p-special-from {
  position: relative;
  padding: 5.3333333333vw 0;
  margin-bottom: 128px;
}
@media screen and (min-width: 1201px) {
  .p-special-from {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special-from {
    padding: 8.5333333333vw 0;
  }
}
.p-special-from:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  background: url("../images/main_bg_lbl.png") 0 0 repeat;
  height: 100%;
  width: 71.8333333333vw;
  border-radius: 0 2.5vw 2.5vw 0;
}
@media screen and (min-width: 1201px) {
  .p-special-from:after {
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special-from:after {
    border-radius: 0 4vw 4vw 0;
  }
}
.p-special-from__inner {
  position: relative;
}
.p-special-from__obj {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 14.75vw;
}
@media screen and (min-width: 1201px) {
  .p-special-from__obj {
    width: 177px;
  }
}
@media screen and (max-width: 767px) {
  .p-special-from__obj {
    top: auto;
    bottom: 0;
    transform: translateY(30%);
    width: 26.6666666667vw;
  }
}
.p-special-from__msg {
  text-align: left;
  padding: 4.2666666667vw 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special-from__msg {
    padding: 2.6666666667vw 16vw 2.6666666667vw 8vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-from__msg {
    padding: 32px 192px 32px 96px;
  }
}
@media screen and (min-width: 768px) {
  .p-special-from__msg:after {
    right: 16vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-from__msg:after {
    right: 192px;
  }
}
.p-special-from__txt {
  padding-right: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-special-from__txt {
    padding-right: 24vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-from__txt {
    padding-right: 288px;
  }
}
.p-special-slider {
  width: 100%;
  overflow: hidden;
}
.p-special-slider__item img {
  width: 64vw;
}
@media screen and (min-width: 768px) {
  .p-special-slider__item img {
    width: 25vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-slider__item img {
    width: 300px;
  }
}
.p-special-resonance {
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 1201px) {
  .p-special-resonance {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special-resonance {
    padding: 8.5333333333vw 0;
  }
}
.p-special-resonance__inner {
  display: flex;
  justify-content: center;
  gap: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special-resonance__inner {
    gap: 11.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-resonance__inner {
    gap: 140px;
  }
}
.p-special-resonance__obj {
  margin: auto;
  filter: drop-shadow(7px 7px 3px rgba(0, 0, 0, 0.25));
  width: 37.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special-resonance__obj {
    width: 18.3333333333vw;
    max-width: 220px;
  }
}
.p-special-resonance__ttl {
  background: #0062a6;
  color: #fff;
  border-radius: 1000px;
  text-align: center;
  font-weight: 700;
  padding: 1em 0;
  position: relative;
  margin: -1em 0 1em;
  filter: drop-shadow(7px 7px 3px rgba(0, 0, 0, 0.25));
}
@media screen and (min-width: 768px) {
  .p-special-resonance__ttl {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-resonance__ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-special-resonance__ttl {
    line-height: 1.4;
    padding: 0.6em 0;
    margin-bottom: 1.5em;
  }
}
.p-special-resonance__item {
  display: flex;
  align-items: center;
  color: #0062a6;
  line-height: 1.55;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-special-resonance__item {
    text-align: center;
  }
}
.p-special-resonance__item:before, .p-special-resonance__item:after {
  content: "";
  display: block;
  position: absolute;
  background: #0062a6;
  top: 50%;
  transform: translateY(-50%);
}
.p-special-resonance__item:before {
  border-radius: 50%;
  left: -4vw;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special-resonance__item:before {
    width: 10px;
    height: 10px;
    left: -2.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-resonance__item:before {
    left: -30px;
  }
}
.p-special-resonance__item:after {
  height: 1px;
  width: 5.3333333333vw;
  left: -9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special-resonance__item:after {
    width: 7.5vw;
    left: -9.5833333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-resonance__item:after {
    width: 90px;
    left: -115px;
  }
}
@media screen and (min-width: 768px) {
  .p-special-resonance__item {
    font-size: 1.5833333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-resonance__item {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 768px) {
  .p-special-resonance__item--right {
    justify-content: flex-end;
    text-align: right;
  }
}
.p-special-resonance__item--right:after {
  display: none;
}
.p-special-resonance__item--right:before {
  left: auto;
  right: -4vw;
}
@media screen and (min-width: 768px) {
  .p-special-resonance__item--right:before {
    right: -2.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-resonance__item--right:before {
    right: -30px;
  }
}
.p-special-resonance__item:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .p-special-resonance__item:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.p-special-article {
  border-top: 1px solid #000;
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 1201px) {
  .p-special-article {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special-article {
    padding: 8.5333333333vw 0;
  }
}
.p-special-index__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-special-index__list-item {
    width: 23.5%;
    margin-bottom: 2.5vw;
  }
  .p-special-index__list-item:not(:nth-child(4n)) {
    margin-right: 2%;
  }
}
@media screen and (min-width: 1201px) {
  .p-special-index__list-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-special-index__list-item {
    width: 48.5%;
    margin-bottom: 5.3333333333vw;
  }
  .p-special-index__list-item:nth-child(odd) {
    margin-right: 3%;
  }
}
.p-special-index__list-item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.p-special-index__list-thumb img {
  border-radius: 0.8333333333vw;
}
@media screen and (min-width: 1201px) {
  .p-special-index__list-thumb img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-special-index__list-thumb img {
    border-radius: 2.6666666667vw;
  }
}
.p-special-index__list-cat {
  background: #cfb48e;
  padding: 0.25em 0.5em;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .p-special-index__list-cat {
    font-size: 1.4rem;
  }
}
.p-special-index__list-ttl {
  line-height: 1.3;
  font-weight: 700;
}
.p-special-archive .top_contents {
  padding: 32px 0 64px;
}
@media screen and (max-width: 767px) {
  .p-special-archive .top_contents {
    padding: 5.3333333333vw 0;
  }
}
.p-special-archive .youtube {
  position: relative;
  padding-top: 56.25%;
  height: 0;
}
.p-special-archive .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-special-archive .contents {
  margin-bottom: 12.8vw;
}
@media screen and (min-width: 768px) {
  .p-special-archive .contents {
    margin-bottom: 64px;
  }
}
.p-special-archive .contents_ttl {
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #000;
  line-height: 1.3;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-special-archive .contents_ttl {
    font-size: 5.3333333333vw;
    line-height: 1.3;
  }
}
.p-special-archive .contents_text {
  line-height: 2.375;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-special-archive .contents_text {
    line-height: 2;
    margin-top: 5.3333333333vw;
  }
}
.p-special-archive .contents_text ul li {
  position: relative;
  padding-left: 7em;
}
.p-special-archive .contents_text ul li:not(:last-child) {
  margin-bottom: 2em;
}
.p-special-archive .contents_text ul li.q {
  padding-left: 0;
  font-weight: 700;
}
.p-special-archive .contents_text ul li span {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.2em 0.5em;
  color: #fff;
  font-weight: bold;
  border-radius: 1000px;
}
.p-special-archive .contents_text ul li:nth-child(even) span {
  background-color: #0099cb;
}
.p-special-archive .contents_text ul li:nth-child(odd) span {
  background-color: #e31431;
}
.p-special-archive .contents_img {
  margin: 28px auto 0;
}
@media screen and (max-width: 767px) {
  .p-special-archive .contents_img {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-special-archive .contents_img {
    max-width: 800px;
  }
}
.p-special-archive .contents_img p {
  line-height: 1.4;
  margin-top: 1em;
  font-size: 80%;
}
.p-special-archive .contents_img:not(:last-child) {
  padding-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-special-archive .contents_img:not(:last-child) {
    padding-bottom: 5.3333333333vw;
  }
}
.p-special-archive .contents .c-inner {
  margin: 28px auto 0;
}
@media screen and (max-width: 767px) {
  .p-special-archive .contents .c-inner {
    margin-top: 5.3333333333vw;
  }
}
.p-special-archive .bnr_youtube {
  margin: 0 auto;
  width: 65%;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .p-special-archive .bnr_youtube {
    width: 100%;
  }
}

/*========== p-expo.scss ==========*/
.p-expo-bg {
  position: relative;
  padding: 12.8vw 0;
}
@media screen and (min-width: 768px) {
  .p-expo-bg {
    border-radius: 8.3333333333vw 0 8.3333333333vw 0;
    padding: 96px 0;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-bg {
    border-radius: 100px 0 100px 0;
  }
}
.p-expo-bg:before, .p-expo-bg:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-expo-bg:before, .p-expo-bg:after {
    height: 10vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-bg:before, .p-expo-bg:after {
    height: 120px;
  }
}
.p-expo-bg:before {
  top: 0;
}
.p-expo-bg:after {
  bottom: 0;
}
.p-expo-bg--wh {
  background: #fff;
}
.p-expo-bg--gr01 {
  background: #f1f3f6;
}
.p-expo-bg--gr02 {
  background: #cfecd9;
}
.p-expo-bg--gr03 {
  background: #278857;
}
.p-expo-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #278857;
  line-height: 1.5;
  font-size: 6.4vw;
  margin-bottom: 1.25em;
  gap: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ttl {
    gap: 8px;
    font-size: 4.9rem;
    margin-bottom: 64px;
  }
}
.p-expo-ttl__icon {
  background: #278857;
  color: #fff;
  line-height: 1;
  padding: 7px;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ttl__icon {
    font-size: 2.6rem;
  }
}
.p-expo-ttl__team {
  width: 64vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ttl__team {
    width: 33.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-ttl__team {
    width: 406px;
  }
}
.p-expo-ttl--wh {
  color: #fff;
}
.p-expo-ttl--center {
  align-items: center;
  text-align: center;
}
.p-expo-txt {
  line-height: 1.8;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-txt {
    line-height: 2.4;
    font-size: 1.7rem;
  }
}
.p-expo-slickNav {
  display: flex;
  align-items: center;
}
.p-expo-slickNav .slick-arrow {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: translate(0, 0);
  width: 22px;
  height: 10px;
  background: url("../images/icon_arrow02.svg");
  background-size: contain;
}
.p-expo-slickNav .slick-prev {
  order: 1;
  transform: rotate(-180deg);
}
.p-expo-slickNav .slick-next {
  order: 3;
}
.p-expo-slickNav .slick-dots {
  display: flex;
  order: 2;
  margin: 0 13px;
}
.p-expo-slickNav .slick-dots button {
  text-indent: -9999px;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid #000;
}
.p-expo-slickNav .slick-dots li {
  margin: 0 7px;
  display: flex;
}
.p-expo-slickNav .slick-dots li.slick-active button {
  background: #000;
}
@media screen and (min-width: 768px) {
  .p-expo-slickNav--center {
    justify-content: center;
  }
}
.p-expo-slickNav--wh .slick-arrow {
  background-image: url("../images/icon_arrow02_wh.svg");
}
.p-expo-slickNav--wh .slick-dots button {
  border-color: #fff;
}
.p-expo-slickNav--wh .slick-dots li.slick-active button {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-expo-btn {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-btn {
    font-size: 1.4rem;
  }
}
.p-expo-head {
  background: #278857;
}
@media screen and (max-width: 767px) {
  .p-expo-head {
    padding-bottom: 21.3333333333vw;
  }
}
.p-expo-head__inner {
  margin: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-expo-head__inner {
    max-width: 1200px;
    padding: 4.1666666667vw 0 4.1666666667vw 2.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-head__inner {
    padding: 50px 0 50px 34px;
  }
}
.p-expo-head__bg {
  background: url("../images/expo2027/top/head_bg.png") center no-repeat;
  background-size: cover;
  height: 106.6666666667vw;
}
@media screen and (max-width: 767px) {
  .p-expo-head__bg {
    padding: 5.3333333333vw 0 0 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-head__bg {
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 79.6666666667vw;
    height: 41.1666666667vw;
    padding-left: 7.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-head__bg {
    width: 956px;
    height: 494px;
    padding-left: 90px;
  }
}
.p-expo-head-ttl {
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.5em;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.45);
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-head-ttl {
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-head-ttl {
    font-size: 4.2rem;
  }
}
.p-expo-head-txt {
  color: #fff;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.45);
  font-feature-settings: "palt";
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-head-txt {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-head-txt {
    font-size: 2rem;
  }
}
.p-expo-head-logo {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-expo-head-logo {
    display: flex;
    align-items: flex-end;
    gap: 2.1333333333vw;
    left: 5.3333333333vw;
    bottom: -16vw;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-head-logo {
    right: 3vw;
    bottom: 2vw;
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-head-logo {
    right: 36px;
    bottom: 24px;
  }
}
.p-expo-head-logo__img {
  width: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-head-logo__img {
    width: 19.8333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-head-logo__img {
    width: 238px;
  }
}
.p-expo-head-logo__cap {
  color: #fff;
  line-height: 1.5;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-head-logo__cap {
    line-height: 1.3;
    font-size: 1rem;
    text-align: right;
    transform: translateX(3em);
  }
}
.p-expo-ad-list {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #278857;
  border-right: 1px solid #278857;
}
.p-expo-ad-item {
  width: 50%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-expo-ad-item {
    font-size: 2.4rem;
  }
}
.p-expo-ad-item:not(:last-child) {
  border-right: 1px solid #278857;
}
.p-expo-report {
  background: url("../images/expo2027/top/report_bg.jpg") center no-repeat;
  background-size: cover;
  padding: 9.6vw 0;
}
@media screen and (min-width: 768px) {
  .p-expo-report {
    padding: 48px 0;
  }
}
.p-expo-report-ttl {
  color: #fff;
  text-shadow: 2px 2px 2px rgba(25, 99, 55, 0.65);
  margin-bottom: 1.2em;
  letter-spacing: 0.075em;
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-report-ttl {
    font-size: 4rem;
  }
}
.p-expo-report-list {
  width: 100%;
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-report-list {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-report-list__wrap {
    padding-left: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-report-list__wrap {
    margin-left: calc((100vw - 1000px) / 2);
    width: calc(100vw - (100vw - 1000px) / 2);
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .p-expo-report-list__wrap {
    padding-left: 3%;
    margin-left: 0;
  }
}
.p-expo-report-item {
  position: relative;
  width: 64vw;
  margin-right: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-report-item {
    width: 430px;
    margin-right: 50px;
  }
}
.p-expo-report-link {
  color: #fff;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-report-link {
    padding-left: 30px;
  }
}
.p-expo-report-link__num {
  position: absolute;
  left: 0;
  top: 0;
  text-shadow: 2px 2px 2px rgba(25, 99, 55, 0.65);
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-report-link__num {
    font-size: 4rem;
  }
}
.p-expo-report-img {
  overflow: hidden;
  border-radius: 4vw;
  margin-bottom: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-report-img {
    border-radius: 30px;
    margin-bottom: 16px;
  }
}
.p-expo-report-txt {
  line-height: 1.6;
}
.p-expo-report-btn {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  padding-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-report-btn {
    justify-content: center;
    font-size: 1.4rem;
    padding-top: 24px;
  }
}
.p-expo-report-btn:after {
  content: "";
  display: inline-block;
  margin-left: 1em;
  width: 2.3em;
  height: 2.3em;
  background: url("../images/icon_arrow_wh.svg") center no-repeat;
  background-size: contain;
}
.p-expo-circle {
  text-align: center;
  background: url("../images/expo2027/top/circle_bg.png") center no-repeat #cfecd9;
  background-size: auto 95%;
  padding: 25.6vw 0;
}
@media screen and (min-width: 768px) {
  .p-expo-circle {
    padding: 192px 0;
  }
}
.p-expo-circle:before {
  background: #cfecd9;
}
.p-expo-circle:after {
  background: #fff;
}
.p-expo-circle-lead {
  color: #278857;
  line-height: 2;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-circle-lead {
    font-size: 2.3rem;
  }
}
.p-expo-circle-lead__att {
  display: inline-block;
  color: #fff;
  background: #278857;
  line-height: 1;
  padding: 4px;
}
.p-expo-circle-txt {
  padding: 6.4vw 0;
}
@media screen and (min-width: 768px) {
  .p-expo-circle-txt {
    padding: 48px 0;
  }
}
.p-expo-circle-txt p:not(:last-child) {
  margin-bottom: 1em;
}
.p-expo-team:before {
  background: #cfecd9;
}
.p-expo-team:after {
  background: #278857;
}
.p-expo-team__inner {
  text-align: center;
  position: relative;
}
.p-expo-team__inner:before, .p-expo-team__inner:after {
  content: "";
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-expo-team__inner:before {
  background-image: url("../images/expo2027/top/expo_bg01.png");
}
@media screen and (min-width: 768px) {
  .p-expo-team__inner:before {
    width: 19.4166666667vw;
    height: 19.4166666667vw;
    left: 0;
    top: 14.1666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-team__inner:before {
    width: 233px;
    height: 233px;
    top: 170px;
  }
}
.p-expo-team__inner:after {
  background-image: url("../images/expo2027/top/expo_bg02.png");
}
@media screen and (min-width: 768px) {
  .p-expo-team__inner:after {
    width: 16.9166666667vw;
    height: 16.9166666667vw;
    right: 0;
    top: 31.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-team__inner:after {
    width: 203px;
    height: 203px;
    top: 380px;
  }
}
.p-expo-team-obj {
  margin: 0 -5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-team-obj {
    margin: 0 auto;
    max-width: 630px;
  }
}
.p-expo-team-attempt {
  position: relative;
  border: 1px solid #278857;
  padding: 11.2vw 6.4vw 0;
  margin-bottom: 12.8vw;
}
@media screen and (min-width: 768px) {
  .p-expo-team-attempt {
    margin: 0 auto 10.6666666667vw;
    width: 85.6%;
    padding: 5.3333333333vw 5.3333333333vw 0;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-team-attempt {
    padding: 64px 64px 0;
    margin-bottom: 128px;
  }
}
.p-expo-team-attempt__ttl {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #278857;
  display: inline-block;
  font-weight: 600;
  padding: 0 1em;
  line-height: 1.4;
  border-left: 1px solid #278857;
  border-right: 1px solid #278857;
  white-space: nowrap;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-team-attempt__ttl {
    padding: 0 2em;
    line-height: 2;
    font-size: 2.3rem;
  }
}
.p-expo-team-attempt__list {
  padding: 1.5em 0;
}
@media screen and (min-width: 768px) {
  .p-expo-team-attempt__list {
    padding-bottom: 4vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-team-attempt__list {
    padding-bottom: 48px;
  }
}
.p-expo-team-attempt__item {
  text-align: left;
  color: #278857;
  border-bottom: 1px dashed #278857;
  padding-bottom: 1em;
}
.p-expo-team-attempt__item:not(:last-child) {
  margin-bottom: 1em;
}
.p-expo-team-attempt__sum {
  background: #278857;
  color: #fff;
  line-height: 1.8;
  margin: 0 -6.4vw;
  padding: 1em;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-team-attempt__sum {
    margin: 0 -5.3333333333vw;
    padding: 1em 5.3333333333vw;
    font-size: 2rem;
    text-align: left;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-team-attempt__sum {
    margin: 0 -64px;
    padding: 1em 64px;
  }
}
.p-expo-team-member__listWrap {
  padding: 4.2666666667vw 0 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-team-member__listWrap {
    padding: 2.6666666667vw 0 4vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-team-member__listWrap {
    padding: 32px 0 48px;
  }
}
.p-expo-team-member__item {
  height: 69px;
  margin-right: 60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-expo-team-member__item {
    margin-right: 9.6vw;
  }
}
.p-expo-team-member__item img {
  height: 100%;
  width: auto;
}
.p-expo-reason:after {
  background: #f1f3f6;
}
@media screen and (min-width: 768px) {
  .p-expo-reason-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-expo-reason-item {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-expo-reason-item:not(:last-child) {
    margin-bottom: 9.6vw;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-reason-item {
    width: 46%;
  }
  .p-expo-reason-item:nth-child(odd) {
    margin-right: 8%;
  }
  .p-expo-reason-item:nth-child(1), .p-expo-reason-item:nth-child(2) {
    margin-bottom: 8%;
  }
}
.p-expo-reason-ttl {
  font-weight: 600;
  font-size: 4.2666666667vw;
  padding-left: 6.4vw;
  margin: 4.2666666667vw 0 2.1333333333vw;
}
@media screen and (max-width: 767px) {
  .p-expo-reason-ttl {
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-reason-ttl {
    font-size: 2.3rem;
    padding-left: 2.6666666667vw;
    margin: 3vw 0 2vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-reason-ttl {
    padding-left: 32px;
    margin: 36px 0 24px;
  }
}
.p-expo-reason-txt {
  line-height: 1.5;
  padding-left: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-reason-txt {
    line-height: 2;
    padding-left: 2.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-reason-txt {
    padding-left: 32px;
  }
}
.p-expo-ex:before {
  background: #278857;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-sec {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-ex-sec {
    padding-top: 8.5333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-ex-sec:not(:last-child) {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-ex-sec:not(:last-child) {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-ex-sec__wrap {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-ex-sec__wrap {
    padding-top: 6vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-ex-sec__wrap {
    padding-top: 72px;
  }
}
.p-expo-ex-ttl {
  color: #278857;
  border-bottom: 1px solid #278857;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2.1333333333vw;
  padding-bottom: 4.2666666667vw;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-ttl {
    line-height: 1.375;
    gap: 1.3333333333vw;
    padding-bottom: 1.6666666667vw;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-ex-ttl {
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }
}
.p-expo-ex-ttl__logo {
  width: 53.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-ttl__logo {
    width: 60.5%;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-ex-ttl__logo {
    margin-bottom: 2.1333333333vw;
  }
}
.p-expo-ex-ttl__company {
  position: relative;
  font-size: 5.3333333333vw;
  padding-left: 8vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-ttl__company {
    font-size: 3.2rem;
    padding-left: 40px;
  }
}
.p-expo-ex-ttl__company__num {
  position: absolute;
  left: 0;
  top: -0.05em;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-ttl__company__num {
    font-size: 3.6rem;
  }
}
.p-expo-ex-ttl__lead {
  font-size: 4.8vw;
  padding-left: 8vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-ttl__lead {
    font-size: 2rem;
    padding-left: 40px;
  }
}
.p-expo-ex-txt {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-expo-ex-txt {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-ex-txt {
    padding-right: 2em;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-ex__txt {
    width: 48.4%;
  }
}
.p-expo-ex-img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-img {
    width: 51.6%;
  }
}
.p-expo-ex-img__large {
  border: 2px solid #278857;
  border-radius: 10px;
  overflow: hidden;
}
.p-expo-ex-img__small {
  position: absolute;
}
.p-expo-ex-img__small--01 {
  width: 32%;
  right: 4.2666666667vw;
  bottom: -18.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-img__small--01 {
    left: 1.3333333333vw;
    bottom: -3vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-ex-img__small--01 {
    left: 16px;
    bottom: -36px;
  }
}
.p-expo-ex-img__small--02 {
  width: 44.5%;
  right: -2.6666666667vw;
  bottom: -8vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-img__small--02 {
    right: 0.6666666667vw;
    bottom: -3vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-ex-img__small--02 {
    right: -8px;
    bottom: -36px;
  }
}
.p-expo-ex-img__small--03 {
  width: 82%;
  left: -2.6666666667vw;
  bottom: -4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-expo-ex-img__small--03 {
    left: -2.5vw;
    bottom: -7.1666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-ex-img__small--03 {
    left: -30px;
    bottom: -86px;
  }
}
.p-expo-news:before {
  background: #f1f3f6;
}
.p-expo-news:after {
  background: #cfecd9;
}
.p-expo-news-ttl {
  color: #278857;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 4.8vw;
  gap: 2.1333333333vw;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .p-expo-news-ttl {
    gap: 1.3333333333vw;
    font-size: 1.8333333333vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-news-ttl {
    gap: 16px;
    font-size: 2.2rem;
    margin-bottom: 48px;
  }
}
.p-expo-news-ttl__en {
  font-size: 9.6vw;
}
@media screen and (min-width: 768px) {
  .p-expo-news-ttl__en {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-news-ttl__en {
    font-size: 4rem;
  }
}
.p-expo-news-list {
  width: 100%;
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-news-list {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-news-listWrap {
    margin-bottom: 6.4vw;
    padding-left: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-news-listWrap {
    margin-left: calc((100vw - 1000px) / 2);
    width: calc(100vw - (100vw - 1000px) / 2);
    overflow: hidden;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-news-listWrap {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .p-expo-news-listWrap {
    padding-left: 3%;
    margin-left: 0;
  }
}
.p-expo-news-item {
  width: 53.3333333333vw;
  margin-right: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-news-item {
    width: 252px;
    margin-right: 48px;
  }
}
.p-expo-news-thumb {
  margin-bottom: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-expo-news-thumb {
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-news-thumb {
    margin-bottom: 16px;
  }
}
.p-expo-news-thumb__date {
  color: #278857;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-expo-news-thumb__date {
    font-size: 1.3rem;
  }
}
.p-expo-news-thumb__img {
  border: 1px solid #278857;
}
.p-expo-news-txt {
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .p-expo-news-txt {
    font-size: 1.3rem;
  }
}
.p-expo-faq:after {
  background: #cfecd9;
}
.p-expo-faq__inner {
  background: #fff;
  border-radius: 10px;
  padding: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-expo-faq__inner {
    padding: 8vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-faq__inner {
    padding: 96px;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-faq__inner {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-faq-head {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-faq-head {
    display: contents;
  }
}
.p-expo-faq-head__ttl {
  color: #278857;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
  font-size: 4.8vw;
  gap: 2.6666666667vw;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-expo-faq-head__ttl {
    gap: 1.3333333333vw;
    font-size: 1.8333333333vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-faq-head__ttl {
    gap: 16px;
    font-size: 2.2rem;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-faq-head__ttl {
    order: 1;
  }
}
.p-expo-faq-head__ttl-en {
  font-size: 9.6vw;
}
@media screen and (min-width: 768px) {
  .p-expo-faq-head__ttl-en {
    font-size: 6.25vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-faq-head__ttl-en {
    font-size: 7.5rem;
  }
}
.p-expo-faq-head__btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-expo-faq-head__btn {
    justify-content: flex-start;
    padding-left: 1em;
    padding-right: 4em;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-faq-head__btn {
    order: 3;
  }
}
.p-expo-faq-QA {
  border-bottom: 1px solid #afafaf;
}
@media screen and (min-width: 768px) {
  .p-expo-faq-QA {
    width: 72%;
  }
}
@media screen and (max-width: 767px) {
  .p-expo-faq-QA {
    order: 2;
    margin-bottom: 6.4vw;
  }
}
.p-expo-faq-QA .toggle {
  color: #278857;
  padding: 1em 2em 1em 0;
  border-top: 1px solid #afafaf;
  position: relative;
}
.p-expo-faq-QA .toggle:first-child {
  border-top: none;
}
.p-expo-faq-QA .toggle:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  background: url("../images/icon_plus_gr.svg") center no-repeat;
  background-size: contain;
}
.p-expo-faq-QA .toggle.open:after {
  background-image: url("../images/icon_minus_gr.svg");
}
.p-expo-faq-QA .toggled {
  line-height: 2;
  padding-right: 2em;
  padding-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-expo-faq-QA .toggled {
    line-height: 2.3;
    font-size: 1.5rem;
    padding-bottom: 1.5em;
    padding-right: 2.27em;
  }
}
@media screen and (min-width: 768px) {
  .p-expo-contact {
    border-radius: 8.3333333333vw 8.3333333333vw 0 0;
  }
}
@media screen and (min-width: 1201px) {
  .p-expo-contact {
    border-radius: 100px 100px 0 0;
  }
}
.p-expo-contact:before {
  background: #cfecd9;
}
.p-expo-contact:after {
  background: #278857;
}
@media screen and (min-width: 768px) {
  .p-expo-contact__inner {
    max-width: 720px;
  }
}
.p-expo-contact__txt {
  color: #fff;
  margin-bottom: 1.5em;
}
.p-expo-contact__btn {
  display: flex;
  width: 100%;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-expo-contact__btn {
    font-size: 4.2666666667vw;
    padding-right: 1em;
  }
}

/*========== p-conference.scss ==========*/
.p-conference-sec {
  padding: 8.5333333333vw 0;
}
@media screen and (min-width: 768px) {
  .p-conference-sec {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-conference-guest {
    padding: 5.3333333333vw 5.3333333333vw 0;
  }
  .p-conference-guest .inBox {
    align-items: center;
  }
  .p-conference-guest .inBox .inBoxA {
    margin-top: 0;
  }
}
.p-conference .boxSession {
  position: relative;
  margin: 3em 0;
  border: solid 1px #0067b2;
  border-radius: 0px 10px 10px 10px;
}
.p-conference .boxSession:last-child {
  margin-bottom: 0;
}
.p-conference .boxSession .box-title {
  font-size: 1.2em;
  background: #0067b2;
  padding: 0.5em 10px;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 0px 10px 0px 0px;
  line-height: 1.3;
}
.p-conference .boxSession p {
  padding: 10px 10px 10px 10px;
  margin: 0;
}
.p-conference .boxSession .box-time {
  border: solid 1px #0067b2;
  position: absolute;
  display: inline-block;
  top: -25px;
  left: -1px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  background: #0067b2;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}
.p-conference .forMovie {
  display: block;
  position: relative;
}
.p-conference .forMovie:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../images/icon_play.svg") center no-repeat;
  background-size: contain;
  pointer-events: none;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-conference .forMovie:after {
    width: 7.7519379845vw;
    height: 7.7519379845vw;
  }
}
@media screen and (min-width: 1170px) {
  .p-conference .forMovie:after {
    width: 100px;
    height: 100px;
  }
}
.p-conference .circle {
  display: flex;
  width: 16rem;
  height: 16rem;
  color: #fff;
  font-size: 1.8rem;
  justify-content: center;
  align-items: center;
  line-height: 150%;
  background-color: #0067b2;
  text-align: center;
  border-radius: 50%;
}
.p-conference .forImg {
  margin-top: 4vw;
}
@includde pc {
  .p-conference .forImg {
    margin-top: 2.3255813953vw;
  }
}
@media screen and (min-width: 1170px) {
  .p-conference .forImg {
    margin-top: 30px;
  }
}
.p-conference .forImg .cap {
  padding-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-conference .forImg .img:not(:last-child) {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-conference .forImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-conference .forImg.sizeS .img {
    width: 27.835%;
    margin: 0 1.546%;
  }
  .p-conference .forImg.sizeM {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-conference .forImg.sizeMc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
  }
  .p-conference .forImg.sizeMcM {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
  }
  .p-conference .forImg.sizeM .img {
    width: 48.4536%;
  }
  .p-conference .forImg.sizeMc .img {
    width: 48.4536%;
  }
  .p-conference .forImg.sizeMcM .img {
    width: 30%;
  }
  .p-conference .forImg.sizeL .img {
    width: 79.381%;
  }
  .p-conference .forImg.sizeXL .img {
    width: 100%;
  }
}
.p-conference .r-box {
  padding: 1em 1em 1em 1em;
  margin: 0 20px;
  color: #000000;
  background: #FFF;
  border: solid 3px #0067b2;
  border-radius: 20px;
}
.p-conference .r-box_sizeS {
  padding: 1em 1em 1em 1em;
  margin: auto;
  color: #000000;
  background: #FFF;
  border: solid 3px #0067b2;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-conference .r-box_sizeS {
    width: 40vw;
  }
}

/*========== p-footer.scss ==========*/
.p-footer {
  position: relative;
  padding: 17.0666666667vw 0 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 5.3333333333vw 0 2.6666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-footer {
    padding: 64px 0 32px;
  }
}
.p-footer--simple {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-footer--simple .p-footer__sns-logo {
  margin-right: 0;
}
.p-footer__nav {
  margin-bottom: 12.8vw;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    display: flex;
    margin-bottom: 10vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-footer__nav {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items {
    margin-right: 4.5em;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items--top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 6.25em;
  }
}
.p-footer__nav-items-item {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items-item:last-child {
    margin-bottom: 0;
  }
}
.p-footer__nav-items-item a {
  color: #fff;
}
.p-footer__nav-expo {
  color: #fff;
  display: inline-block;
  border: 1px solid #afafaf;
  line-height: 1.6;
  padding: 1em;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-expo {
    position: absolute;
    right: 0;
    top: 0;
  }
}
.p-footer__sns {
  display: flex;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-footer__sns {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-footer__sns {
    margin-bottom: 50px;
  }
}
.p-footer__sns-items {
  display: flex;
}
.p-footer__sns-items-item {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-items-item {
    width: 5.3333333333vw;
  }
}
.p-footer__sns-logo {
  margin-right: 8vw;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-logo {
    margin-right: 3.75vw;
  }
}
@media screen and (min-width: 1201px) {
  .p-footer__sns-logo {
    margin-right: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__sns-logo {
    width: 25.0666666667vw;
  }
}
.p-footer__copy {
  color: #afafaf;
  font-size: 1.3rem;
}

.en .p-footer__nav-item {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .en .p-footer__nav-item {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1201px) {
  .en .p-footer__nav-item {
    font-size: 1.6rem;
  }
}

/*========== u-utility.scss ==========*/
.u-bold {
  font-weight: bold;
}
.u-right {
  text-align: right;
}
.u-center {
  text-align: center;
}
.u-mtStd {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .u-mtStd {
    margin-top: 5.3333333333vw;
  }
}
.u-mb0 {
  margin-bottom: 0 !important;
}
.u-mt0 {
  margin-top: 0 !important;
}
.u-pb0 {
  padding-bottom: 0 !important;
}
.u-sizeS {
  font-size: 80%;
}
.u-sizeSS {
  font-size: 50%;
}
.u-gr {
  color: #2b875a;
}





/*========== 以下、岡崎追加 ==========*/


.c-bgWhite {
  background: #ffffff;
}
.p-conductor {
  padding: 2vw 2vw;
}
@media screen and (min-width: 768px) {
  .p-conductor {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 20px 0;
    gap: 16px;
  }
}
.p-conductor__txt {
  color: #0062a6;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-conductor__txt {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-conductor__txt {
    font-size: 2.5rem;
  }
}

.p-conductor_f {
  padding: 2vw 2vw;
}
@media screen and (min-width: 768px) {
  .p-conductor_f {
    display: flex;
    padding: 10px 0px 10px 0px;
  }
}



.l-main__contents .p-concept2nd__feature-item3 {
  width: 26.5%;
}

@media screen and (max-width: 767px) {
  .l-main__contents .p-concept2nd__feature-item3 {
    width: 48%;
  }
}



@media screen and (min-width: 768px) {
  .p-nav__menu-item:not(:last-child) {
    margin-right: 1.5em;
  }
}
@media screen and (min-width: 1201px) {
  .p-nav__menu-item:not(:last-child) {
    margin-right: 2.3em;
  }
}

