@charset "utf-8";

/* ------------------------------------------------------
RESET
------------------------------------------------------ */
html {-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}
details,menu,figcaption,figure,main,article,aside,footer,header,nav,section {display: block;}
html,body,button,input,optgroup,select,textarea,p,h1,h2,h3,h4,h5,h6,figure,ul,ol,dl,dt,dd {margin: 0;}
ul,ol,dl,dd,dt { list-style: none; padding: 0;}
hr {box-sizing: content-box;height: 0;overflow: visible;}
pre {font-family: monospace, monospace;font-size: 1em;}
a {background-color: transparent;-webkit-text-decoration-skip: objects;outline: none;}
abbr[title] {border-bottom: none;text-decoration: underline;text-decoration: underline dotted;}
code,kbd,samp {font-family: monospace, monospace;font-size: 1em;}
dfn {font-style: italic;}
mark {background-color: #ff0;color: #000;}
small {font-size: 80%;}
sub,sup {font-size: 70%;line-height: 0;position: relative;vertical-align: baseline;}
sub {bottom: -0.25em;}
sup {top: -0.3em;}
canvas,audio,video {display: inline-block;}
audio:not([controls]) {display: none;height: 0;}
img {border-style: none;}
svg:not(:root) {overflow: hidden;}
button,input {overflow: visible;}
button,select {text-transform: none;}
button,html [type="button"],[type="reset"],[type="submit"] {-webkit-appearance: button;}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {border-style: none;padding: 0;}
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring {outline: 1px dotted ButtonText;}
legend {box-sizing: border-box;color: inherit;display: table;max-width: 100%;padding: 0;white-space: normal;}
progress {display: inline-block;vertical-align: baseline;}
textarea {overflow: auto;}
[type="checkbox"],
[type="radio"] {box-sizing: border-box;padding: 0;}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {height: auto;}
[type="search"] {-webkit-appearance: textfield;outline-offset: -2px;}
[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}
::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}
summary {display: list-item;}
[hidden],template {display: none;}

/* ------------------------------------------------------
GENERAL
------------------------------------------------------ */
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.77;
}
.clearfix:after {
  content: ' ';
  display: block;
  clear: both;
}
*,*:before,*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  color: #67AF28;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
#wrapper {
  overflow: hidden;
}
.container {
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  max-width: 1230px;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex--center {
  justify-content: center;
}
.flex--right {
  justify-content: end;
}
.button {
  display: inline-flex;
  align-items: center;
  height: 48px;
  line-height: 1.3;
  padding: 0 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.button--type-1 {
  color: #F6F6F6;
  background-color: #E17C00;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.15);
}
.button--type-1 span {
  display: block;
  position: relative;
  padding: 0 30px 0 0;
}
.button--type-1 span::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/arrow_brown_circle.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.button--type-1:hover {
  background-color: #FF8F06;
}
.button--type-2 {
  background-color: #33770a;
  color: #FFF;
}
.button--type-2 span {
  display: block;
  position: relative;
  padding: 0 30px 0 0;
}
.button--type-2 span::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/arrow_down_circle.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.button--type-3 {
  background-color: #33770a;
  color: #FFF;
  height: 56px;
  padding: 0 24px;
}
.button--type-3 span {
  display: block;
  position: relative;
  padding: 0 32px 0 0;
}
.button--type-3 span::after {
  content: "";
  width: 23px;
  height: 23px;
  background: url(../img/new_window.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.button--type-2:hover,
.button--type-3:hover {
  background-color: #3E950B;
}
.button.is--disable {
  background-color: #E6E6E6;
  pointer-events: none;
}
@media (min-width: 768px) {
  .sp {display: none!important;}
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .pc {display: none!important;}
}

/* ------------------------------------------------------
HEADER
------------------------------------------------------ */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
#logo {
  margin: 0;
  font-size: 0;
}
#header .container {
  padding: 25px 25px 0;
  max-width: 1490px;
}
.header__inner {
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 24px;
  position: relative;
}
.nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.mainmenu {
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  order: -1;
}
.mainmenu a {
  display: block;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 12px;
  transition: opacity 0.3s ease;
}
.mainmenu a:hover {
  opacity: 0.7;
}
@media (min-width: 991px) and (max-width: 1199px) {
  .header__inner {
    padding-left: 16px;
  }
  #logo {
    width: calc(1vw * (130 * 100) / 991);
    max-width: 212px;
  }
  .header__button .button,
  .mainmenu a {
    font-size: calc(1vw * (15 * 100) / 991);
  }
}
@media (max-width: 990px) {
  #header .container {
    padding: 0;
  }
  .header__inner {
    border-radius: 0;
    padding: 0 12px;
    height: 55px;
  }
  #nav {
    background-color: #EBF1DF;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.7s;
    z-index: -1;
  }
  .nav--opened #nav {
    transform: translateX(0);
  }
  .nav__inner {
    height: 100%;
    overflow-y: auto;
    padding: 95px 32px 30px;
    display: block;
  }
  #logo {
    width: 150px;
  }
  .mainmenu {
    display: block;
    width: 100%;
  }
  .mainmenu li {
    border-bottom: 1px solid #A1B083;
  }
  .mainmenu a {
    padding: 14px 25px 16px 8px;
    position: relative;
    font-size: 18px;
    font-weight: 400;
  }
  .mainmenu a::after {
    content: "";
    width: 22px;
    height: 22px;
    background: url(../img/arrow_black_circle.png) no-repeat 0 0 / 100% 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  .header__button .button {
    height: 38px;
  }
}

/* Hamburger */
.hamburger {
  width: 55px;
  height: 55px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger > div {
  width: 25px;
  height: 16px;
  position: relative;
}
.hamburger span {
  position: absolute;
  background: #2E2E2E;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.4s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 7px;
}
.hamburger span:nth-child(3) {
  top: 14px;
}
.nav--opened .hamburger .hamburger_button {
  transform: rotateX(360deg);
}
.nav--opened .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(-135deg);
  top: 3px;
}
.nav--opened .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(135deg);
  top: 15px;
}
.nav--opened .hamburger span:nth-child(2) {
  opacity: 0;
}
@media (min-width: 991px) {
  .hamburger {
    display: none;
  }
}

/* ------------------------------------------------------
FOOTER
------------------------------------------------------ */
#footer {
  background-color: #E6E6E6;
}
.footer__inner {
  margin: 0 auto;
  padding: 54px 25px 16px;
  max-width: 1490px;
}
.footer__logo {
  padding: 0 0 0 15px;
  margin-bottom: 88px;
}
.footer__info_logo {
  padding-top: 8px;
}
.footer__info_logo img {
  width: 543px;
}
.footer__info {
  display: flex;
}
.footer__info_row {
  width: calc(100% - 543px);
  padding: 0 0 0 40px;
  display: flex;
  gap: 30px;
}
.footer__address {
  letter-spacing: 0.04em;
}
.footer__address a {
  color: #000;
}
.footer__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding: 15px 0 0 0;
  margin-top: 24px;
}
.fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 0 0 10px;
}
.fnav a {
  color: #000;
  text-decoration: none;
}
.fnav a:hover {
  text-decoration: underline;
}
@media (min-width: 991px) and (max-width: 1100px) {
  .footer__info_logo {
    width: 43%;
  }
  .footer__info_row {
    width: 57%;
    gap: 24px;
  }
  .footer__address {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .footer__flex,
  .footer__info {
    display: block;
  }
  .footer__info_row {
    width: 100%;
    margin-top: 30px;
  }
  .fnav {
    padding-left: 0;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    padding: 54px 15px 16px;
  }
  .footer__info_row {
    padding: 0;
    flex-wrap: wrap;
  }
  .footer__info_col {
    width: 100%;
  }
  .footer__info_logo {
    padding: 0;
  }
}

/* ------------------------------------------------------
MAIN
------------------------------------------------------ */
.bg__main {
  background: #F5F2E5;
  position: relative;
}
.bg__main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/bg_main.png) repeat-y left top / 100% auto;
}
.pagebody {
  position: relative;
  z-index: 1;
}
.head--type-1 {
  color: #2e2e2e;
  text-align: center;
  line-height: 1.5;
  font-size: 48px;
  font-weight: bold;
  position: relative;
  padding: 0 0 28px;
  margin-bottom: 16px;
}
.head--type-1::after {
  content: "";
  width: 96px;
  height: 2px;
  background-color: #D18C60;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.head--type-1 span {
  position: relative;
  display: inline-block;
}
.head--type-1 img {
  position: absolute;
  left: -48px;
  top: -38px;
  width: 61px;
}
.head--type-2 {
  line-height: 1.5;
  background-color: #67AF28;
  color: #FFF;
  font-size: 32px;
  border-radius: 50px;
  text-align: center;
  padding: 2px 10px 4px;
  margin-bottom: 40px;
}
.text__lead {
  text-align: center;
  letter-spacing: 0.04em;
  color: #2e2e2e;
  margin-bottom: 35px;
}
.visual img {
  display: block;
  width: 100%;
}
@media (max-width: 960px) {
  .head--type-1 {
    font-size: 38px;
  }
  .head--type-2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .bg__main::after {
    top: 64vw;
  }
  .head--type-1 {
    font-size: 30px;
    padding-bottom: 25px;
  }
  .head--type-2 {
    font-size: 23px;
  }
  .visual {
    padding-top: 54px;
  }
}

/* ------------ what ------------ */
.what {
  padding: 96px 0;
}
.what .head--type-1 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .what .head--type-1 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
/* what::key */
.key {
  margin: 40px auto 0;
  max-width: 790px;
}
.key__title {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 53px;
}
.key__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 24px;
}
.key__list > li {
  width: calc(100% / 2 - (24px / 2 * 1));
}
.key__list > li ul li {
  position: relative;
  padding: 0 0 0 12px;
}
.key__list > li ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #3E950B;
  position: absolute;
  left: 0;
  top: 0.7em;
}
.key__box {
  height: 100%;
  background-color: #FFF;
  border: 1px solid #67AF28;
  padding: 36px 17px 32px;
  position: relative;
}
.key__num {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background-color: #67AF28;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 24px;
  font-weight: bold;
}
.key__box h4 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: initial;
  margin-bottom: 26px;
}
.key__body {
  text-align: center;
  background: url(../img/bg_dot.png) repeat-x left top;
  padding: 16px 0 0 0;
}
@media (max-width: 960px) {
  .key__title {
    font-size: 30px;
  }
  .key__box h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .key__title {
    font-size: 23px;
  }
  .key__list {
    gap: 40px;
  }
  .key__list > li {
    width: 100%;
  }
}
/* what::business */
.business {
  margin-top: 32px;
}
.business__title {
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 33px;
}
.business__title em {
  color: #E2474C;
  font-style: normal;
}
.business__button {
  margin-bottom: 56px;
}
.media__caption {
  margin-top: 55px;
}
.media__caption span {
  display: block;
  width: 360px;
  line-height: 1.5;
  background-color: #67AF28;
  color: #FFF;
  font-size: 24px;
  border-radius: 50px;
  text-align: center;
  padding: 4px 10px 6px;
}
.media {
  margin-top: 40px;
}
.media iframe {
  display: block;
  height: 402px;
  width: 100%;
  max-width: 668px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .business__title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .business__title {
    font-size: 23px;
  }
  .media iframe {
    height: 60vw;
  }
  .media__caption span {
    font-size: 20px;
    width: 100%;
    max-width: 276px;
  }
}

/* ------------ solve ------------ */
.solve {
  background-color: #67AF28;
  padding: 56px 0 104px;
}
.solve__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #FFF;
}
.solve__title span {
  display: inline-block;
  position: relative;
}
.solve__title span::before,
.solve__title span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px;
  height: 1px;
  width: 52px;
  background-color: #FFF;
  transform: rotate(75deg) translateY(-50%);
}
.solve__title span::after {
  right: -80px;
  left: inherit;
  transform: rotate(-75deg) translateY(-50%);
}
.solve__body {
  border-radius: 8px;
  background-color: #EBF1DF;
  padding: 48px 40px;
}
.solve__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.solve__list li {
  width: 304px;
  height: 304px;
  border-radius: 100%;
  background-color: #FFF;
  text-align: center;
  padding: 48px 10px;
}
.solve__list li img {
  height: 69px;
}
.solve__list li p {
  font-size: 22px;
  font-weight: 500;
}
.solve__text {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-top: 48px;
}
.solve__box {
  margin: 54px auto 0;
  background-color: #FFF;
  border: 1px solid #67AF28;
  padding: 29px 20px 24px;
  max-width: 536px;
  position: relative;
}
.solve__box h4 {
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  display: flex;
  justify-content: center;
}
.solve__box h4 span {
  display: block;
  width: 218px;
  line-height: 1.5;
  background-color: #67AF28;
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  border-radius: 50px;
  text-align: center;
  padding: 4px 10px 6px;
}
.solve__box_inner {
  display: flex;
  justify-content: center;
}
.solve__box ul li {
  position: relative;
  padding: 0 0 0 12px;
  letter-spacing: 0.04em;
}
.solve__box ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #3E950B;
  position: absolute;
  left: 0;
  top: 0.7em;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .solve__list li {
    width: calc(1vw * (200 * 100) / 768);
    height: calc(1vw * (200 * 100) / 768);
  }
  .solve__list li img {
    height: calc(1vw * (45 * 100) / 768);
  }
  .solve__list li p {
    font-size: calc(1vw * (14 * 100) / 768);
  }
}
@media (max-width: 960px) {
  .solve__title {
    font-size: 30px;
  }
  .solve__text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .solve__title {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 23px;
  }
  .solve__title span::before {
    left: -50px;
  }
  .solve__title span::after {
    right: -50px;
  }
  .solve__body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .solve__list li {
    width: calc(1vw * (200 * 100) / 375);
    height: calc(1vw * (200 * 100) / 375);
    padding-top: 10vw;
  }
  .solve__text,
  .solve__list li p {
    font-size: 18px;
  }
  .solve__list li p {
    font-size: 15px;
  }
  .solve__box h4 span {
    font-size: 20px;
  }
  .solve__list li img {
    height: 12vw;
  }
}

/* ------------ stage ------------ */
.stage {
  margin-top: 96px;
}
.stage__box {
  background-color: #FFF;
  border-radius: 8px;
  border: 1px solid #E6E6E6;
  padding: 20px 25px 40px;
}
.stage__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 70px;
  margin-top: -62px;
}
.stage__image {
  width: 248px;
}
.stage__body {
  width: calc(100% - 248px);
  padding-left: 64px;
}
.stage__button {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -61px;
}
.stage__note {
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
}
@media (min-width: 768px) and (max-width: 990px) {
  .stage__row {
    padding: 0;
    margin-top: -56px;
  }
  .stage__body {
    padding-left: 50px;
  }
  .stage__button {
    margin-top: -18px;
  }
}
@media (max-width: 767px) {
  .stage__row {
    display: block;
    padding: 0;
    margin-top: 0;
  }
  .stage__image {
    margin: 0 auto 10px;
    width: 60%;
    font-size: 0;
  }
  .stage__body {
    width: 100%;
    padding: 0;
  }
  .stage__button {
    margin-top: 30px;
  }
}

/* ------------ visitor ------------ */
.visitor {
  margin-top: 96px;
}
.visitor__box {
  background-color: #F5E4E4;
  border-radius: 8px;
  border: 1px solid #D44951;
  padding: 40px 25px;
  position: relative;
  overflow: hidden;
}
.visitor__box::before,
.visitor__box::after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}
.visitor__box::before {
  background-image: url(../img/bg_top11.png);
  left: -1px;
  top: -1px;
}
.visitor__box::after {
  background-image: url(../img/bg_bot11.png);
  right: -1px;
  bottom: -1px;
}
.visitor__title {
  margin-bottom: 16px;
}
.visitor__title span {
  display: block;
  width: 540px;
  line-height: 1.5;
  background-color: #E2474C;
  color: #FFF;
  font-size: 32px;
  border-radius: 50px;
  text-align: center;
  padding: 7px 10px 9px;
}
.visitor__lead {
  text-align: center;
}
.visitor__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 23px;
}
.visitor__list li {
  width: 416px;
  text-align: center;
}
.visitor__list li figure {
  font-size: 0;
}
.visitor__list li h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 18px;
}
.visitor__list li p {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
}
@media (min-width: 768px) and (max-width: 990px) {
  .visitor__list {
    gap: 26px;
  }
  .visitor__list li {
    width: calc(100% / 2 - (48px / 2 * 1));
  }
}
@media (max-width: 960px) {
  .visitor__title span {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .visitor__box::before, .visitor__box::after {
    width: 80px;
    height: 80px;
  }
  .visitor__title span {
    font-size: 23px;
    width: 100%;
    max-width: 300px;
  }
  .visitor__list li {
    width: 100%;
  }
  .visitor__list li h4 {
    font-size: 20px;
  }
}

/* ------------ survey ------------ */
.survey {
  margin-top: 96px;
}
.survey__box {
  background-color: #F5E5B9;
  border-radius: 8px;
  border: 1px solid #EFB40C;
  padding: 40px 25px;
  position: relative;
}
.survey__box::before,
.survey__box::after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}
.survey__box::before {
  background-image: url(../img/bg_top12.png);
  left: -1px;
  top: -1px;
}
.survey__box::after {
  background-image: url(../img/bg_bot12.png);
  right: -1px;
  bottom: -1px;
}
.survey__title {
  margin-bottom: 18px;
}
.survey__title span {
  display: block;
  width: 540px;
  line-height: 1.5;
  background-color: #EFB40C;
  color: #FFF;
  font-size: 32px;
  border-radius: 50px;
  text-align: center;
  padding: 7px 10px 9px;
}
.survey__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* max-width: 992px; */
  margin: 0 auto;
  padding-left: 78px;
}
.survey__image {
  font-size: 0;
  width: 461px;
}
.survey__image figcaption {
  text-align: right;
  line-height: 1.5;
  font-size: 12px;
  margin-top: 16px;
}
.survey__body {
  text-align: center;
  width: calc(100% - 461px);
  padding-bottom: 30px;
  font-weight: 500;
  padding-left: 25px;
}
.survey__body p:not(:last-child) {
  margin: 0 0 16px;
}
.survey__text {
  font-size: 24px;
}
.survey__body strong {
  font-size: 32px;
  font-weight: bold;
}
.survey__body small {
  font-size: 18px;
  display: block;
}
.survey__body span {
  font-weight: 400;
}
@media (max-width: 1200px) {
  .survey__row {
    padding-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .survey__image {
    width: 45%;
  }
  .survey__body {
    min-width: inherit;
    width: 55%;
    font-size: 16px;
  }
  .survey__image figcaption {
    font-size: 10px;
    margin-top: 10px;
  }
  .survey__text {
    font-size: 20px;
  }
  .survey__body strong {
    font-size: 26px;
  }
  .survey__body small {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .survey__title span {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .survey__box::before, .survey__box::after {
    width: 80px;
    height: 80px;
  }
  .survey__title span {
    font-size: 23px;
    width: 100%;
    max-width: 300px;
  }
  .survey__row {
    display: block;
    max-width: inherit;
  }
  .survey__image {
    width: 100%;
    max-width: 461px;
    margin: 0 auto;
  }
  .survey__body {
    width: 100%;
    min-width: inherit;
    margin-top: 30px;
    padding-bottom: 0;
    padding-left: 0;
  }
  .survey__text {
    font-size: 20px;
  }
  .survey__body strong {
    font-size: 26px;
  }
  .survey__body small {
    font-size: 16px;
  }
}

/* ------------ stamp ------------ */
.stamp {
  padding: 96px 0 0;
}
.stamp__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.stamp__list li {
  width: calc(100% / 3 - (24px / 3 * 2));
}
.stamp__list li h3 {
  text-align: center;
  font-weight: 400;
  margin-top: 8px;
  font-size: 18px;
}
.stamp__list div,
.stamp__list a {
  text-decoration: none;
  display: block;
  position: relative;
  transition: opacity 0.3s ease;
}
.stamp__list img {
  display: block;
}
.stamp__list span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  line-height: 1.5;
  background-color: #FFF;
  color: #2E2E2E;
  padding: 4px 7px;
  border-radius: 0 0 8px 0;
}
@media (min-width: 768px) {
  .stamp__list a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .stamp__list li {
    width: 100%;
  }
  .stamp__list li h3 {
    font-size: 16px;
  }
}

/* ------------ exhibite ------------ */
.exhibite {
  padding: 96px 0 0;
}
.exhibite__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding: 0 72px;
}
.exhibite__list li {
  width: calc(100% / 4 - (32px / 4 * 3));
}
.exhibite__block:not(:last-child) {
  margin-bottom: 40px;
}
.exhibite__list a {
  display: block;
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}
.exhibite__list figure {
  font-size: 0;
}
.exhibite__list p {
  margin-top: 25px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .exhibite__list a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 990px) {
  .exhibite__list {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .exhibite__list {
    padding: 0;
    gap: 24px 20px;
  }
  .exhibite__list li {
    width: calc(100% / 2 - (20px / 2 * 1));
  }
  .exhibite__list p {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 0;
  }
}

/* ------------ venue ------------ */
.venue {
  padding-top: 96px;
}
.venue__map {
  font-size: 0;
  background-color: #FFF;
  border-radius: 8px;
  text-align: center;
  padding: 45px 40px;
  margin-top: 40px;
}
.venue__map img {
  width: 100%;
  max-width: 912px;
}
.venue__button {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .venue__map {
    padding: 20px;
  }
}

/* ------------ access ------------ */
.access {
  padding: 96px 0;
}
.access__row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.access__address {
  width: 50%;
}
.access__address iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: none;
  outline: none;
}
.access__address_button {
  margin-top: 16px;
}
.access__info {
  width: 50%;
  padding-right: 40px;
}
.access__info dl dt span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.04em;
  width: 158px;
  height: 36px;
  padding: 0 5px;
  text-align: center;
  border-radius: 50px;
}
.access__info dl dd {
  letter-spacing: 0.04em;
  margin: -1.9em 0 26px 0;
  padding: 0 0 0 182px;
}
@media (max-width: 990px) {
  .access__info {
    width: 100%;
    padding-right: 0;
  }
  .access__address {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .access__info dl dt span {
    width: 125px;
  }
  .access__info dl dd {
    padding-left: 142px;
  }
  .access__address iframe {
    height: 60vw;
  }
}

/* ------------ contact ------------ */
.contact {
  padding: 96px 0;
  background-color: #FFF;
}
.contact__lead {
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  margin-top: 40px;
}
.contact__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.contact__col {
  width: calc(100% / 3 - (24px / 3 * 2));
}
.contact__row a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 115px;
  border-radius: 60px;
  background-color: #FFF;
  border: 1px solid #E6E6E6;
  color: #000;
  line-height: 1.5;
  text-decoration: none;
  padding: 0 10px;
  position: relative;
  transition: opacity 0.3s ease;
}
.contact__phone {
  font-size: 22px;
  font-weight: 500;
}
.contact__phone span {
  display: block;
  position: relative;
  padding: 0 0 0 28px;
}
.contact__phone span::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/ico_phone.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact__row a.contact__link {
  color: #2E2E2E;
  font-weight: bold;
}
.contact__form_text span {
  display: inline-block;
  position: relative;
  padding: 0 27px 0 0;
}
.contact__form_text span::after {
  content: "";
  width: 23px;
  height: 23px;
  background: url(../img/new_window_b.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact__form_note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}
.contact__row a.contact__web {
  color: #2E2E2E;
  padding-top: 7px;
}
.contact__web p {
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  line-height: 1.5;
  font-size: 12px;
}
.contact__web_logo {
  font-size: 0;
  position: relative;
  padding-right: 27px;
}
.contact__web_logo img {
  width: 258px;
}
.contact__web_logo::after {
  content: "";
  width: 23px;
  height: 23px;
  background: url(../img/new_window_b.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact__button {
  margin-top: 96px;
}
.contact__button .button--type-1 {
  height: 80px;
  width: 560px;
  justify-content: center;
}
@media (min-width: 768px) {
  .contact__row a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .contact__row a {
    height: 100px;
  }
  .contact__phone {
    font-size: 18px;
  }
  .contact__form_text {
    font-size: 14px;
  }
  .contact__form_note {
    font-size: 9px;
  }
  .contact__form_text span,
  .contact__web_logo {
    padding-right: 22px;
  }
  .contact__form_text span::after,
  .contact__web_logo::after {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 767px) {
  .contact__lead {
    font-size: 18px;
  }
  .contact__col {
    width: 100%;
  }
  .contact__button .button--type-1 {
    width: 100%;
    max-width: 400px;
  }
}

/* modal */
.mfp-bg {
  background-color: #000;
  opacity: 0.4;
}
.mfp-close {display: none!important;}
.mfp-container {
  padding: 0;
}
.is--hidden {
  display: none;
}
.modal__overlay {
  background-color: #000;
  opacity: 0.4;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 300;
}
#modal {
  position: fixed;
  left: 0;
  top: 5vh;
  bottom: 5vh;
  width: 100%;
  z-index: 301;
}
.splide__slide {
  padding: 0 40px;
}
#modal .splide__arrow {
  opacity: 1;
  width: 72px;
  height: 72px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  border-radius: 100%;
  display: block;
  outline: none;
  transition: opacity 0.3s ease;
}
#modal .splide__arrow.splide__arrow--next {
  background-image: url(../img/next.png);
  right: calc(0px + 8em - 20px);
}
#modal .splide__arrow.splide__arrow--prev {
  background-image: url(../img/prev.png);
  left: calc(0px + 8em - 20px);
}
#modal .splide__arrow svg {
  display: none;
}
.modal__close {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/close.png) no-repeat center center / 24px auto;
  position: absolute;
  right: 22px;
  top: 22px;
  transition: opacity 0.3s ease;
}
#modal .splide__arrow:hover,
.modal__close:hover {
  opacity: 0.7;
}
.m__box {
  background-color: #FFF;
  border-radius: 8px;
  padding: 64px 34px 54px 67px;
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 90vh;
}
.m__box_inner {
  padding: 10px 43px 0 0;
  height: 100%;
  overflow-y: auto;
}
.m__box_inner::-webkit-scrollbar {
  width: 14px;
}
.m__box_inner::-webkit-scrollbar-track {
  background-color: #FFF;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
}
.m__box_inner::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
  border: 3px solid transparent;
  border-radius: 9px;
  background-clip: content-box;
}
.m__cat {
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
}
.m__cat span {
  display: inline-block;
  background-color: #67AF28;
  border-radius: 0 0 8px 0;
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  padding: 11px 32px;
}
.m__company {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 0 16px;
  margin-bottom: 32px;
}
.m__company_logo {
  font-size: 0;
  width: 45.5189%;
}
.m__company_logo img {
  width: 100%;
}
.m__company_body {
  width: calc(100% - 45.5189%);
  padding: 0 0 0 26px;
}
.m__company_body h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: initial;
  padding: 0 0 30px;
  background: url(../img/bg_dot.png) repeat-x left bottom;
  margin-bottom: 32px;
}
.m__company_body h3 span {
  font-size: 14px;
}
.m__company_body ul {
  font-size: 14px;
  line-height: 1.7;
  padding: 0 0 0 10px;
}
.m__company_body ul a {
  color: #000;
}
.m__box h4 {
  background-color: #67AF28;
  color: #FFF;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 500;
  border-radius: 50px;
  padding: 11px 24px;
  margin: 24px 0 16px;
}
.m__box .m__text {
  letter-spacing: 0.04em;
  padding: 0 16px;
  margin-top: 16px;
}
.m__gallery {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.m__gallery li {
  width: calc(100% / 3 - (4px / 3 * 2));
}
.m__gallery li img {
  display: block;
}
.m__gallery.is--one li {
  width: 100%;
}
.m__gallery.is--one li img {
  margin: 0 auto;
}
@media (max-width: 990px) {
  .m__box {
    padding: 64px 14px 54px 37px;
  }
  .m__box_inner {
    padding: 10px 23px 0 0;
  }
  .m__company {
    padding: 0 16px;
    display: block;
  }
  .m__company_logo {
    width: 100%;
    margin-bottom: 20px;
  }
  .m__company_body {
    width: 100%;
    padding: 0;
  }
  .splide__slide {
    padding: 0 25px;
  }
}
@media (max-width: 767px) {
  .modal__close {
    right: 10px;
  }
  .splide__slide {
    padding: 0 15px;
  }
  #modal .splide__arrow {
    width: 40px;
    height: 40px;
  }
  #modal .splide__arrow.splide__arrow--next {
    right: 0;
  }
  #modal .splide__arrow.splide__arrow--prev {
    left: 0;
  }
  .m__box {
    padding: 64px 5px 54px 15px;
  }
  .m__box_inner {
    padding: 10px 10px 0 0;
  }
  .m__box h4 {
    font-size: 20px;
  }
  .m__company_body h3 {
    font-size: 22px;
  }
  .m__cat span {
    font-size: 20px;
    padding: 11px 20px;
  }
  .m__gallery li {
    width: calc(100% / 2 - (4px / 2 * 1));
  }
}

/* page */
.page {
  padding: 180px 0 96px;
}
.policy__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}
.policy h3 {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #E6E6E6;
  line-height: initial;
  padding: 0 0 23px;
  margin: 40px 0 16px;
}
.policy p a {
  color: #000;
}
@media (max-width: 767px) {
  .page {
    padding-top: 120px;
  }
  .policy__title {
    font-size: 26px;
  }
  .policy h3 {
    font-size: 18px;
  }
}

.w100 {width: 100%!important;}
