@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  margin-block: 0;
  margin-inline: 0;
  min-height: 100vh;
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, table, th, td, form, address, figure {
  margin-block-start: 0;
  margin-block-end: 2.5rem;
  margin-inline: 0;
  padding-block: 0;
  padding-inline: 0;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Lucida Grande", "Lucida Sans Unicode", Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", sans-serif;
  font-style: normal;
  line-height: 1.5;
  color: #333333;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p {
  line-height: 1.8;
}

ul {
  padding-block: 0;
  padding-inline: 0;
  list-style: none;
}
ul li {
  margin-block-end: 0.5rem;
  padding-inline-start: 16px;
  text-indent: -13px;
}
ul li:before {
  content: "･";
  margin-inline-end: 5px;
}

ol {
  counter-reset: number 0;
  padding-block: 0;
  padding-inline: 0;
  list-style: none;
}
ol > li {
  margin-block-end: 0.5rem;
  padding-inline-start: 16px;
  text-indent: -15px;
}
ol > li:before {
  counter-increment: number 1;
  content: counter(number) ".";
  margin-inline-end: 5px;
  letter-spacing: -0.15em;
}

dl dt, dl dd {
  margin-block-end: 0.5rem;
}
dl dt {
  font-weight: 700;
}

table {
  width: 100%;
  margin-block-end: 2.5rem;
  border-collapse: collapse;
}
table caption {
  margin-block-end: 1.5rem;
  font-weight: 700;
}
table th, table td {
  padding-block: 1.5rem;
  padding-inline: 2rem;
  border: 1px solid #aaaaaa;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: #1a0dab;
}

a:not([class]):hover {
  color: #6a5ef3;
}

img, picture {
  display: block;
  max-width: 100%;
}

span, input, button, textarea, select {
  font: inherit;
}

input[type="text"] {
  padding-block: 5px;
  padding-inline: 5px;
  border: 1px solid #aaaaaa;
}

textarea:not([rows]) {
  min-width: 50vw;
  min-height: 15rem;
  border: 1px solid #aaaaaa;
}

:target {
  scroll-margin-block: 5ex;
}

::-moz-selection {
  background: #3498db;
  color: #ffffff;
}

::selection {
  background: #3498db;
  color: #ffffff;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body > * {
  position: relative;
  z-index: 1;
}

header > *, footer > * {
  max-width: 2000px;
  margin-inline: auto;
  padding-inline: 8vw;
}

main {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
  grid-auto-flow: dense;
  background: #ffffff;
}
main #contents {
  grid-column: 2 / 3;
}
main #contents > * {
  padding-block: 2em;
  padding-inline: 10vw;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents > * {
    padding-inline: 5vw;
  }
}
main #contents > * > * {
  max-width: 2000px;
  margin-inline: auto;
}
main #contents > *:nth-child(even) {
  background: #fafafa;
}

aside {
  padding-inline: 2vw;
}

#public-relations {
  grid-column: 1 /4;
  height: 100vh;
  max-height: 1125px;
}
#public-relations > * {
  max-width: 2000px;
  margin-inline: auto;
}

#visual {
  grid-column: 1 /4;
  width: 100%;
  height: 90vh;
  max-height: 1125px;
  z-index: 0;
}
#visual #visual-box {
  position: fixed;
  inset: 0 auto;
  max-width: 2000px;
  margin-inline: auto;
}

/*===========================================
Heading Customize
===========================================*/
main #contents > * > h1 {
  position: relative;
  font-size: 26.5px;
  font-size: 1.65625rem;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-align: center;
}
main #contents > * > h1 span {
  display: inline-block;
  padding-bottom: 1.5rem;
}
main #contents > * > h1 span:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin-block: 0;
  margin-inline: auto;
  width: 60px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h1 span.ptn01 {
  display: inline-block;
  padding-bottom: 0;
  position: relative;
}
main #contents > * > h1 span.ptn01:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h1 span.ptn01:after {
  content: '';
  position: absolute;
  top: 50%;
  bottom: auto;
  right: -80px;
  left: auto;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h2 {
  position: relative;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-align: center;
}
main #contents > * > h2 span {
  display: inline-block;
  padding-bottom: 1.5rem;
}
main #contents > * > h2 span:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin-block: 0;
  margin-inline: auto;
  width: 60px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h2 span.ptn01 {
  display: inline-block;
  padding-bottom: 0;
  position: relative;
}
main #contents > * > h2 span.ptn01:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h2 span.ptn01:after {
  content: '';
  position: absolute;
  top: 50%;
  bottom: auto;
  right: -80px;
  left: auto;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h3 {
  position: relative;
  font-size: 23.5px;
  font-size: 1.46875rem;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-align: center;
}
main #contents > * > h3 span {
  display: inline-block;
  padding-bottom: 1.5rem;
}
main #contents > * > h3 span:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin-block: 0;
  margin-inline: auto;
  width: 60px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h3 span.ptn01 {
  display: inline-block;
  padding-bottom: 0;
  position: relative;
}
main #contents > * > h3 span.ptn01:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h3 span.ptn01:after {
  content: '';
  position: absolute;
  top: 50%;
  bottom: auto;
  right: -80px;
  left: auto;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h4 {
  position: relative;
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-align: center;
}
main #contents > * > h4 span {
  display: inline-block;
  padding-bottom: 1.5rem;
}
main #contents > * > h4 span:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin-block: 0;
  margin-inline: auto;
  width: 60px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h4 span.ptn01 {
  display: inline-block;
  padding-bottom: 0;
  position: relative;
}
main #contents > * > h4 span.ptn01:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h4 span.ptn01:after {
  content: '';
  position: absolute;
  top: 50%;
  bottom: auto;
  right: -80px;
  left: auto;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h5 {
  position: relative;
  font-size: 20.5px;
  font-size: 1.28125rem;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-align: center;
}
main #contents > * > h5 span {
  display: inline-block;
  padding-bottom: 1.5rem;
}
main #contents > * > h5 span:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin-block: 0;
  margin-inline: auto;
  width: 60px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h5 span.ptn01 {
  display: inline-block;
  padding-bottom: 0;
  position: relative;
}
main #contents > * > h5 span.ptn01:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h5 span.ptn01:after {
  content: '';
  position: absolute;
  top: 50%;
  bottom: auto;
  right: -80px;
  left: auto;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h6 {
  position: relative;
  font-size: 19px;
  font-size: 1.1875rem;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-align: center;
}
main #contents > * > h6 span {
  display: inline-block;
  padding-bottom: 1.5rem;
}
main #contents > * > h6 span:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin-block: 0;
  margin-inline: auto;
  width: 60px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h6 span.ptn01 {
  display: inline-block;
  padding-bottom: 0;
  position: relative;
}
main #contents > * > h6 span.ptn01:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}
main #contents > * > h6 span.ptn01:after {
  content: '';
  position: absolute;
  top: 50%;
  bottom: auto;
  right: -80px;
  left: auto;
  width: 50px;
  height: 2px;
  transform: scaleY(0.5);
  background: #399139;
}

/*===========================================
Page Scroll Customize
===========================================*/
#page-scroll {
  position: fixed;
  bottom: 10px;
  right: 2%;
  animation: arrowmove 3s ease-in-out infinite;
  z-index: 100;
}
@keyframes arrowmove {
  0% {
    bottom: 3%;
  }
  50% {
    bottom: 5%;
  }
  100% {
    bottom: 3%;
  }
}
#page-scroll span {
  display: block;
  position: relative;
  width: 30px;
  padding-top: 90px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.5;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transition: all 0.3s ease 0s;
  color: #666666;
  cursor: pointer;
}
#page-scroll span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 12px;
  margin-left: 4px;
  background: #666666;
  transform: skewX(31deg);
  transition: all 0.3s ease 0s;
}
#page-scroll span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 80px;
  background: #666666;
  transform: scaleX(0.5);
  transition: all 0.3s ease 0s;
}

.on-scroll #page-scroll span {
  padding-top: 0;
  padding-bottom: 90px;
  color: #ffffff;
  cursor: default;
}
.on-scroll #page-scroll span:before {
  top: auto;
  bottom: 0;
  background: #ffffff;
  transform: skewX(-31deg);
}
.on-scroll #page-scroll span:after {
  top: auto;
  bottom: 0;
  background: #ffffff;
}

.sp #page-scroll {
  z-index: 90;
}

/*===========================================
Column Customize
===========================================*/
.clm02, .clm03, .clm04, .clm05 {
  display: grid;
  gap: 2rem;
}

.clm02 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 468px) {
  .clm02 {
    display: block;
  }
}

.clm03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 0) and (max-width: 768px) {
  .clm03 {
    display: block;
  }
}

.clm04 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .clm04 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 468px) {
  .clm04 {
    display: block;
  }
}

.clm05 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1024px) {
  .clm05 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 0) and (max-width: 768px) {
  .clm05 {
    display: block;
  }
}

/*===========================================
Element Animation Customize
===========================================*/
.gimmick {
  opacity: 0;
  transition: transform 1s, opacity 1s, visibility 1s;
}

.gimmick-start.animation-fadein-left {
  opacity: 1;
  animation: fadeInLeft 1s ease 0.3s 1 normal backwards;
}
.gimmick-start.animation-fadein-right {
  opacity: 1;
  animation: fadeInRight 1s ease 0.3s 1 normal backwards;
}
.gimmick-start.animation-fadein-bottom {
  opacity: 1;
  animation: fadeIn 1s ease 0.3s 1 normal backwards;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===========================================
Header Area Setting
===========================================*/
header {
  position: relative;
  border-bottom: 1px solid #eaeaea;
  z-index: 100;
}
header #logo {
  position: fixed;
  top: 15px;
  z-index: 100;
}
header #logo h1 {
  margin: 0;
}
header #logo img {
  width: auto;
  height: 50px;
}

.sp header #logo {
  top: 8px;
}
.sp header #logo img {
  height: 35px;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/*===========================================
Footer Area Setting
===========================================*/
footer {
  background: #f5f5f5;
  border-top: 1px solid #eaeaea;
}
footer #footer {
  padding-block-start: 5rem;
  padding-block-end: 2rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  footer #footer {
    padding-block-start: 2rem;
  }
}
footer #footer #fnav {
  padding-inline: 0;
  font-size: inherit;
}
footer #footer #fnav > ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  font-size: inherit;
}
@media screen and (max-width: 1024px) {
  footer #footer #fnav > ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 0) and (max-width: 768px) {
  footer #footer #fnav > ul {
    display: flex;
    flex-wrap: wrap;
    margin-block-end: 0;
  }
}
footer #footer #fnav > ul > li {
  padding-inline-start: 0;
  font-size: inherit;
  white-space: nowrap;
  text-indent: 0;
}
footer #footer #fnav > ul > li:before {
  display: none;
}
footer #footer #fnav > ul > li ul {
  margin-block: 0;
  padding: 1rem 0;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  footer #footer #fnav > ul > li ul {
    display: none;
  }
}
footer #footer #fnav > ul > li ul li {
  margin-block: 0.5rem;
  padding-inline-start: 5px;
  font-size: inherit;
  white-space: nowrap;
  text-indent: 0;
}
footer #footer #fnav > ul > li ul li:before {
  content: "-";
  margin-inline-end: 0;
  color: #888888;
}
footer #footer #fnav > ul > li ul a {
  font-weight: normal;
  color: #888888;
}
footer #footer #fnav > ul > li ul a span {
  color: inherit;
}
footer #footer #fnav > ul > li ul a span:hover {
  color: #399139;
}
footer #footer #fnav > ul a {
  display: inline-block;
  position: relative;
  padding: 0 5px;
  font-weight: bold;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-decoration: none;
  color: #111111;
}
footer #footer #fnav > ul a span {
  display: block;
  font-size: inherit;
  font-family: inherit;
}
footer #footer #fnav > ul a span:hover {
  color: #b4e2b4;
}
footer #footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-inline: 8vw;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  padding-inline: 0;
  font-size: 14px;
  font-size: 0.875rem;
  border-top: 1px solid #eaeaea;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  footer #footer-bottom {
    display: block;
  }
}
footer #footer-bottom #cnav ul {
  display: flex;
  flex-wrap: wrap;
  margin-block-end: 0;
  font-size: inherit;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  footer #footer-bottom #cnav ul {
    justify-content: center;
  }
}
@media screen and (max-width: 468px) {
  footer #footer-bottom #cnav ul {
    justify-content: flex-start;
  }
}
footer #footer-bottom #cnav ul li {
  margin-block-end: 0;
  margin-inline-end: 3rem;
  font-size: inherit;
  text-indent: 0;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  footer #footer-bottom #cnav ul li {
    margin-inline-end: 1rem;
  }
}
footer #footer-bottom #cnav ul li:before {
  display: none;
}
footer #footer-bottom #cnav ul li a {
  display: inline-block;
  padding-block: 1rem;
  font-family: 'Times New Roman', serif;
  white-space: nowrap;
  text-decoration: none;
  color: #111111;
}
footer #footer-bottom #cnav ul li a:hover {
  color: #888888;
}
footer #copy {
  display: block;
  padding-block: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: 'Times New Roman', serif;
  text-align: center;
  color: #888888;
}

/*===========================================
Parts List
===========================================*/
.parts-list > *:nth-child(1) .parts-list-box {
  border-top: none;
}
.parts-list .parts-list-area > a {
  margin: 0;
  text-decoration: none;
}
.parts-list .parts-list-box {
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: auto;
  gap: 2rem;
  margin-block-end: 2rem !important;
  padding-block-start: 2rem;
  border-top: 1px solid #efefef;
}
.parts-list .parts-list-box:hover .parts-list-image img {
  transform: translate(-50%, -50%) scale(1.2, 1.2);
}
.parts-list .parts-list-box .parts-list-text {
  grid-row: 1 / 2;
}
.parts-list .parts-list-box .parts-list-text .parts-list-tag {
  display: inline-block;
  margin-block-end: 0.8rem;
  margin-inline-end: 0.5rem;
  padding: 2px 15px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
  background: #111111;
  color: #ffffff;
}
.parts-list .parts-list-box .parts-list-text .parts-list-date {
  display: block;
  margin-block-end: 0.8rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
  color: #999999;
}
.parts-list .parts-list-box .parts-list-text .parts-list-title {
  display: block;
  margin-block-end: 0.8rem;
}
.parts-list .parts-list-box .parts-list-text .parts-list-summary {
  margin-block-end: 1rem;
}
.parts-list .parts-list-box .parts-list-image {
  grid-row: 1 / 3;
  position: relative;
  margin: 0;
  overflow: hidden;
  order: -1;
}
.parts-list .parts-list-box .parts-list-image:before {
  content: "";
  display: block;
  padding-top: 70.7213578501%;
}
.parts-list .parts-list-box .parts-list-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.parts-list .parts-list-box .parts-list-btn {
  grid-row: 2 / 3;
}
.parts-list .parts-list-box .parts-list-btn span {
  display: inline-block;
  padding-block: 0.5rem;
  padding-inline: 2rem;
  border: 2px solid #111111;
  border-radius: 100px;
  color: #111111;
  transition: 0.3s;
}
.parts-list .parts-list-box .parts-list-btn span:hover {
  background: #111111;
  color: #ffffff;
}
.parts-list a.parts-list-box:hover .parts-list-btn span {
  background: #111111;
  color: #ffffff;
}
.parts-list.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.parts-list.gallery .parts-list-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-block-end: 0 !important;
  border: none;
}
.parts-list.gallery .parts-list-box .parts-list-text {
  padding-inline: 0.5rem;
}
.parts-list.gallery .parts-list-btn {
  text-align: center;
}

/*===========================================
Parts Table
===========================================*/
table {
  width: 100%;
  border-collapse: collapse;
}

tbody tr {
  transition: all 0.5s ease 0s;
}
tbody tr:hover {
  background: rgba(57, 145, 57, 0.1) !important;
}

th {
  padding: 10px 15px;
  line-height: 1.5;
  border: 1px solid #ccc;
}

td {
  padding: 10px 15px;
  line-height: 1.5;
  border: 1px solid #ccc;
}

caption {
  text-align: right;
}

.parts-table tbody > *:nth-child(even) {
  background: #f9f9f9;
}
.parts-table th {
  text-align: center;
  background: none;
}
.parts-table.borderless {
  border: none;
}
.parts-table.borderless th, .parts-table.borderless td {
  border: none;
  border-bottom: 1px solid #cccccc;
}

/*===========================================
Parts Gallery
===========================================*/
.parts-gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.parts-gallery:after {
  content: '';
  display: block;
  width: 31.6666666667%;
}
.parts-gallery .parts-list-box {
  width: 31.6666666667%;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px 0px #eaeaea;
  border: 1px solid #efefef;
}
.parts-gallery .parts-list-box a {
  flex-direction: column;
  padding: 15px;
  border-top: none;
}
.parts-gallery .parts-list-box .parts-list-text {
  padding: 15px 0;
}
.parts-gallery .parts-list-box .parts-list-image {
  width: 100%;
  margin-left: 0;
}

/*===========================================
Header Area
===========================================*/
header {
  border-bottom: none;
}
header #header {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  header #header {
    padding-inline: 5vw;
  }
}
header #header #logo {
  position: static;
  margin-block-start: 1rem;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  header #header #logo {
    left: 5%;
  }
  header #header #logo img {
    height: 25px;
  }
}
header #header #free-dial {
  margin-block-start: 1rem;
}
header #header #free-dial img {
  width: auto;
  height: 60px;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  header #header #free-dial img {
    height: 30px;
  }
}
header.is-fixed {
  position: static;
  background: none;
  z-index: 1;
}

/*===========================================
Footer Area
===========================================*/
footer #footer-bottom {
  border-top: none;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  footer #footer-bottom #cnav ul {
    justify-content: center;
  }
}
footer #copy {
  font-family: 'Noto Sans JP', sans-serif;
}

/*===========================================
Common Setting Area
===========================================*/
main {
  overflow: hidden;
}
main #contents section {
  padding-block: 5rem;
}
main #contents section h2 {
  position: relative;
  margin-block-end: 100px;
  padding-inline-end: 100px;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents section h2 {
    padding-inline-end: 0;
  }
}
main #contents section h2 span {
  position: absolute;
  bottom: -50px;
  left: 0;
  padding-block: 0;
  padding-inline: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
  background: #111111;
  color: #ffffff;
}
main #contents section h2 span:after {
  display: none;
}

/*===========================================
Meeting / Overview Area
===========================================*/
main #contents #meeting, main #contents #support {
  padding-inline: 0;
  gap: 5rem;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #meeting, main #contents #support {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    padding-inline: 5vw;
  }
}
main #contents #meeting figure, main #contents #support figure {
  position: relative;
  width: 100%;
  height: 100%;
}
main #contents #meeting figure img, main #contents #support figure img {
  position: absolute;
  width: 400px;
  height: 400px;
  object-fit: cover;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #meeting figure img, main #contents #support figure img {
    width: 350px;
    height: 350px;
  }
}
main #contents #meeting figure img:nth-of-type(1), main #contents #support figure img:nth-of-type(1) {
  top: 0;
  left: 0;
}
main #contents #meeting figure img:nth-of-type(2), main #contents #support figure img:nth-of-type(2) {
  bottom: 0;
  right: 0;
  width: 350px;
  height: 350px;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #meeting figure img:nth-of-type(2), main #contents #support figure img:nth-of-type(2) {
    width: 300px;
    height: 300px;
  }
}
main #contents #meeting #meeting-text {
  padding-inline-end: 8vw;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #meeting #meeting-text {
    padding-inline-end: 0;
  }
}
main #contents #meeting figure {
  order: -1;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #meeting figure {
    order: 0;
  }
}
main #contents #support #support-text {
  padding-inline-start: 8vw;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #support #support-text {
    padding-inline-start: 0;
  }
}

/*===========================================
Overview Area
===========================================*/
main #contents #overview {
  background: rgba(57, 145, 57, 0.3);
}
main #contents #overview #plan {
  gap: 5rem;
}
main #contents #overview #plan > * {
  /*margin-block-start: 5rem;*/
}
main #contents #overview #plan > *:nth-child(1) {
  margin-block-start: 0;
}
main #contents #overview #plan h3 {
  position: relative;
  margin-block-end: 1rem;
  padding-block-end: 1rem;
  padding-inline-start: 2rem;
  font-size: 30px;
  font-size: 1.875rem;
  border-bottom: 1px solid #399139;
}
main #contents #overview #plan h3:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 80%;
  background: #399139;
}
main #contents #overview #plan dl dt {
  margin-block-start: 3rem;
  font-size: 20px;
  font-size: 1.25rem;
  color: #399139;
}
main #contents #overview #plan dl dt:nth-child(1) {
  margin-block-start: 0;
}
main #contents #overview #plan dl dd {
  font-size: 30px;
  font-size: 1.875rem;
}
main #contents #overview #plan dl dd span {
  font-size: 16px;
  font-size: 1rem;
}

/*===========================================
Access Area
===========================================*/
main #contents #access {
  padding-inline: 0;
  background: #ffffff;
}
main #contents #access #access-inner {
  padding-inline: 10vw;
}
main #contents #access #access-inner #route {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #access #access-inner #route {
    display: block;
  }
}
main #contents #access #access-inner #route dl dt {
  margin-block-start: 2rem;
  font-size: 20px;
  font-size: 1.25rem;
}
main #contents #access #access-inner #route dl dt:nth-child(1) {
  margin-block-start: 0;
}
main #contents #access #access-inner #route dl dt span {
  font-weight: normal;
}
main #contents #access #access-inner #route dl dd {
  display: inline-block;
  margin-inline-end: 2rem;
  font-size: 19px;
  font-size: 1.1875rem;
}
main #contents #access #access-inner #route dl dd:before {
  content: "";
  display: inline-block;
  margin-inline-end: 0.5rem;
  width: 20px;
  height: 20px;
  margin-block-start: -5px;
  vertical-align: middle;
  border: 4px solid #111111;
  border-radius: 100px;
}
main #contents #access #access-inner #route dl dd.hibiya:before {
  border-color: #b5b5ad;
}
main #contents #access #access-inner #route dl dd.ginza:before {
  border-color: #f19a38;
}
main #contents #access #access-inner #route dl dd.hanzo:before {
  border-color: #8b76d0;
}
main #contents #access #access-inner #route dl dd.soubu:before {
  border-color: #ffd400;
}
main #contents #access #access-inner #route dl dd.yamate:before {
  border-color: #89c85d;
}
main #contents #access #access-inner #route dl dd.shinjuku:before {
  border-color: #b3c146;
}
main #contents #access #access-inner #route dl dd.asakusa:before {
  border-color: #d04e3c;
}
main #contents #access #gmap {
  display: grid;
  place-items: center;
}
main #contents #access #gmap dl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-block-start: 3rem;
  margin-block-end: 0;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #access #gmap dl {
    display: block;
  }
}
main #contents #access #gmap dl dt {
  font-size: inherit;
}
main #contents #access #gmap dl dd {
  font-size: inherit;
}
main #contents #access #gmap dl dd br {
  display: none;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #access #gmap dl dd br {
    display: block;
  }
}

/*===========================================
Introduction Area
===========================================*/
main #contents #introduction {
  background: #fafafa;
}
main #contents #introduction h3 {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Noto Serif JP", serif;
  text-align: left;
}
main #contents #introduction h3 span {
  font-size: 16px;
  font-size: 1rem;
}
main #contents #introduction h3 span:after {
  display: none;
}

/*===========================================
Contact Area
===========================================*/
main #contents #contact .symbol-required {
  margin: 0 10px;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.4;
  vertical-align: top;
  color: #286528;
}
main #contents #contact form {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  main #contents #contact form {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  main #contents #contact form .form-group {
    padding-inline: 0;
  }
}
main #contents #contact form p .symbol-required {
  font-size: 12px;
  font-size: 0.75rem;
  vertical-align: baseline;
  color: #399139;
}
main #contents #contact form p a {
  color: #111111;
}
main #contents #contact form dl {
  display: flex;
  position: relative;
  margin-block-end: 0;
  line-height: 0;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #contact form dl {
    display: block;
    margin-block-end: 1rem;
  }
}
main #contents #contact form dl dt {
  flex: 0 0 30%;
  position: relative;
  min-width: 0;
  margin-block-end: 0;
  padding: 2rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  white-space: nowrap;
  line-height: 2.8;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #contact form dl dt {
    line-height: 0;
  }
}
main #contents #contact form dl dt .symbol-required {
  position: absolute;
  top: 2.4rem;
  right: 0;
  font-size: 14px;
  font-size: 0.875rem;
  color: #399139;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #contact form dl dt {
    padding-block-start: 1rem;
    padding-block-end: 0.5rem;
    border-bottom: none;
  }
  main #contents #contact form dl dt .symbol-required {
    position: relative;
    top: 0.4rem;
  }
}
main #contents #contact form dl dd {
  flex: 1 1 auto;
  margin-block-end: 0;
  padding: 2rem;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  main #contents #contact form dl dd {
    padding-block-start: 0.5rem;
    padding-block-end: 1rem;
  }
}
main #contents #contact form input[type="text"], main #contents #contact form input[type="password"], main #contents #contact form input[type="email"], main #contents #contact form input[type="tel"], main #contents #contact form textarea {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
}
main #contents #contact form input, main #contents #contact form select, main #contents #contact form textarea {
  vertical-align: middle;
  border: 1px solid #cccccc;
}
main #contents #contact form input[type="text"], main #contents #contact form input[type="file"], main #contents #contact form input[type="password"], main #contents #contact form input[type="email"], main #contents #contact form input[type="tel"], main #contents #contact form textarea {
  padding: 8px;
  box-sizing: border-box;
  border-radius: 3px;
  appearance: none;
  color: #333333;
}
main #contents #contact form input[type="text"].error, main #contents #contact form input[type="file"].error, main #contents #contact form input[type="password"].error, main #contents #contact form input[type="email"].error, main #contents #contact form input[type="tel"].error, main #contents #contact form textarea.error {
  background: #ffe5e5;
  box-shadow: 0 0 10px 0 #f80000;
  border: 1px solid #ffe5e5;
  color: #111111;
}
main #contents #contact form input[type="text"]:focus, main #contents #contact form input[type="file"]:focus, main #contents #contact form input[type="password"]:focus, main #contents #contact form input[type="email"]:focus, main #contents #contact form input[type="tel"]:focus, main #contents #contact form textarea:focus {
  box-shadow: 0 0 10px 0 #399139;
  outline: 1px solid #90d490;
  border: 1px solid #90d490;
}
main #contents #contact form label {
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: left;
}
main #contents #contact form label.required {
  line-height: 1.5;
}
main #contents #contact form label.required:after {
  content: '*';
  margin: 0 10px;
  color: #ff6c00;
}
main #contents #contact form span.example {
  display: block;
  margin-bottom: 3px;
  text-align: left;
  line-height: 1.2;
  color: #999999;
}
main #contents #contact form span.error_blank {
  display: block;
  margin-block: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.2;
  color: #d80000;
}
main #contents #contact form .select {
  display: inline-block;
  position: relative;
}
main #contents #contact form .select:after {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  vertical-align: middle;
  pointer-events: none;
  transform: rotate(90deg);
  color: #888888;
}
main #contents #contact form .select select {
  margin-bottom: 10px;
  padding: 5px 50px 5px 5px;
  box-sizing: border-box;
  border-radius: 2px;
  text-align: left !important;
  appearance: none;
  border: 1px solid #cccccc;
  color: #333333;
}
main #contents #contact form .select select.error {
  background: #ffe5e5;
  box-shadow: 0 0 10px 0 #f80000;
  border: 1px solid #ffe5e5;
}
main #contents #contact form .select select:focus {
  box-shadow: 0 0 10px 0 #3498db;
  outline: 1px solid #9acced;
  border: 1px solid #9acced;
}
main #contents #contact form .select select::-ms-expand {
  display: none;
}
main #contents #contact form .check {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}
main #contents #contact form .check:before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 4px;
  height: 9px;
  line-height: 10px;
  text-align: center;
  border-right: 2px solid #5488e2;
  border-bottom: 2px solid #5488e2;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 1;
}
main #contents #contact form .check:after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #cccccc;
}
main #contents #contact form .radio {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}
main #contents #contact form .radio:before {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  width: 9px;
  height: 9px;
  line-height: 9px;
  text-align: center;
  border-radius: 100px;
  background: #5488e2;
  opacity: 0;
  z-index: 1;
}
main #contents #contact form .radio:after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #cccccc;
  border-radius: 100px;
}
main #contents #contact form .form-check input[type=checkbox] {
  display: none;
}
main #contents #contact form .form-check input[type=checkbox]:checked + .check span {
  color: #d80000;
}
main #contents #contact form .form-check input[type=checkbox]:checked + .check:before {
  opacity: 1;
}
main #contents #contact form .form-check input[type=radio] {
  display: none;
}
main #contents #contact form .form-check input[type=radio]:checked + .radio span {
  color: #d80000;
}
main #contents #contact form .form-check input[type=radio]:checked + .radio:before {
  opacity: 1;
}
main #contents #contact form input[type="checkbox"], main #contents #contact form input[type="radio"] {
  position: absolute;
  top: 12px;
  left: -23px;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  box-shadow: 24px 0px #ffffff;
  appearance: none;
  z-index: 2;
}
main #contents #contact form input[type="checkbox"]:checked, main #contents #contact form input[type="radio"]:checked {
  box-shadow: none;
}
main #contents #contact form input[type="checkbox"].error + label:before, main #contents #contact form input[type="radio"].error + label:before {
  top: 3px;
  left: 7px;
}
main #contents #contact form input[type="checkbox"].error + label:after, main #contents #contact form input[type="radio"].error + label:after {
  left: 1px;
  background: #ffe5e5;
  box-shadow: 0 0 10px 0 #f80000;
  border: 1px solid #ffe5e5;
}
main #contents #contact form input[type="radio"].error + label:before {
  top: 5px;
  left: 5px;
}
main #contents #contact form .upload-area {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
main #contents #contact form .upload-area > span {
  display: inline-block;
  padding: 3px 6px;
  font-size: 3px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background: #ef514a;
  background-image: -moz-linear-gradient(top, #f16861 0%, #ef514a 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f16861), color-stop(100%, #ef514a));
  background-image: -webkit-linear-gradient(top, #f16861 0%, #ef514a 100%);
  background-image: -o-linear-gradient(top, #f16861 0%, #ef514a 100%);
  background-image: -ms-linear-gradient(top, #f16861 0%, #ef514a 100%);
  background-image: linear-gradient(to bottom, #f16861 0%, #ef514a 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease 0s;
  box-sizing: border-box;
  border-radius: 4px;
  property: 61.3725490196%;
  text-shadow: 1px -1px 0px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  cursor: pointer;
  margin: 0 0 5px 10px;
  padding: 8px 16px;
  white-space: nowrap;
}
main #contents #contact form .upload-area > span:link {
  text-decoration: none;
  color: #ffffff;
}
main #contents #contact form .upload-area > span:active {
  box-shadow: inset 1px 1px 3px 0 #c91a12;
}
main #contents #contact form .upload-area > span:hover {
  background: #ef514a;
  background-image: -moz-linear-gradient(top, #f2716b 0%, #f16861 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2716b), color-stop(100%, #f16861));
  background-image: -webkit-linear-gradient(top, #f2716b 0%, #f16861 100%);
  background-image: -o-linear-gradient(top, #f2716b 0%, #f16861 100%);
  background-image: -ms-linear-gradient(top, #f2716b 0%, #f16861 100%);
  background-image: linear-gradient(to bottom, #f2716b 0%, #f16861 100%);
}
main #contents #contact form .upload-area > span.delete {
  display: inline-block;
  padding: 3px 6px;
  font-size: 3px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background: #dddddd;
  background-image: -moz-linear-gradient(top, #eaeaea 0%, #dddddd 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eaeaea), color-stop(100%, #dddddd));
  background-image: -webkit-linear-gradient(top, #eaeaea 0%, #dddddd 100%);
  background-image: -o-linear-gradient(top, #eaeaea 0%, #dddddd 100%);
  background-image: -ms-linear-gradient(top, #eaeaea 0%, #dddddd 100%);
  background-image: linear-gradient(to bottom, #eaeaea 0%, #dddddd 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease 0s;
  box-sizing: border-box;
  border-radius: 4px;
  property: 86.6666666667%;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
  color: #000000;
  cursor: pointer;
  padding: 8px;
}
main #contents #contact form .upload-area > span.delete:link {
  text-decoration: none;
  color: #ffffff;
}
main #contents #contact form .upload-area > span.delete:active {
  box-shadow: inset 1px 1px 3px 0 #9b9b9b;
}
main #contents #contact form .upload-area > span.delete:hover {
  background: #dddddd;
  background-image: -moz-linear-gradient(top, #efefef 0%, #eaeaea 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #efefef), color-stop(100%, #eaeaea));
  background-image: -webkit-linear-gradient(top, #efefef 0%, #eaeaea 100%);
  background-image: -o-linear-gradient(top, #efefef 0%, #eaeaea 100%);
  background-image: -ms-linear-gradient(top, #efefef 0%, #eaeaea 100%);
  background-image: linear-gradient(to bottom, #efefef 0%, #eaeaea 100%);
}
main #contents #contact form .upload-area > span.delete:before {
  vertical-align: middle;
  color: #888888;
}
main #contents #contact form .upload-area input[type="file"] {
  display: none;
}
main #contents #contact form .upload-area .text-box {
  order: -1;
  position: relative;
  width: 100%;
}
main #contents #contact form .upload-area .text-box input[type="text"] {
  margin-bottom: 5px;
}
main #contents #contact form .upload-area .text-box input[type="text"]:disabled {
  background: #ffffff;
}
main #contents #contact form .upload-area .text-box input[type="text"].error {
  background: #ffe5e5;
}
main #contents #contact form .upload-area .file-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 5px;
  cursor: pointer;
  background: none;
}
main #contents #contact form .form-package {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main #contents #contact form .form-package label {
  margin-left: 10px;
  margin-right: 10px;
  white-space: nowrap;
}
main #contents #contact form .form-package label:first-child {
  margin-left: 0;
}
main #contents #contact form .form-package + .example {
  margin-bottom: 15px;
}
main #contents #contact form .form-package .btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background: #399139;
  background-image: -moz-linear-gradient(top, #40a340 0%, #399139 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #40a340), color-stop(100%, #399139));
  background-image: -webkit-linear-gradient(top, #40a340 0%, #399139 100%);
  background-image: -o-linear-gradient(top, #40a340 0%, #399139 100%);
  background-image: -ms-linear-gradient(top, #40a340 0%, #399139 100%);
  background-image: linear-gradient(to bottom, #40a340 0%, #399139 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease 0s;
  box-sizing: border-box;
  border-radius: 4px;
  property: 39.6078431373%;
  text-shadow: 1px -1px 0px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  cursor: pointer;
  margin-inline: 1rem;
  padding: 8px 16px;
  font-size: 16px;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
}
main #contents #contact form .form-package .btn:link {
  text-decoration: none;
  color: #ffffff;
}
main #contents #contact form .form-package .btn:active {
  box-shadow: inset 1px 1px 3px 0 #286628;
}
main #contents #contact form .form-package .btn:hover {
  background: #399139;
  background-image: -moz-linear-gradient(top, #43ab43 0%, #40a340 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #43ab43), color-stop(100%, #40a340));
  background-image: -webkit-linear-gradient(top, #43ab43 0%, #40a340 100%);
  background-image: -o-linear-gradient(top, #43ab43 0%, #40a340 100%);
  background-image: -ms-linear-gradient(top, #43ab43 0%, #40a340 100%);
  background-image: linear-gradient(to bottom, #43ab43 0%, #40a340 100%);
}
@media screen and (max-width: 468px) {
  main #contents #contact form .form-package .btn {
    margin-inline-end: 0;
  }
}
main #contents #contact #form-btn {
  margin: 30px 0;
  text-align: center;
}
main #contents #contact #form-btn > #form_submit {
  display: inline-block;
  position: relative;
  margin-block-end: 1rem;
}
main #contents #contact #form-btn > #form_submit:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translate(0, -50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: calc(tan(60deg) * 5px) solid #ffffff;
}
main #contents #contact #form-btn .btn {
  display: inline-block;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background: #399139;
  background-image: -moz-linear-gradient(top, #40a340 0%, #399139 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #40a340), color-stop(100%, #399139));
  background-image: -webkit-linear-gradient(top, #40a340 0%, #399139 100%);
  background-image: -o-linear-gradient(top, #40a340 0%, #399139 100%);
  background-image: -ms-linear-gradient(top, #40a340 0%, #399139 100%);
  background-image: linear-gradient(to bottom, #40a340 0%, #399139 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease 0s;
  box-sizing: border-box;
  border-radius: 4px;
  property: 39.6078431373%;
  text-shadow: 1px -1px 0px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  cursor: pointer;
  padding: 18px 50px;
  text-indent: 15px;
}
main #contents #contact #form-btn .btn:link {
  text-decoration: none;
  color: #ffffff;
}
main #contents #contact #form-btn .btn:active {
  box-shadow: inset 1px 1px 3px 0 #286628;
}
main #contents #contact #form-btn .btn:hover {
  background: #399139;
  background-image: -moz-linear-gradient(top, #43ab43 0%, #40a340 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #43ab43), color-stop(100%, #40a340));
  background-image: -webkit-linear-gradient(top, #43ab43 0%, #40a340 100%);
  background-image: -o-linear-gradient(top, #43ab43 0%, #40a340 100%);
  background-image: -ms-linear-gradient(top, #43ab43 0%, #40a340 100%);
  background-image: linear-gradient(to bottom, #43ab43 0%, #40a340 100%);
}

/*===========================================
Common Parts Area
===========================================*/
.notes li {
  padding-inline-start: 22px;
  text-indent: -22px;
}
.notes li:before {
  content: "※";
  color: #399139;
}

/*===========================================
Visual Area
===========================================*/
#visual {
  position: relative;
  height: calc( 100vh - 100px );
}
@media screen and (min-width: 0) and (max-width: 768px) {
  #visual {
    height: calc( 100vh - 70px );
  }
}
#visual #visual-box {
  display: grid;
  gap: 5rem;
  grid-template-columns: 30% 1fr;
  place-items: center;
  position: static;
}
#visual #visual-box #visual-text {
  display: flex;
  width: 100%;
  padding-inline-start: 8vw;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  #visual #visual-box #visual-text {
    padding-inline-start: 0;
  }
}
#visual #visual-box #visual-text h1 {
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 2.5;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  #visual #visual-box #visual-text h1 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
#visual #visual-box #visual-text h1 span {
  padding-block-start: 0.7rem;
  background-image: linear-gradient(to bottom, #399139 5px, transparent 5px);
  background-size: 2px 12px;
  background-repeat: repeat-y;
  background-position: right top;
  transform: scaleY(0.5);
}
#visual #visual-box figure {
  margin-block-end: 0;
}
#visual #visual-box figure img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  #visual #visual-box figure img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 468px) {
  #visual #visual-box {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
