@charset "UTF-8";
/* ######################################################################

　お問い合わせのレイアウト用ファイル

　作 成 日：2020/05/27
　更 新 日：
　作 成 者：岩本 大洋

###################################################################### */
/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　@import

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　ノーマライズ

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
html {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  line-height: 1;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
}

section, nav, article, aside, h1, h2, h3, h4, h5, h6, hgroup, header, footer, main, address,
p, blockquote, ol, ul, li, dl, dt, dd, figure, figcaption, div,
a, em, strong, small, s, cite, q, dfn, abbr, time, kbd, i, b, mark, span,
ins, del,
img, iframe, embed, object, video, audio, canvas, map,
table, caption, tbody, thead, tfoot, tr, td, th,
form, fieldset, legend, label,
details, summary, command, menu,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  font: inherit;
  font-size: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

ol, ul {
  list-style: none;
}

sub {
  font: inherit;
  vertical-align: baseline;
}

sup {
  font: inherit;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

th {
  font-weight: normal;
}

input, button, select, datalist, optgroup, option, textarea, keygen, output, progress, meter {
  font: inherit;
  font-size: inherit;
  vertical-align: baseline;
  margin: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

hr {
  display: block;
  margin: 0;
  padding: 0;
  border-top: solid 1px #000;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* ######################################################################

　共通のレイアウト用ファイル [@import _include/_common]

　作 成 日：2019/11/01
　更 新 日：
　作 成 者：田中 大士

　命名規則：
　　mix-in：mixin-[ファイル名]-[効果名]
　　関　数：function-[ファイル名]-[効果名]
　　定　数：$const-[ファイル名]-[効果名]
　　Extend：.extend-[ファイル名]-[効果名]　※classで定義する
　　アニメ：motion-[ファイル名]-[効果名]

###################################################################### */
/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　mixin

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　関数

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　Extend

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.extend-common-centering-hv {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.extend-common-centering-h {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.extend-common-centering-v {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　全体設定

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
html {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html:lang(en) {
  font-family: "Open Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  body {
    width: auto;
  }
}

.wrapper {
  position: relative;
  overflow: hidden;
  -webkit-transition: min-height 0.5s;
  transition: min-height 0.5s;
}
.pc-mode {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-mode {
    display: none;
  }
}

.pc-mode-inline-block {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .pc-mode-inline-block {
    display: none;
  }
}

.sp-mode {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-mode {
    display: block;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　共通パーツ

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.button-contactform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  background: #d9e022 url("../images/common/arrow-right-black.svg") no-repeat right 15px center/22px auto;
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: none;
}
_:-ms-fullscreen, :root .button-contactform {
  background: #d9e022 url("../images/common/arrow-right-black.svg") no-repeat right 15px center/22px 16px;
}

.button-contactform img {
  width: 27px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .button-contactform {
    background: #d9e022 url("../images/common/arrow-right-black.svg") no-repeat right 4vw center/5.8666666667vw auto;
    font-size: 1.8rem;
  }
  .button-contactform img {
    width: 7.2vw;
    margin-right: 2.6666666667vw;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　ヘッダー

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.header {
  position: relative;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  background: #fff;
}
.header.is-fixed header {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 32px;
}
.header.is-fixed header h1 a img.text {
  display: none;
}
.header.is-fixed header address dl dt {
  font-size: 1.2rem;
}
.header.is-fixed header address dl dd {
  font-size: 2rem;
}
.header.is-fixed .global-nav {
  position: absolute;
  width: calc(100% - 112px);
  right: 112px;
  bottom: 10px;
  margin: 0;
}
.header.is-fixed .common-dropdown {
  top: 24px;
}
.header.is-fixed .common-dropdown div.en {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header.is-fixed .drawer {
  top: 10px;
}
.header.is-fixed .lang {
  top: 15px;
}
@media screen and (min-width: 768px) {
  .header.is-fixed header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header.is-fixed header address {
    margin: 10px 180px 0 0;
  }
  .header.is-fixed .global-nav {
    display: none !important;
  }
  .header.is-fixed .lang {
    top: 26px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: relative;
  }
  .header.is-fixed header {
    padding: 4vw 18.6666666667vw 4vw 2.6666666667vw;
  }
  .header.is-fixed header address dl dt {
    font-size: 1rem;
  }
  .header.is-fixed header address dl dd {
    font-size: 1.6rem;
  }
  .header.is-fixed .drawer {
    top: 2.6666666667vw !important;
  }
  .header.is-fixed .lang {
    top: 5.3333333333vw;
    right: 1.3333333333vw;
  }
  .header.is-fixed .lang.en {
    top: 6.6666666667vw;
    right: 1.8666666667vw;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: #fff;
  padding: 25px 32px;
}
_:-ms-fullscreen, :root header h1 {
  width: 340px;
}

header h1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-decoration: none;
}
header h1 a img.mark {
  height: 46px;
}
header h1 a img.mark.en {
  width: 100%;
}
header h1 a img.text {
  height: 16px;
  margin: 0 0 10px 20px;
}
header h1 a img.text.en {
  height: 20px;
  width: 100%;
  margin: 0 0 5px 20px;
}
header address {
  margin: 0 180px 10px 0;
}
header address dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
header address dl dt {
  background: #d9e022;
  font-size: 1.6rem;
  line-height: 26px;
  padding: 0 12px;
  border-radius: 13px;
}
header address dl dd {
  color: #009151;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 4vw 18.6666666667vw 4vw 2.6666666667vw;
  }
  header h1 a img.mark {
    width: 33.3333333333vw;
    height: auto;
  }
  header h1 a img.mark.en {
    width: 33.3333333333vw;
  }
  header h1 a img.text {
    display: none;
  }
  header address {
    margin: 0;
  }
  header address dl {
    display: block;
  }
  header address dl dt {
    display: inline-block;
    width: auto;
    font-size: 1rem;
    line-height: 22px;
    padding: 0 1.3333333333vw;
    border-radius: 11px;
  }
  header address dl dd {
    font-size: 1.6rem;
    margin: 1.3333333333vw 0 0;
  }
}

.drawer {
  position: absolute;
  top: 25px;
  right: 32px;
}
.drawer a img {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .drawer {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
  .drawer a img {
    width: 10.6666666667vw;
  }
}

.lang {
  position: absolute;
  right: 40px;
  top: 36px;
  font-size: 17px;
}
.lang.en {
  right: 50px;
}
.lang__icon {
  background: url(/images/common/ei-language.png) top left no-repeat;
  background-size: 20px 20px;
  width: 150px;
  height: 40px;
  color: #333;
  padding-left: 25px;
  float: left;
}
@media screen and (max-width: 767px) {
  .lang {
    top: 5.3333333333vw;
    right: 1.3333333333vw;
    font-size: 13px;
  }
  .lang.en {
    top: 6.6666666667vw;
    right: 1.8666666667vw;
  }
  .lang__icon {
    background-size: 14px 14px;
    width: 130px;
    height: 40px;
    color: #333;
    padding-top: 0;
    padding-left: 17px;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　メガメニュー

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.common-megamenu {
  background: #009151;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: hidden;
  max-height: 100vh;
  overflow-y: auto;
  display: none;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
.common-megamenu.open {
  display: block;
  padding: 70px 30px 60px;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.common-megamenu .close01 {
  position: absolute;
  top: 25px;
  right: 32px;
}
.common-megamenu .close01 img {
  width: 50px;
}
_:-ms-fullscreen, :root .common-megamenu .close01 img {
  height: 50px;
}

.common-megamenu .close02 {
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.common-megamenu .close02.en {
  bottom: 30px;
}
.common-megamenu .close02 img {
  width: 25px;
}
_:-ms-fullscreen, :root .common-megamenu .close02 img {
  height: 25px;
}

.common-megamenu .close02 span {
  display: block;
  font-size: 1.5rem;
  margin-top: 5px;
}
.common-megamenu aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(66.67% - 10px);
}
.common-megamenu aside > a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}
.common-megamenu aside section {
  width: calc(50% - 15px);
}
.common-megamenu aside section .button-contactform {
  width: 335px;
  line-height: 58px;
  border-radius: 29px;
  margin: 0 auto;
}
.common-megamenu div {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
}
.common-megamenu div.pc-mode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.common-megamenu div > section {
  width: calc(33.33% - 20px);
  border-top: solid 1px rgba(255, 255, 255, 0.6);
}
.common-megamenu div > section > a, .common-megamenu div > section ul a, .common-megamenu div > section small a {
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.8;
}
.common-megamenu div > section > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
.common-megamenu div > section > p a {
  color: #fff;
  text-decoration: none;
}
.common-megamenu div > section > p a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.common-megamenu div > section > p a:first-child {
  font-size: 1.6rem;
  padding: 10px;
}
.common-megamenu div > section > p a:last-child {
  background: transparent url("../images/common/arrow-right-white.svg") no-repeat right 10px center/16px auto;
  width: 25px;
  height: 25px;
}
_:-ms-fullscreen, :root .common-megamenu div > section > p a:last-child {
  background: transparent url("../images/common/arrow-right-white.svg") no-repeat right 10px center/16px 16px;
}

.common-megamenu div > section > a {
  background: transparent url("../images/common/arrow-right-white.svg") no-repeat right 10px center/16px auto;
  font-size: 1.6rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  padding: 10px;
}
_:-ms-fullscreen, :root .common-megamenu div > section > a {
  background: transparent url("../images/common/arrow-right-white.svg") no-repeat right 10px center/16px 16px;
}

.common-megamenu div > section > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.common-megamenu div > section > ul a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.common-megamenu div > section > ul > li {
  padding: 10px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
.common-megamenu div > section > ul > li > a {
  font-size: 1.4rem;
  font-weight: bold;
}
.common-megamenu div > section > ul > li ul {
  margin-left: 1em;
}
.common-megamenu div > section > ul > li ul li a {
  font-size: 1.3rem;
  padding: 5px 0;
}
.common-megamenu div > section small {
  display: block;
  font-size: 1.2rem;
  margin: 30px 5px 0;
}
.common-megamenu div > section small + small {
  margin: 15px 5px 0;
}
.common-megamenu div > section small a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .common-megamenu {
    position: fixed;
    height: 100%;
    padding: 8vw 10.6666666667vw 13.3333333333vw;
  }
  .common-megamenu .close01 {
    top: 3.7333333333vw;
    right: 2.6666666667vw;
  }
  .common-megamenu .close01 img {
    width: 10.6666666667vw;
  }
  .common-megamenu .close02 {
    position: static;
  }
  .common-megamenu .close02 img {
    width: 6.6666666667vw;
  }
  .common-megamenu .close02 span {
    margin-top: 1.3333333333vw;
  }
  .common-megamenu .close-bottom {
    display: block;
    text-align: center;
    margin: 10.6666666667vw auto 0;
  }
  .common-megamenu aside {
    display: block;
    width: auto;
  }
  .common-megamenu aside > a {
    font-size: 1.6rem;
  }
  .common-megamenu aside section {
    width: auto;
  }
  .common-megamenu aside section .button-contactform {
    width: auto;
    line-height: 60px;
    border-radius: 30px;
    margin: 10.6666666667vw auto 0;
  }
  .common-megamenu div {
    margin-top: 2.6666666667vw;
  }
  .common-megamenu div.pc-mode {
    display: none;
  }
  .common-megamenu div.sp-mode {
    display: block;
  }
  .common-megamenu div > section {
    width: auto;
  }
  .common-megamenu div > section > a, .common-megamenu div > section ul a, .common-megamenu div > section small a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
  }
  .common-megamenu div > section > p:nth-child(1) {
    border-top: solid 1px rgba(255, 255, 255, 0.6);
  }
  .common-megamenu div > section > p a:first-child {
    padding: 2.6666666667vw;
  }
  .common-megamenu div > section > p a:last-child {
    background: #009151 url("../images/common/arrow-right-white.svg") no-repeat right 2.6666666667vw center/4.2666666667vw auto;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
  .common-megamenu div > section > a {
    background: #009151 url("../images/common/arrow-right-white.svg") no-repeat right 2.6666666667vw center/4.2666666667vw auto;
    padding: 2.6666666667vw;
  }
  .common-megamenu div > section > a:nth-child(1) {
    border-top: solid 1px rgba(255, 255, 255, 0.6);
  }
  .common-megamenu div > section aside {
    margin-bottom: 2.6666666667vw;
  }
  .common-megamenu div > section > ul > li {
    padding: 0;
  }
  .common-megamenu div > section > ul > li > a {
    font-size: 1.6rem;
    padding: 2.6666666667vw;
  }
  .common-megamenu div > section > ul > li > a.open {
    background: transparent url("../images/common/icon-plus-white.svg") no-repeat right 2.6666666667vw center/4.2666666667vw auto;
  }
  .common-megamenu div > section > ul > li > a.close {
    background: transparent url("../images/common/icon-minus-white.svg") no-repeat right 2.6666666667vw center/4.2666666667vw auto;
  }
  .common-megamenu div > section > ul > li > a.close + ul {
    max-height: 1000px;
  }
  .common-megamenu div > section > ul > li ul {
    margin: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    max-height: 0;
  }
  .common-megamenu div > section > ul > li ul.opend {
    max-height: none;
  }
  .common-megamenu div > section > ul > li ul li {
    border-top: solid 1px rgba(255, 255, 255, 0.6);
    padding: 0 1em;
  }
  .common-megamenu div > section > ul > li ul li a {
    font-size: 1.4rem;
    padding: 1.3333333333vw 0;
  }
  .common-megamenu div > section small {
    display: block;
    font-size: 1.2rem;
    margin: 30px 5px 0;
  }
  .common-megamenu div > section small + small {
    margin: 15px 5px 0;
  }
  .common-megamenu div > section small a:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
  .common-megamenu div > section.layer01 {
    background: #009151;
    padding: 8vw 10.6666666667vw 37.3333333333vw;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 10;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .common-megamenu div > section.layer01.slide {
    -webkit-transform: translateX(-97.3333333333vw);
            transform: translateX(-97.3333333333vw);
  }
  .common-megamenu div > section.layer02 {
    background: #18b788;
    padding: 8vw 10.6666666667vw 37.3333333333vw;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1;
  }
  .common-megamenu div > section.layer02.current {
    z-index: 5;
  }
  .common-megamenu div > section.layer02 aside > a img {
    width: 4.2666666667vw;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　グローバルナビ

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.global-nav {
  margin: 0 30px;
}
.global-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.global-nav > ul > li + li {
  margin-left: 2em;
}
.global-nav > ul > li > a {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}
.global-nav > ul > li > a:hover, .global-nav > ul > li > a.current {
  color: #009151;
}
.global-nav aside a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .global-nav {
    display: none !important;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　フッターナビ

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.footer-nav {
  display: none;
  background: #009151;
  padding: 5.3333333333vw;
}
.footer-nav ul {
  border-top: solid 1px #9bd1b7;
}
.footer-nav ul li {
  border-bottom: solid 1px #9bd1b7;
}
.footer-nav ul li ul {
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer-nav ul li ul li:last-child {
  border-bottom: none;
}
.footer-nav ul li ul li a {
  padding-left: 5.3333333333vw;
}
.footer-nav ul li a {
  display: block;
  color: #fff;
  background: url("../../images/common/arrow-right-white.svg") no-repeat right 2.6666666667vw center/4.2666666667vw auto;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: none;
  padding: 4vw 0;
}
.footer-nav ul li a.openar {
  background: url("../../images/common/icon-plus-white.svg") no-repeat right 2.6666666667vw center/4.2666666667vw auto;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-nav ul li a.openar + ul {
  max-height: 0;
}
.footer-nav ul li a.openar.open + ul {
  max-height: 1000px;
}
.footer-nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-nav ul li a.current {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .footer-nav {
    display: block;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　ドロップダウンメニュー

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.common-dropdown {
  background: #009151;
  width: 100vw;
  position: absolute;
  top: 122px;
  left: 0;
  z-index: 999;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.common-dropdown.open {
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  padding: 50px 30px 120px;
}
.common-dropdown .close01 {
  position: absolute;
  top: 20px;
  right: 30px;
}
.common-dropdown .close01 img {
  width: 50px;
}
_:-ms-fullscreen, :root .common-dropdown .close01 img {
  height: 50px;
}

.common-dropdown .close02 {
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.common-dropdown .close02 img {
  width: 25px;
}
_:-ms-fullscreen, :root .common-dropdown .close02 img {
  height: 25px;
}

.common-dropdown .close02 span {
  display: block;
  font-size: 1.5rem;
  margin-top: 5px;
}
.common-dropdown aside {
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}
.common-dropdown div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
}
.common-dropdown div.en {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.common-dropdown div > section {
  width: calc(33.33% - 20px);
  border-top: solid 1px rgba(255, 255, 255, 0.6);
}
.common-dropdown div > section > a, .common-dropdown div > section ul a, .common-dropdown div > section small a {
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.8;
}
.common-dropdown div > section > a {
  background: transparent url("../images/common/arrow-right-white.svg") no-repeat right 20px center/16px auto;
  font-size: 1.6rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  padding: 20px 10px;
}
_:-ms-fullscreen, :root .common-dropdown div > section > a {
  background: transparent url("../images/common/arrow-right-white.svg") no-repeat right 20px center/16px 16px;
}

.common-dropdown div > section > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.common-dropdown div > section > ul a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.common-dropdown div > section > ul > li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
.common-dropdown div > section > ul > li > a {
  background: transparent url("../images/common/arrow-right-white.svg") no-repeat right 20px center/11px auto;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 20px;
}
_:-ms-fullscreen, :root .common-dropdown div > section > ul > li > a {
  background: transparent url("../images/common/arrow-right-white.svg") no-repeat right 20px center/11px 11px;
}

.common-dropdown div > section small {
  display: block;
  font-size: 1.2rem;
  margin: 30px 5px 0;
}
.common-dropdown div > section small + small {
  margin: 15px 5px 0;
}
.common-dropdown div > section small a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　パンくずリスト

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.breadcrumbs {
  background: #F5F5F5;
  padding: 13px 0;
  margin-top: 15px;
  overflow-x: auto;
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 30px;
}
.breadcrumbs ul li {
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
}
.breadcrumbs ul li + li {
  margin-left: 1em;
}
.breadcrumbs ul li + li:before {
  content: ">";
  font-weight: normal;
  margin-right: 1em;
}
.breadcrumbs ul li a {
  color: #000;
  font-weight: normal;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 2.6666666667vw 0;
    margin-top: 2.6666666667vw;
  }
  .breadcrumbs ul {
    margin: 0 5.3333333333vw;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　お問い合わせ

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.common-contact {
  text-align: center;
  padding: 80px 0;
  border-top: solid 1px #ccc;
  margin-top: 100px;
}
.common-contact dl {
  line-height: 1.8;
}
.common-contact dl dt {
  font-size: 2.9rem;
  font-weight: bold;
}
.common-contact dl dd {
  font-size: 1.5rem;
  margin-top: 15px;
}
.common-contact .button-contactform {
  width: 335px;
  line-height: 58px;
  margin: 35px auto 0;
  border-radius: 29px;
}
.common-contact .button-contactform.en {
  margin-top: 0;
}
.common-contact address {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .common-contact {
    padding: 10.6666666667vw 5.3333333333vw 24vw;
    margin-top: 13.3333333333vw;
  }
  .common-contact dl {
    line-height: 1.6;
  }
  .common-contact dl dt {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  .common-contact dl dd {
    font-size: 1.6rem;
    margin-top: 4vw;
  }
  .common-contact .button-contactform {
    width: auto;
    line-height: 14.4vw;
    margin: 5.3333333333vw auto 0;
    border-radius: 7.2vw;
  }
  .common-contact address {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 2.6666666667vw;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　フッター

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
footer {
  color: #fff;
  background: #009151;
  padding: 30px 0;
}
footer section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  margin: 0 auto;
}
footer section nav {
  font-size: 1.2rem;
  line-height: 1.5;
}
footer section nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer section nav ul li + li {
  margin-left: 2em;
}
footer section nav ul li a {
  color: #fff;
  text-decoration: none;
}
footer section small {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}
footer section small.en {
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 2.6666666667vw 0;
  }
  footer section {
    display: block;
    width: auto;
    text-align: center;
  }
  footer section nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer section nav ul li {
    margin: 0 1em;
  }
  footer section nav ul li + li {
    margin-left: 0;
  }
  footer section small {
    display: block;
    margin-top: 2.6666666667vw;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　ページトップへ

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
.to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 110px;
  z-index: 500;
}
.to-top img {
  height: 18px;
}
@media screen and (max-width: 767px) {
  .to-top {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    right: 5.3333333333vw;
    bottom: 29.3333333333vw;
  }
  .to-top img {
    height: 4.2666666667vw;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

　お問い合わせ

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
main {
  margin-bottom: 80px;
}
main .detail {
  margin-top: 40px;
}
main .detail h2 {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  padding-bottom: 40px;
  border-bottom: solid 1px #ccc;
}
main .detail .contact-note, main .detail .contact-content {
  width: 960px;
  padding-top: 10px;
  border-top: solid 2px #99d945;
}
main .detail .contact-note h3, main .detail .contact-content h3 {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
}
main .detail .contact-note {
  margin: 50px auto 0;
}
main .detail .contact-note ol {
  margin-top: 20px;
}
main .detail .contact-note ol li {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: calc(1em + 3px);
  text-indent: calc(-1em - 3px);
  margin-top: 5px;
}
main .detail .contact-note ol li:before {
  content: "●";
  color: #99d945;
  margin-right: 3px;
}
main .detail .contact-content {
  margin: 80px auto 0;
}
main .detail .contact-content .text-01 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 20px;
}
main .detail .contact-content .error_message {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #ff0000;
  margin-top: 20px;
}
main .detail .contact-content form {
  margin-top: 30px;
}
main .detail .contact-content form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}
main .detail .contact-content form .form-group.center label {
  -ms-flex-item-align: center;
      align-self: center;
}
main .detail .contact-content form .form-group label {
  width: calc(30% - 20px);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding: 5px 70px 5px 0;
}
main .detail .contact-content form .form-group label span {
  color: #ff0000;
  font-weight: normal;
  position: absolute;
  top: 5px;
  right: 0;
}
main .detail .contact-content form .form-group > div {
  width: calc(70% - 20px);
}
main .detail .contact-content form .form-group > div input, main .detail .contact-content form .form-group > div textarea {
  padding: 5px;
  font-size: 1.6rem;
  line-height: 1.5;
  border: 1px solid #ccc;
}
main .detail .contact-content form .form-group > div input.form-01, main .detail .contact-content form .form-group > div textarea.form-01 {
  width: 50%;
}
main .detail .contact-content form .form-group > div input.form-02, main .detail .contact-content form .form-group > div textarea.form-02 {
  width: 100%;
}
main .detail .contact-content form .form-group > div input.form-03, main .detail .contact-content form .form-group > div textarea.form-03 {
  width: 100%;
  height: 200px;
}
main .detail .contact-content form .form-group > div .alert {
  font-size: 1.2rem;
  color: #ff0000;
  margin-top: 5px;
}
main .detail .contact-content form .btn-group {
  margin-top: 50px;
}
main .detail .contact-content form .btn-group .btn {
  display: block;
  font-size: 1.7rem;
  color: #000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  width: 250px;
  line-height: 58px;
  border-radius: 29px;
  background: #d9e022 !important;
  border: none;
  outline: none;
  margin: 0 auto;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}
main .detail .contact-content .text-02 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: right;
  margin-top: 30px;
}
main .detail .contact-content .text-02 a {
  color: #009151;
}
main .detail .contact-content.confirm form .form-group > div {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5px 0;
  word-wrap: break-word;
}
main .detail .contact-content.confirm form .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .detail .contact-content.confirm form .btn-group .btn {
  margin: 0 20px 0 0;
}
main .detail .contact-content.confirm form .btn-group .btn + .btn {
  margin: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  main {
    margin-bottom: 21.3333333333vw;
  }
  main .detail {
    margin-top: 10.6666666667vw;
  }
  main .detail h2 {
    font-size: 2.4rem;
    padding-bottom: 10.6666666667vw;
  }
  main .detail .contact-note, main .detail .contact-content {
    width: auto;
    padding-top: 2.6666666667vw;
  }
  main .detail .contact-note {
    margin: 13.3333333333vw 5.3333333333vw 0;
  }
  main .detail .contact-note ol {
    margin-top: 5.3333333333vw;
  }
  main .detail .contact-note ol li {
    margin-top: 1.3333333333vw;
  }
  main .detail .contact-content {
    margin: 21.3333333333vw 5.3333333333vw 0;
  }
  main .detail .contact-content .text-01 {
    margin-top: 5.3333333333vw;
  }
  main .detail .contact-content #error_message {
    margin-top: 5.3333333333vw;
  }
  main .detail .contact-content form {
    margin-top: 8vw;
  }
  main .detail .contact-content form .form-group {
    display: block;
    padding: 5.3333333333vw;
  }
  main .detail .contact-content form .form-group label {
    width: 100%;
    padding: 1.3333333333vw 13.3333333333vw 1.3333333333vw 0;
  }
  main .detail .contact-content form .form-group label span {
    top: 1.3333333333vw;
  }
  main .detail .contact-content form .form-group > div {
    width: 100%;
    margin-top: 2.6666666667vw;
  }
  main .detail .contact-content form .form-group > div input, main .detail .contact-content form .form-group > div textarea {
    padding: 1.3333333333vw;
  }
  main .detail .contact-content form .form-group > div input.form-01, main .detail .contact-content form .form-group > div textarea.form-01 {
    width: 60%;
  }
  main .detail .contact-content form .form-group > div .alert {
    margin-top: 1.3333333333vw;
  }
  main .detail .contact-content form .btn-group {
    margin-top: 13.3333333333vw;
  }
  main .detail .contact-content form .btn-group .btn {
    line-height: 14.4vw;
    border-radius: 7.2vw;
  }
  main .detail .contact-content .text-02 {
    margin-top: 8vw;
  }
  main .detail .contact-content.confirm form .form-group > div {
    padding: 1.3333333333vw 0;
  }
  main .detail .contact-content.confirm form .btn-group {
    display: block;
  }
  main .detail .contact-content.confirm form .btn-group .btn {
    margin: 0 auto;
  }
  main .detail .contact-content.confirm form .btn-group .btn + .btn {
    margin: 5.3333333333vw auto 0;
  }
}