/*
	スクロールイン
*/

.js-scrollin {
  opacity: 0;
  transform: translateY(30px);
  transition: transform ease 1s, opacity ease 1s;
}

.js-scrollin-active {
  transform: translateY(0px);
  opacity: 1;
}

/*

*/

@media (max-width: 768px) {
  #pagetop {
    padding-bottom: 60px;
  }
}

/*

*/

#header {
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  transition: background-color ease 0.3s;
}

@media (max-width: 768px) {
  #header {
    position: absolute !important;
    top: 0 !important;
    height: 0 !important;
    background-color: transparent !important;
  }
}

.is-header-fixed #header {
  position: fixed;
  top: -24px;
  height: 88px;
  background-color: #fff;
}

#header .site {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

#header .site > .logo {
  position: absolute;
  top: 40px;
  left: 0;
}

@media (max-width: 768px) {
  #header .site > .logo {
    position: absolute;
    top: 22px;
    left: 25px;
  }
}

#header .site > .logo:before {
  background-image: url(../images/common/kpg_logo_black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 175px;
  height: 30px;
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  transition: all ease 0.3s;
}

.is-header-fixed #header .site > .logo:before {
  opacity: 1;
}

@media (max-width: 768px) {
  .is-header-fixed #header .site > .logo:before {
    opacity: 0;
  }
}

#header .site > .logo img {
  opacity: 1;
  transition: all ease 0.3s;
  height: 30px;
  width: auto;
  max-width: none;
}

.is-header-fixed #header .site > .logo img {
  opacity: 0;
}

@media (max-width: 768px) {
  .is-header-fixed #header .site > .logo img {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  #header .site > .logo img {
    height: 25px;
    width: auto;
  }
}

@media (max-width: 768px) {
  #header .menu button:before,
  #header .menu button:after {
    background-color: #fff;
    transition: all ease 0.3s;
  }
  .executive #header .menu button:before,
  .executive #header .menu button:after {
    background-color: #000;
    transition: all ease 0.3s;
  }
  .is-scrolled #header .menu button:before,
  .is-scrolled #header .menu button:after,
  .is-menu-opened #header .menu button:before,
  .is-menu-opened #header .menu button:after {
    background-color: #886d55;
  }

  #header .menu button span {
    background-color: #fff;
    transition: all ease 0.3s;
  }

  .is-scrolled #header .menu button span,
  .is-menu-opened #header .menu button span {
    background-color: #886d55;
  }
}

#header .site > .global {
  position: absolute;
  top: 40px;
  right: 0;
  font-size: 0;
  color: #fff;
  transition: all ease 0.3s;
}

.is-header-fixed #header .site > .global {
  color: #666666;
}

@media (max-width: 768px) {
  #header .site > .global {
    display: none;
  }
}

#header .site > .global li {
  display: inline-block;
  margin-left: 40px;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.14em;
}

#header .site > .global li a {
  display: block;
  transition: all ease 0.3s;
}

#header .site > .global li a:hover {
  opacity: 0.5;
}

#header .site > .global li:after {
  content: "";
  display: block;
  background-color: #777;
  height: 1px;
  width: 0;
  transition: all ease 0.3s;
}

#header .site > .global li:hover:after {
  width: 100%;
}

@media (max-width: 768px) {
  #header #menu .container ul li a p + p {
    color: #886d55;
  }
}

.is-header-fixed #header .site > .change-language {
  top: 100px;
  color: #666;
  background: #fff;
  border-radius: 10px;
  width: 52px;
}

.is-header-fixed #header .site > .change-language h3 {
  padding: 10px 5px 10px 21px;
}

.is-header-fixed #header .site > .change-language h3::before {
  border-top: 9px solid #666;
  top: 18px;
  left: 13px;
}

.is-header-fixed #header .site > .change-language.is-active h3::before {
  border-bottom: 9px solid #666;
  margin-top: -14px;
}

.is-header-fixed #header .site > .change-language ul li::before {
  background-color: #666;
  left: 3px;
}

.is-header-fixed #header .site > .change-language ul li a {
    padding: 9px 15px;
}

#header .change-language {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

#header .site > .change-language {
  color: #fff;
  display: inline-block;
  position: absolute;
  right: calc(50% - 603px);
  top: 80px;
  font-size: 13px;
  text-align: center;
  width: 46px;
}

#header .site > .change-language h3 {
  position: relative;
  padding: 5px 5px 10px 16px;
  cursor: pointer;
}

#header .site > .change-language h3::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 13px;
  left: 7px;
  margin-top: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #fff;
  -webkit-transition: border 0.3s ease, margin 0.3s ease;
  -moz-transition: border 0.3s ease, margin 0.3s ease;
  transition: border 0.3s ease, margin 0.3s ease;
}

#header .site > .change-language h3,
#header .site > .change-language a {
  transition: opacity 0.3s ease;
}

#header .site > .change-language h3:hover,
#header .site > .change-language a:hover {
  opacity: 0.8;
}

#header .site > .change-language.is-active h3::before {
  border-bottom: 9px solid #fff;
  border-top: 9px solid transparent;
  margin-top: -14px;
}

#header .site > .change-language ul {
  text-align: center;
  display: none;
}

#header .site > .change-language ul li {
  display: flex;
  justify-content: center;
  position: relative;
}

#header .site > .change-language ul li a {
  padding: 10px;
}

#header .site > .change-language .is-list-opened {
  display: block;
}

#header .site > .change-language ul li::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 46px;
  height: 2px;
  top: 0;
  left: 0;
}

@media (min-width: 768px) and (max-width: 1215px) {
  #header .site > .change-language,
  .is-header-fixed #header .site > .change-language {
    right: 0;
  }
}

@media (max-width: 768px) {
  #header #menu .change-language {
    display: flex;
    color: #666;
    font-size: 10px;
    justify-content: end;
    margin-right: -8px;
    padding-top: 2px;
    margin-bottom: 4px;
  }

  #header #menu .change-language li {
    position: relative;
    margin-right: 2px;
    margin-bottom: 5px;
  }

  #header #menu .change-language li a {
    padding: 2px 5px;
  }

  #header #menu .change-language li::after {
    position: absolute;
    content: "/";
    right: 0;
    transform: translateX(75%);
  }

  #header #menu .change-language li:last-child {
    margin: 0;
  }

  #header #menu .change-language li:last-child::after {
    display: none;
  }

  #header .site > .change-language {
    display: none;
  }
}

#header #login {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.is-login-opened #header #login {
  display: block;
}

#header #login .close {
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 10;
}

@media (max-width: 768px) {
  #header #login .close {
    top: 0;
  }
}

#header #login .close button {
  cursor: pointer;
  width: 100px;
  height: 100px;
}

@media (max-width: 768px) {
  #header #login .close button {
    width: 70px;
    height: 70px;
  }
}

#header #login .close button:before,
#header #login .close button:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin-left: -10px;
  transition: margin ease 0.3s 0.3s, transform ease 0.3s 0s;
}

@media (max-width: 768px) {
  #header #login .close button:before,
  #header #login .close button:after {
    width: 20px;
    background-color: #886d55;
  }
}

#header #login .close button:before {
  margin-top: 0px;
  transform: rotate(45deg);
  transition: margin ease 0.3s 0s, transform ease 0.3s 0.3s;
}

#header #login .close button:after {
  margin-top: 0px;
  transform: rotate(135deg);
  transition: margin ease 0.3s 0s, transform ease 0.3s 0.3s;
}

#header #login .close button span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #886d55;
  margin-left: -10px;
  transition: all ease 0.3s;
  opacity: 0;
}

#header #login .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1080px;
  height: 100%;
  max-height: 700px;
  background-color: #fff;
  padding: 80px 90px;
  overflow: scroll;
}

@media (max-width: 768px) {
  #header #login .container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    padding: 50px 25px 25px;
    transform: none;
    max-height: none;
  }
}

#header #login .container .logo {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #header #login .container .logo {
    margin-bottom: 20px;
  }
}

#header #login .container .logo img {
  width: 458px;
  max-width: none;
}

@media (max-width: 768px) {
  #header #login .container .logo img {
    width: 278px;
  }
}

#header #login .container ul {
  background-color: #efefef;
  overflow: hidden;
}

#header #login .container ul li {
  width: 50%;
  min-height: 257px;
  float: left;
}

@media (max-width: 768px) {
  #header #login .container ul li {
    width: 100%;
    min-height: 0;
  }
}

#header #login .container ul li.login {
  text-align: center;
  padding: 55px 44px;
  border-right: 1px solid #fff;
}

@media (max-width: 768px) {
  #header #login .container ul li.login {
    padding: 25px;
    border-bottom: 1px solid #fff;
    border-right: none;
  }
}

#header #login .container ul li.login p {
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  #header #login .container ul li.login p {
    font-size: 10px;
  }
}

#header #login .container ul li.login p span {
  font-size: 18px;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  #header #login .container ul li.login p span {
    font-size: 12px;
  }
}

#header #login .container ul li.login form {
  width: 300px;
  margin: 0 auto;
  margin-top: 30px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #header #login .container ul li.login form {
    width: 100%;
    margin-top: 20px;
  }
}

#header #login .container ul li.login form input {
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  width: 100%;
  border: none;
  padding: 0 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #header #login .container ul li.login form input {
  }
}

#header #login .container ul li.login form button {
  background-color: #343434;
  color: #fff;
  border: none;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 12px;
  letter-spacing: 0.15em;
  padding-left: 10px;
  transition: all ease 0.3s;
}

@media (max-width: 768px) {
  #header #login .container ul li.login form button {
  }
}

#header #login .container ul li.login form button:hover {
  background-color: #000;
}

#header #login .container ul li.login form button:after {
  content: "";
  background-image: url(../images/home/icon_arrow.png);
  width: 4px;
  height: 9px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: 0;
}

#header #login .container ul li.register {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#header #login .container ul li.register:first-child {
  border-right: 1px solid #fff;
}

@media (max-width: 768px) {
  #header #login .container ul li.register {
    padding: 25px;
  }
  #header #login .container ul li.register:first-child {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}

#header #login .container ul li.register p:first-child {
  font-size: 15px;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
}

#header #login .container ul li.register:first-child p:first-child {
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

#header #login .container ul li.register p:first-child span {
  font-size: 18px;
  letter-spacing: 0.15em;
  margin-right: 10px;
}

@media (max-width: 768px) {
  #header #login .container ul li.register p:first-child {
    font-size: 10px;
    margin-bottom: 15px;
  }

  #header #login .container ul li.register:nth-child(2) p:first-child {
    font-size: 12px;
  }

  #header #login .container ul li.register:first-child p:first-child {
    margin-bottom: 20px;
  }

  #header #login .container ul li.register p:first-child span {
    font-size: 12px;
    margin-right: 10px;
  }
}

#header #login .container ul li.register p + p a {
  margin: 0 auto;
  display: block;
  width: 300px;
  line-height: 50px;
  font-size: 13px;
  color: #fff;
  background-color: #886d55;
  transition: all ease 0.3s;
  position: relative;
}

#header #login .container ul li.register p + p a::after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: block;
  position: absolute;
  right: 66px;
  top: 50%;
  margin-top: -4px;
}

#header #login .container ul li.register:first-child p + p a {
  background-color: #9c8959;
}

@media (max-width: 768px) {
  #header #login .container ul li.register p + p a {
    width: 100%;
  }

  #header #login .container ul li.register p + p a::after {
    right: calc(50% - 86px);
  }
}

#header #login .container ul li.register p + p a:hover {
  background-color: #000;
}

#header #login .container ul li.register form {
  display: block;
  width: 300px;
  margin: 0 auto;
}

#header #login .container ul li.register input {
  line-height: 48px;
  background-color: #fff;
  width: 100%;
  height: 50px;
  float: left;
  border: none;
  padding: 0 18px;
  font-size: 15px;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

#header #login .container ul li.register button {
  background-color: #343434;
  color: #fff;
  width: 100%;
  height: 50px;
  line-height: 48px;
  float: right;
  font-size: 14px;
  letter-spacing: 0.15em;
  padding-left: 10px;
  transition: all ease 0.3s;
}

#header #login .container ul li.register button::after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: 0;
}

#header #login .container ul li.register button:hover {
  background-color: #000;
}

@media (max-width: 768px) {
  #header #login .container ul li.register form {
    width: 100%;
  }

  #header #login .container ul li.register input {
    padding: 0 18px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  #header #login .container ul li.register button {
    float: right;
    font-size: 12px;
    padding-left: 10px;
  }
}

/*

*/

main .site {
  width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  main .site {
    width: 100%;
    padding: 0 25px;
  }
}

/*

*/

#visual {
  background-image: url(../images/home/visual.jpg);
  background-size: cover;
  background-position: 50% 50%;
  height: 780px;
  position: relative;
}

@media (max-width: 768px) {
  #visual {
    height: 528px;
  }
}

#visual .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#visual .logo {
  vertical-align: top;
  line-height: 1;
  text-align: center;
}

#visual .logo img {
  width: 344px;
}

@media (max-width: 768px) {
  #visual .logo img {
    width: 230px;
  }
}

#visual form {
  width: 320px;
  margin: 0 auto;
  margin-top: 64px;
  background-color: #626262;
  padding: 1px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #visual form {
    width: 275px;
    margin-top: 50px;
  }
}

#visual form input {
  height: 48px;
  line-height: 48px;
  background-color: #fff;
  width: 210px;
  float: left;
  border: none;
  padding: 0 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  #visual form input {
    width: 173px;
  }
}

#visual form button {
  background-color: #343434;
  color: #fff;
  width: 108px;
  height: 48px;
  line-height: 48px;
  float: right;
  font-size: 12px;
  letter-spacing: 0.15em;
  padding-left: 10px;
  transition: all ease 0.3s;
}

@media (max-width: 768px) {
  #visual form button {
    width: 100px;
  }
}

#visual form button:hover {
  background-color: #000;
}

#visual form button:after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: 0;
}

#visual .member {
  width: 320px;
  margin: 0 auto;
  margin-top: 64px;
}

@media (max-width: 768px) {
  #visual .member {
    width: 275px;
    margin-top: 45px;
  }
}

#visual .member a {
  display: block;
  line-height: 50px;
  background-color: #9c8959;
  color: #fff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.12em;
  position: relative;
  transition: all ease 0.3s;
}

@media (max-width: 768px) {
  #visual .member a {
    font-size: 12px;
  }
}

#visual .member a:hover {
  background-color: #000;
}

#visual .member a:after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -4px;
}

#visual .register {
  width: 320px;
  margin: 0 auto;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #visual .register {
    width: 275px;
  }
}

#visual .register a {
  display: block;
  line-height: 50px;
  background-color: #886d55;
  color: #fff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.12em;
  position: relative;
  transition: all ease 0.3s;
}

@media (max-width: 768px) {
  #visual .register a {
    font-size: 12px;
  }
}

#visual .register a:hover {
  background-color: #000;
}

#visual .register a:after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -4px;
}

#visual .scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
}

@media (max-width: 768px) {
  #visual .scroll {
    bottom: 25px;
  }
}

#visual .scroll a {
  display: block;
  font-size: 13px;
  font-size: 11px;
  color: #fff;
  transform: translateX(-50%);
  letter-spacing: 0.25em;
  background-image: url(../images/home/visual_scroll_arrow.svg);
  background-size: 16px 11px;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  padding-bottom: 22px;
  transition: all ease 0.3s;
}

@media (max-width: 768px) {
  #visual .scroll a {
    font-size: 12px;
    padding-bottom: 15px;
    background-size: 10px 5px;
  }
}

#visual .scroll a:hover {
  opacity: 0.7;
}
#visual .btnwrap {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  #visual .btnwrap {
    top: 69%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}
@media (max-width: 768px) {
  #about {
    background-color: #efefef;
  }
  #about .pic-list {
    width: 86.8%;
    margin: 30px auto 0;
  }
  #about::before {
    content: "";
    position: absolute;
    top: 300px;
    left: 0;
    background-image: url("../images/home/bglogo_about_sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
    width: 78.4%;
    height: 100vw;
  }
}

/*

*/

#about {
  padding-top: 80px;
  position: relative;
}

@media (max-width: 768px) {
  #about {
    padding: 50px 0 0;
  }
}

#about .body {
  background-color: #efefef;
  position: relative;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  #about .body {
    padding: 0 0 50px;
  }
}

#about .body:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 170px;
  background-color: #fff;
}

@media (max-width: 768px) {
  #about .body:before {
    display: none;
  }
}

#about h2 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  color: #917252;
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  #about h2 {
    font-size: 11px;
    margin-bottom: 20px;
  }
}

#about h2 span.latin-kpg {
  font-size: 26px;
  letter-spacing: 0.26em;
}

@media (max-width: 768px) {
  #about h2 span.latin-kpg {
    font-size: 15px;
  }
}

#about figure {
  position: relative;
}

@media (max-width: 768px) {
  #about figure {
    margin: 0 -25px;
  }
}

#about .container {
  width: 824px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  #about .container {
    width: auto;
  }
}

#about .container:before {
  content: "";
  background-image: url(../images/home/about_bg.png);
  background-size: cover;
  width: 600px;
  height: 600px;
  position: absolute;
  top: -40px;
  left: -300px;
  z-index: -1;
}

@media (max-width: 768px) {
  #about .container:before {
    width: 400px;
    height: 400px;
    top: -20px;
    left: -135px;
  }
}

#about .lead {
  font-size: 18px;
  line-height: 2;
  margin-top: 70px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  #about .lead {
    font-size: 13px;
    margin-top: 40px;
  }
}

#about .copy {
  margin-top: 35px;
  font-size: 24px;
  color: #917252;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 768px) {
  #about .copy {
    font-size: 22px;
    line-height: 36ppx;
    letter-spacing: 0.17em;
    margin-top: 24px;
  }
}

@media (max-width: 400px) {
  #about .copy {
    font-size: 5.4vw;
  }
}

#about .description {
  margin-top: 70px;
  font-size: 14px;
  line-height: 2;
  padding-left: 270px;
  color: #666666;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  #about .description {
    margin-top: 40px;
    padding-left: 50px;
    font-size: 12px;
  }
}

#about .description p {
  margin-top: 24px;
}

@media (max-width: 768px) {
  #about .description p {
    margin-top: 24px;
  }
}

#about .body:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 170px;
  background-color: #fff;
  background: -webkit-linear-gradient(
    180deg,
    rgb(239, 239, 239),
    rgb(255, 255, 255)
  );
  background: linear-gradient(180deg, rgb(239, 239, 239), rgb(255, 255, 255));
}

/*

*/

#feature {
  padding-top: 80px;
  position: relative;
}

@media (max-width: 768px) {
  #feature {
    padding-top: 50px;
  }
}

#feature > .body {
  background-color: #efefef;
  padding-bottom: 100px;
  position: relative;
}

@media (max-width: 768px) {
  #feature > .body {
    padding-bottom: 50px;
  }
}

#feature > .body:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 175px;
  background-color: #fff;
}

@media (max-width: 768px) {
  #feature > .body:before {
    display: none;
  }
}

#feature h2 {
  position: relative;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  color: #917252;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  #feature h2 {
    font-size: 11px;
    margin-bottom: 25px;
  }
}

#feature h2 span.latin-kpg {
  font-size: 26px;
  letter-spacing: 0.26em;
}

@media (max-width: 768px) {
  #feature h2 span.latin-kpg {
    font-size: 17px;
    margin-bottom: 8px;
    display: block;
  }
}

#feature figure {
  position: relative;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  #feature figure {
    margin: 0 -25px 50px;
  }
}

/*

*/

#plan {
  padding: 100px 0 120px;
}

@media (max-width: 768px) {
  #plan {
    padding: 50px 0;
  }
}

#plan header {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #plan header {
    margin-bottom: 25px;
  }
}

#plan h2 {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 0.26em;
}

@media (max-width: 768px) {
  #plan h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

#plan h2 + p {
  font-size: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #917252;
}

@media (max-width: 768px) {
  #plan h2 + p {
    font-size: 10px;
  }
}

#plan ul.plan li {
  position: relative;
  padding-left: 336px;
}

@media (max-width: 768px) {
  #plan ul.plan li {
    padding-left: 0;
  }
}

#plan ul.plan li + li {
  margin-top: 150px;
}

@media (max-width: 768px) {
  #plan ul.plan li + li {
    margin-top: 40px;
  }
}

#plan ul.plan li .marker {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #866b4f;
}

@media (max-width: 768px) {
  #plan ul.plan li .marker {
    font-size: 10px;
    position: relative;
    margin-bottom: 15px;
  }
}

#plan ul.plan li figure {
  position: relative;
}

#plan ul.plan li figure:after {
  content: "";
  background-color: #e5e5e5;
  width: 1px;
  height: 40px;
  left: 30px;
  bottom: 0;
  position: absolute;
  display: block;
}

@media (max-width: 768px) {
  #plan ul.plan li figure:after {
    left: 12px;
  }
}

#plan ul.plan li .location {
  position: relative;
  border-left: 1px solid #e5e5e5;
  padding-top: 20px;
  padding-bottom: 15px;
  margin-left: 30px;
  padding-left: 30px;
}

@media (max-width: 768px) {
  #plan ul.plan li .location {
    margin-left: 12px;
    padding-left: 12px;
    padding-bottom: 0;
  }
}

#plan ul.plan li .name {
  font-weight: 100;
  font-size: 28px;
  font-weight: 100;
  line-height: 40px;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  #plan ul.plan li .name {
    font-size: 17px;
    line-height: 22px;
  }
}

#plan ul.plan li .kana {
  display: inline-block;
  line-height: 22px;
  color: #999999;
  font-size: 13px;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  #plan ul.plan li .kana {
    font-size: 10px;
    line-height: 16px;
    margin-bottom: 10px;
    display: block;
  }
}

#plan ul.plan li .category {
  display: inline-block;
  margin: 0 20px;
  line-height: 22px;
  background-color: #e5e5e5;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  #plan ul.plan li .category {
    line-height: 18px;
    font-size: 10px;
    margin: 0;
    padding: 0 12px;
  }
}

#plan ul.plan li .title {
  background-color: #b6a99c;
  color: #fff;
  font-size: 15px;
  line-height: 28px;
  padding: 7px 25px;
  margin-top: 30px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  #plan ul.plan li .title {
    font-size: 13px;
    line-height: 24px;
    padding: 3px 12px;
    margin-top: 15px;
  }
}

#plan ul.plan li .body {
  background-color: #f7f7f7;
  padding: 25px;
}

@media (max-width: 768px) {
  #plan ul.plan li .body {
    padding: 12px;
  }
}

#plan ul.plan li .body p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  #plan ul.plan li .body p {
    font-size: 13px;
    line-height: 23px;
  }
}

#plan ul.plan li .body p .price {
  color: #a47e56;
}

#plan ul.plan li .body p .tax {
  font-size: 10px;
}

#plan ul.plan li .body p.benefit {
  color: #999999;
  background-color: #fff;
  font-size: 12px;
  line-height: 2;
  padding: 8px 20px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  #plan ul.plan li .body p.benefit {
    font-size: 11px;
    line-height: 20px;
    padding: 12px 20px;
  }
}

#plan ul.note {
  border: 1px solid #eeeeee;
  padding: 20px 30px;
  font-size: 13px;
  line-height: 2;
  color: #999999;
  letter-spacing: 0.12em;
  margin: 40px auto 0;
  max-width: 742px;
}

@media (max-width: 768px) {
  #plan ul.note {
    margin-left: 0;
    font-size: 10px;
    line-height: 18px;
    padding: 15px 15px;
    margin-top: 25px;
  }
}

#plan ul.note li {
  position: relative;
  padding-left: 1.5em;
}

#plan ul.note li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

#plan .more {
  width: 240px;
  line-height: 50px;
  background-color: #343434;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-top: 60px;
  transition: all ease 0.3s;
  cursor: pointer;
  display: block;
}

@media (max-width: 768px) {
  #plan .more {
    margin-top: 25px;
    font-size: 12px;
  }
}

#plan .more:hover {
  background-color: #000;
}

#plan .more:after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: inline-block;
  margin-left: 12px;
  vertical-align: 0;
}

/*

*/

#facility {
  padding: 120px 0;
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  #facility {
    padding: 50px 0;
    background-color: #f9f9f9;
  }
}

#facility header {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #facility header {
    margin-bottom: 25px;
  }
}

#facility h2 {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 0.26em;
}

@media (max-width: 768px) {
  #facility h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

#facility h2 + p {
  font-size: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #917252;
}

@media (max-width: 768px) {
  #facility h2 + p {
    font-size: 10px;
  }
}

#facility ul {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-bottom: -30px;
}

@media (max-width: 768px) {
  #facility ul {
    margin-bottom: -15px;
  }
}

#facility ul li {
  width: 33.333333%;
  float: left;
  padding: 0 15px;
  margin-bottom: 30px;
}

#facility ul li:nth-child(3n) {
  transition-delay: 0.2s;
}

#facility ul li:nth-child(3n + 2) {
  transition-delay: 0.1s;
}

@media (max-width: 768px) {
  #facility ul li {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 15px;
  }

  #facility ul li:nth-child(3n) {
    transition-delay: 0s;
  }

  #facility ul li:nth-child(3n + 2) {
    transition-delay: 0s;
  }

  #facility ul li:nth-child(2n) {
    transition-delay: 0.1s;
  }
}

#facility ul li .card {
  background-color: #fff;
  padding: 0 20px 80px;
  height: 100%;
  position: relative;
}

@media (max-width: 768px) {
  #facility ul li .card {
    padding: 0 10px 50px;
  }
}

#facility ul li .card figure {
  margin: 0 -20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #facility ul li .card figure {
    margin: 0 -10px 10px;
  }
  #facility ul li .card figure img {
    display: block;
    width: 100%;
    height: auto;
  }
}

#facility ul li .name {
  font-size: 15px;
  line-height: 24px;
}

@media (max-width: 768px) {
  #facility ul li .name {
    font-size: 11px;
    line-height: 16px;
  }
}

#facility ul li .pref {
  position: absolute;
  top: 0;
  right: 0;
  width: 107px;
  line-height: 30px;
  background-color: #222222;
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  #facility ul li .pref {
    width: 60px;
    line-height: 20px;
    font-size: 8px;
  }
}

#facility ul li .category {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid #efefef;
}

@media (max-width: 768px) {
  #facility ul li .category {
    font-size: 10px;
    line-height: 18px;
    padding-top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

#facility ul li .category span {
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 0 10px;
  line-height: 26px;
  background-color: #e5e5e5;
}

@media (max-width: 768px) {
  #facility ul li .category span {
    font-size: 10px;
    line-height: 18px;
  }
}

#facility .more {
  width: 240px;
  line-height: 50px;
  background-color: #343434;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-top: 60px;
  transition: all ease 0.3s;
  cursor: pointer;
  display: block;
}

@media (max-width: 768px) {
  #facility .more {
    margin-top: 25px;
    font-size: 12px;
  }
}

#facility .more:hover {
  background-color: #000;
}

#facility .more:after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: inline-block;
  margin-left: 12px;
  vertical-align: 0;
}

/*

*/

#cta {
  padding: 120px 0;
  background-image: url(../images/home/cta_bg.jpg);
  background-size: cover;
}

@media (max-width: 768px) {
  #cta {
    padding-top: 60px;
    padding-bottom: 25px;
  }
}

#cta h2 {
  margin-bottom: 60px;
  text-align: center;
  margin-bottom: 50px;
}

#cta h2 img {
  width: 260px;
}

@media (max-width: 768px) {
  #cta h2 {
    margin-bottom: 30px;
  }

  #cta h2 img {
    vertical-align: top;
    width: auto;
    height: 104px;
  }
}

#cta .description p {
  font-size: 16px;
  line-height: 36px;
  color: #fff;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  max-width: 592px;
  margin: 36px auto 0;
}

@media (max-width: 768px) {
  #cta .description p {
    font-size: 12px;
    line-height: 24px;
    margin-top: 24px;
    max-width: unset;
  }
}

#cta ul.cta {
  margin-top: 60px;
}

@media (max-width: 768px) {
  #cta ul.cta {
    margin-top: 40px;
  }
}

#cta ul.cta p {
  margin-top: 0;
  line-height: 1;
}

#cta ul.cta li {
  background: url(../images/home/cta_bg_01.png) top left / auto 200px repeat;
  width: 680px;
  padding: 30px 40px;
  margin: 0 auto;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #cta ul.cta li {
    width: 100%;
    padding: 20px 25px;
    margin-top: 15px;
  }
}

#cta ul.cta li.register {
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

#cta ul.cta li.register .copy {
  font-size: 16px;
  line-height: 70px;
  float: left;
  color: #333333;
  padding-left: 10px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  #cta ul.cta li.register .copy {
    font-size: 12px;
    line-height: 40px;
    padding-left: 0;
    text-align: center;
    float: none;
  }
}

#cta ul.cta .hours-note {
  font-size: 11px;
  color: #999;
  padding-left: 30px;
}

#cta ul.cta .action {
  width: 320px;
  line-height: 70px;
  font-size: 15px;
  color: #fff;
  background-color: #886d55;
  text-align: center;
  letter-spacing: 0.15em;
  transition: all ease 0.3s;
  margin-left: auto;
  margin-right: auto;
}

#cta ul.cta li.register .action {
  float: right;
}

@media (max-width: 768px) {
  #cta ul.cta .action {
    width: 100%;
    line-height: 50px;
    font-size: 12px;
  }

  #cta ul.cta .hours-note {
    display: block;
    padding: 5px 0 0;
  }
}

#cta ul.cta .action:hover {
  background-color: #000;
}

#cta ul.cta .action:after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: inline-block;
  margin-left: 12px;
  vertical-align: 0;
}

#cta ul.cta li.tel .copy {
  font-size: 17px;
  color: #333333;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  #cta ul.cta li.tel .copy {
    font-size: 10px;
  }
}

#cta ul.cta li.tel .tel {
  font-size: 36px;
  color: #886d55;
  text-align: center;
  margin-top: 20px;
  font-weight: 300;
}

#cta ul.cta li.tel .tel .latin {
  font-weight: 400;
}

@media (max-width: 768px) {
  #cta ul.cta li.tel .tel {
    font-size: 28px;
    margin-top: 12px;
  }
}

#cta ul.cta li.tel .tel a {
  display: inline-block;
}

#cta ul.cta li.tel .tel a:before {
  content: "";
  background-image: url(../images/home/cta_tel_icon.svg);
  background-size: 22px 31px;
  width: 22px;
  height: 31px;
  display: inline-block;
  margin-right: 20px;
  vertical-align: -2px;
}

@media (max-width: 768px) {
  #cta ul.cta li.tel .tel a:before {
    margin-right: 10px;
    width: 15.5px;
    height: 22px;
    background-size: 15.5px 22px;
  }
}

#cta ul.cta li.tel .hours {
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 40px;
  color: #000;
  text-align: center;
  background-color: #fff;
  margin-top: 25px;
}

@media (max-width: 768px) {
  #cta ul.cta li.tel .hours {
    font-size: 11px;
    line-height: 1;
    padding: 10px;
    margin-top: 12px;
  }
}

#cta ul.cta li.tel .hours .note {
  font-size: 11px;
  color: #999999;
  margin-left: 30px;
}

@media (max-width: 768px) {
  #cta ul.cta li.tel .hours .note {
    display: block;
    font-size: 10px;
    padding-left: 0;
    margin-top: 5px;
    margin-left: 0;
  }
}

#sidenav {
  position: fixed;
  color: #fff;
  width: 60px;
  height: 283px;
  text-align: center;
  line-height: 60px;
  font-size: 15px;
  letter-spacing: 0.18em;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #886d55;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding-bottom: 10px;
  z-index: 100;
  right: -60px;
  transition: all ease 0.3s;
  cursor: pointer;
}

@media (max-width: 768px) {
  #sidenav {
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    top: auto;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    width: auto;
    font-size: 14px;
    line-height: 60px;
    transform: none;
    padding-left: 10px;
  }
}

#sidenav:hover {
  background-color: #000;
}

.is-fv-scrolled #sidenav {
  right: 0;
}

@media (max-width: 768px) {
  .is-fv-scrolled #sidenav {
    bottom: 0;
  }

  .is-scrolling #sidenav {
    bottom: -60px;
  }
}

#sidenav p:after {
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  background-size: 4px 9px;
  width: 4px;
  height: 9px;
  display: block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -2px;
}

@media (max-width: 768px) {
  #sidenav p:after {
    display: inline-block;
    position: static;
    margin-left: 12px;
  }
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 1080px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 92px 98px;
  display: block;
  z-index: 100;
  font-size: 18px;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
}

#popup .close {
  position: absolute;
  top: 15px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  line-height: 1;
}

#popup .logo {
  position: absolute;
  bottom: 55px;
  right: 97px;
}

@media (max-width: 1023px) {
  #popup .logo {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 15px auto 0;
    display: inherit;
    text-align: right;
  }
}

@media (max-width: 768px) {
  #popup {
    width: 92%;
    padding: 30px 25px;
    font-size: 13px;
  }

  #popup .close {
    top: 7px;
    right: 10px;
    font-size: 25px;
  }
}
#visual .btnwrap a:after {
  content: none;
  background: transparent;
}
.executive #visual {
  background-image: url(../images/home/bgmv.jpg);
  height: 780px;
  background-size: cover;
  background-position: 50% 50%;
}
@media (max-width: 768px) {
  .executive #visual {
    height: 100vh;
    min-height: 530px;
  }
}
.executive #header .site > .global {
  color: #000;
}
.executive #visual .scroll a {
  color: #000;
  background-image: url(../images/home/visual_scroll_arrow_black.svg);
}
.executive #visual .scroll a span.latin {
  font-weight: 600;
}
.executive .login-username {
  display: none;
  opacity: 0;
  z-index: -99999999999999;
  position: absolute;
  left: -100vw;
  height: 0;
  visibility: hidden;
}
.executive .our-brand-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(75, 75, 75, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s ease-in-out 0.3s, opacity 0.3s 0s, transform 0.3s;
  z-index: 999;
}
.executive .our-brand-modal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s ease-in-out 0s, opacity 0.3s 0s, transform 0.3s;
}

.executive .overlay {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.executive .our-brand-modal.is-visible .overlay {
  z-index: 996 !important;
  pointer-events: auto !important;
}
.executive .our-brand-modal #video-modal-iframe {
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  position: absolute;
  background-color: #fff;
  width: 680px;
  padding: 30px 40px;
  margin: 0 auto;
  margin-top: 20px;
  z-index: 998;
  display: flex;
  flex-direction: column;
}

.executive .our-brand-modal #video-modal-iframe .close {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 20px;
  height: 20px;
  z-index: 9;
  cursor: pointer;
}
.executive .our-brand-modal #video-modal-iframe .close .line {
  width: 100%;
  height: 1px;
  background-color: #525353;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  transform-origin: center;
  position: absolute;
  top: 8px;
  left: 0;
}
.executive .our-brand-modal #video-modal-iframe .close .line:nth-child(2) {
  transform: rotate(-45deg);
}
.executive .our-brand-modal .logopopup {
  width: 170px;
  margin: 0 auto 30px;
}

#loginpopup {
  display: flex;
  align-items: center;
  width: 400px;
  margin: 0 auto;
}
#loginpopup input[type="submit"] {
  width: 100px;
  height: 44px;
  border: none;
  background-color: #525353;
  color: #fff;
  cursor: pointer;
}
#loginpopup input#user_pass {
  width: 300px;
  height: 44px;
  border: 1px solid #525353;
  padding: 10px 20px;
  font-size: 32px;
}
@media (max-width: 768px) {
  .executive .our-brand-modal #video-modal-iframe {
    width: 93%;
    padding: 20px 10px;
  }
  .executive #loginpopup {
    width: 100%;
    justify-content: center;
  }
  .executive #loginpopup .login-submit input[type="submit"] {
    width: 80px;
  }
  .executive #loginpopup .login-password input#user_pass {
    width: 180px;
  }
}
#loginpopup input:focus {
  outline: none;
  border: none;
}
.executive #about .txt {
  line-height: 2.2;
  text-align: center;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
}

.executive #about {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .executive #about .txt {
    font-size: 13px;
    margin-top: 25px;
    text-align: left;
  }
  .executive #about {
    padding-bottom: 60px;
  }
}
.executive #about .container:before {
  content: none;
}
.executive #feature > .body:before {
  content: none;
}
.executive #feature {
  padding-top: 116px;
  background-color: #efefef;
}
@media (max-width: 768px) {
  .executive #feature {
    padding-top: 60px;
  }
}
.executive #feature .no {
  color: #917252;
  font-size: 95px;
  line-height: 1;
  font-family: "Belize";
  opacity: 0.4;
}
@media (max-width: 768px) {
  .executive #feature .no {
    font-size: 70px;
    text-align: center;
    width: 75px;
  }

  .executive #feature ol {
    margin: 50px 0 0px 0px;
  }

  .executive #feature ol li .body {
    padding-left: 90px;
  }
  .executive #feature ol li .copy {
    font-size: 14px;
  }
}
.executive #cta ul.cta li.tel .tel {
  color: #000;
  font-family: Futura, 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo,
    sans-serif;
}
.executive #cta ul.cta li.tel .tel a:before {
  background-image: url(../images/home/cta_tel_icon_black.svg);
}
.executive #cta {
  background-position-y: 20%;
}
.executive .btn-gnavi {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 60px;
}
.executive .tit-mag {
  margin-top: 116px;
  margin-bottom: 43px;
  color: #917252;
}
@media (max-width: 768px) {
  .executive .tit-mag {
    margin-top: 55px;
  }
}
.executive .tit-mag h2 {
  position: relative;
}
.executive .tit-mag h2:before {
  content: "";
  background-color: #737171;
  position: absolute;
  top: 50%;
  right: 50%;
  left: 0;
  margin-right: 170px;
  height: 1px;
}
.executive .tit-mag h2:after {
  content: "";
  background-color: #737171;
  position: absolute;
  top: 50%;
  right: 0;
  left: 50%;
  margin-left: 170px;
  height: 1px;
}
@media (max-width: 768px) {
  .executive .tit-mag h2:before {
    left: 0;
    margin-right: 35%;
    height: 2px;
  }
  .executive .tit-mag h2:after {
    margin-left: 35%;
    height: 2px;
  }
}
.executive .benefits {
  display: flex;
  column-gap: 100px;
  justify-content: center;
}
.executive .list-benefits {
  font-size: 18px;
  color: #000000;
  line-height: 2.11111;
}
.executive #feature ul.note {
  margin-top: 0;
  width: 855px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .only-sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .executive #feature h2 {
    font-size: 17px;
  }
  .only-pc {
    display: none;
  }
  .executive .benefits {
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .executive .list-benefits {
    font-size: 14px;
    line-height: 2.1;
    padding-left: 10px;
  }
  .executive .list-benefits span {
    padding-left: 13px;
  }
  .executive #feature ul.note {
    margin-top: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #feature ul.note {
    margin-left: 48px;
  }
}
.executive .note li::before {
  content: "※";
}
.executive #header #login .container ul {
  width: 50%;
  margin: auto;
}
.executive #header #login .container ul li {
  width: 100%;
}
@media (max-width: 768px) {
  .about-gallery {
    margin-top: calc(64 / 750 * 100%);
  }
  .about-gallery .gallery-image {
    position: relative;
    display: flex;
    margin-bottom: calc(74 / 750 * 100%);
  }
  .about-gallery .gallery-image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .about-gallery .gallery-image.is-first {
    width: calc(460 / 700 * 100%);
  }
  .about-gallery .gallery-image.is-second {
    width: calc(384 / 700 * 100%);
    margin-left: auto;
    margin-right: 0;
  }
  .about-gallery .gallery-image.is-third {
    justify-content: center;
    width: 100%;
  }
  .about-gallery .gallery-image:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #header #menu .container .cta li.form a {
    background-color: #886d55;
  }
}