@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

ul, ol {
  list-style: none;
  list-style-type: none;
}

code, kbd, pre, samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote, q {
  quotes: none;
}

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

address {
  font-style: normal;
}

body {
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 24px;
  color: #592d13;
  line-height: 1.3em;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  background-color: #fff3e3;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 1124px) {
  body {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
}

section {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  section {
    margin: 40px 0;
  }
}

div {
  line-height: 1.5em;
  letter-spacing: normal;
}

span {
  line-height: 1.5em;
  letter-spacing: normal;
}

dl {
  line-height: 1.5em;
  letter-spacing: normal;
}

dt {
  line-height: 1.5em;
  letter-spacing: normal;
}

dd {
  line-height: 1.5em;
  letter-spacing: normal;
}

a {
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 24px;
  color: #592d13;
  line-height: 1.3em;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  text-decoration: none; /* <a>タグで囲まれた文字に下線がついてしまうのでそれを削除 */
  color: #00536d; /* <a>タグで囲まれた文字は青色になってしまうので本文の色と同じにしている */
  display: inline-block;
  letter-spacing: normal;
  line-height: 1.5em;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-out, -webkit-filter 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out, -webkit-filter 0.3s ease-out;
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
  transition: transform 0.3s ease-out, filter 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-filter 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  a {
    font-size: 16px;
  }
}
a:hover {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

button {
  -webkit-transition: -webkit-transform 0.3s ease-out, -webkit-filter 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out, -webkit-filter 0.3s ease-out;
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
  transition: transform 0.3s ease-out, filter 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-filter 0.3s ease-out;
}
button:hover {
  cursor: pointer;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

img {
  width: 100%; /* 画像を画面幅に収まるように */
  height: auto; /* 画像の横幅が縮小したら、高さも縦横比を維持したまま自動的に調整する */
}

.section-inner {
  width: 100%;
  max-width: 1125px; /* innerで囲まれたコンテンツ幅は最大1000pxまで */
  margin: 0 auto; /* レイアウトを中央寄せにする */
}
@media screen and (max-width: 1124px) {
  .section-inner {
    padding: 0 24px 0 24px;
    max-width: 1125px;
  }
}
@media screen and (max-width: 767px) {
  .section-inner {
    padding: 0;
    max-width: 767px;
    width: 95%;
  }
}

.section-title {
  display: inline-block;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .section-title {
    display: block;
    text-align: center;
    margin: 0 0 20px;
  }
}

.jp-title {
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 72px;
  font-weight: 600;
  color: #00536d;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .jp-title {
    font-size: 35px;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 767px) {
  .jp-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.eng-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 72px;
  font-weight: 600;
  color: #fff3e3;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .eng-title {
    font-size: 35px;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 767px) {
  .eng-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.text-strong {
  font-weight: bold;
  color: #00536d;
  font-style: italic;
  padding-right: 5px;
}

.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .btn {
    margin: 20px auto 0;
  }
}
.btn .more-information {
  color: #fff3e3;
  padding: 15px 25px;
  border: 2px solid #592d13;
  border-radius: 40px;
  background-color: #00536d;
  font-weight: bold;
}

/**
* to-top
* ========================== */
#to-top {
  position: fixed;
  right: calc(50% - 540px);
  bottom: 30px;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  #to-top {
    right: 30px;
  }
}
#to-top img {
  width: 50px;
  height: auto;
}

button {
  padding: 0;
}

h1 {
  line-height: 1.3em;
}

h2 {
  line-height: 1.3em;
}

h3 {
  line-height: 1.3em;
}

h4 {
  line-height: 1.3em;
}

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

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

.grecaptcha-badge {
  left: 0;
}

.header {
  background-color: #00536d;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header-inner {
  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;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .header-inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header-logo-img {
  display: block;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .header-logo-img {
    height: 40px;
  }
}
.header-logo-img img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-nav-menu ul, .nav-style-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .header-nav-menu ul, .nav-style-menu ul {
    gap: 5px;
  }
}
.header-nav-menu ul li a, .nav-style-menu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #fff3e3;
}
.header-nav-menu ul li a:hover, .nav-style-menu ul li a:hover {
  color: #592d13;
}

.menubtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .menubtn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 200;
    background-color: #592d13;
  }
  .menubtn .bar {
    display: block;
    width: 70%;
    height: 2px;
    background-color: #fff3e3;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .menubtn.close .bar_top {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
    width: 100%;
  }
  .menubtn.close .bar_mid {
    opacity: 0;
  }
  .menubtn.close .bar_bottom {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
            transform: rotate(-45deg) translate(5px, -5px);
    width: 100%;
  }
}

.hamburger-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(89, 45, 19, 0.8);
  z-index: 150;
}
.hamburger-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 20px;
}
.hamburger-nav ul li a {
  font-size: 24px;
  color: #fff3e3;
  text-decoration: none;
}
.hamburger-nav ul li a:hover {
  color: #00536d;
}
.hamburger-nav.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.3s ease-in-out;
          animation: fadeIn 0.3s ease-in-out;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer {
  background-color: #00536d;
  padding: 40px 0 10px;
}
.footer-nav {
  margin: 0 0 40px;
}
.footer-nav-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0;
}
.footer-logo-img img {
  width: 300px;
  height: auto;
}
.footer-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-copy .copy {
  font-size: 12px;
  color: #fff3e3;
  text-align: center;
}

.breadcrumb-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumb-block-item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 12px;
}
.breadcrumb-block-item:nth-child(n+2) {
  margin-left: 1px;
}
.breadcrumb-block-link {
  display: block;
  font-size: 12px;
  line-height: 1em;
}
.breadcrumb-block-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #00536d;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.breadcrumb-block-link:hover::after {
  width: 100%;
}
.breadcrumb-block-text {
  display: block;
  font-size: 12px;
  line-height: 1em;
}
.breadcrumb-block-here {
  font-weight: bold;
}

/**
* トップページ
* ========================== */
.fv {
  background-color: #002c3a;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 300px;
  }
}
.fv-title {
  position: absolute;
  top: 400px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .fv-title {
    top: 210px;
  }
}
.fv-title .fv-eng-title {
  color: #fff3e3;
  font-size: 72px;
  font-weight: 700;
  line-height: 1em;
  text-shadow: 5px 5px 15px #000507;
}
@media screen and (max-width: 767px) {
  .fv-title .fv-eng-title {
    font-size: 36px;
  }
}
.fv-img {
  height: 600px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv-img {
    height: 300px;
  }
}

.fv-single {
  position: relative;
}
.fv-single .fv-title {
  z-index: 20;
  top: 50%;
}
.fv-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.fv-single-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.about {
  position: relative; /* 親要素としての位置を指定 */
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/about_service01.jpg"); /* 背景画像を適用 */
  background-size: cover;
  background-position: 50% 35%;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%); /* Safari対応 */
  z-index: -1; /* 背景を背面に配置 */
}
.about .inner-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; /* 子要素を横並びに */
  position: relative;
  width: 100%; /* 親要素の幅に合わせる */
  max-width: 1200px; /* レスポンシブ対応の最大幅 */
  margin: 0 auto; /* 中央揃え */
}
@media screen and (max-width: 767px) {
  .about .inner-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about .inner-about .section-title {
  width: 50%;
  height: 100px; /* タイトル部分の高さを調整 */
  margin: 0;
  padding: 0;
  z-index: 1; /* 背景より前面に表示 */
}
@media screen and (max-width: 767px) {
  .about .inner-about .section-title {
    width: 100%;
  }
}
.about .inner-about .section-title .eng-title {
  position: relative;
}
.about .inner-about .section-title .eng-title .about-text {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .about .inner-about .section-title .eng-title .about-text {
    left: 90px;
  }
}
.about .inner-about .section-title .eng-title .digitalcraft-text {
  position: absolute;
  top: 50px;
  left: 100px;
  color: #00536d;
  text-shadow: 10px 10px 5px black;
}
@media screen and (max-width: 767px) {
  .about .inner-about .section-title .eng-title .digitalcraft-text {
    top: 35px;
    left: 140px;
  }
}
.about .inner-about .section-container {
  width: 50%; /* 横並びにするための幅設定 */
  height: auto; /* 高さを自動で調整 */
  padding: 20px;
  margin: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の背景色 */
  z-index: 1;
  max-width: 800px; /* コンテンツの最大幅 */
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .about .inner-about .section-container {
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.service {
  padding: 0;
  background-color: #fff3e3;
}
.service .section-title {
  position: relative;
  padding: 20px;
  margin: 0 0 40px;
  color: #fff3e3;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .service .section-title {
    margin: 0 0 20px;
  }
}
.service .section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/about_service01.jpg");
  background-size: cover;
  background-position: 50% 80%;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service .section-title::before {
    background-image: url("../img/service_title.jpg");
    -webkit-filter: brightness(40%);
            filter: brightness(40%);
  }
}
.service .section-title .eng-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
}
.service .section-title .section-comment {
  z-index: 2;
}
.service .section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.service .section-container .service-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.33% - 20px);
          flex: 1 1 calc(33.33% - 20px); /* 3列レイアウト */
  padding: 40px 20px;
  height: 450px;
  position: relative; /* オーバーレイ用に相対位置を指定 */
  overflow: hidden; /* はみ出し防止 */
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.8s ease-out, -webkit-filter 0.8s ease-out;
  transition: -webkit-transform 0.8s ease-out, -webkit-filter 0.8s ease-out;
  transition: transform 0.8s ease-out, filter 0.8s ease-out;
  transition: transform 0.8s ease-out, filter 0.8s ease-out, -webkit-transform 0.8s ease-out, -webkit-filter 0.8s ease-out;
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
@media screen and (max-width: 767px) {
  .service .section-container .service-block {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%; /* 1列レイアウト */
    height: 300px;
  }
}
.service .section-container .service-block:hover {
  -webkit-transform: rotateY(1deg) rotateX(1deg) scale(1.05);
          transform: rotateY(1deg) rotateX(1deg) scale(1.05);
  -webkit-filter: brightness(1.5);
          filter: brightness(1.5);
}
.service .section-container .service-block_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 36px;
  position: relative; /* オーバーレイの上に表示されるように */
  z-index: 2; /* オーバーレイよりも前面に表示 */
  color: #fff3e3; /* 白い文字に設定 */
}
.service .section-container .service-block_explain {
  width: 100%;
  margin-top: 40px;
  position: relative;
  z-index: 2; /* オーバーレイより前に */
  color: #fff3e3; /* 白い文字で見やすく */
  line-height: 1.5em;
}
.service .section-container .service-block_explain02 {
  margin-top: 0;
}
.service .section-container .service-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(0, 0, 0, 0.7); /* 半透明の黒 */
  z-index: 1; /* 背景画像の上、文字の下に配置 */
}
.service .section-container .service-block-01 {
  background-image: url("../img/service01.jpg");
  background-position: center;
  background-size: cover;
}
.service .section-container .service-block-02 {
  background-image: url("../img/service02.jpg");
  background-position: center;
  background-size: cover;
}
.service .section-container .service-block-03 {
  background-image: url("../img/service03.jpg");
  background-position: center;
  background-size: cover;
}
.service .section-container .service-block-04 {
  background-image: url("../img/service04.jpg");
  background-position: center;
  background-size: cover;
}
.service .section-container .service-block-05 {
  background-image: url("../img/service05.jpg");
  background-position: center;
  background-size: cover;
}
.service .section-container .service-block-06 {
  background-image: url("../img/service06.jpg");
  background-position: center;
  background-size: cover;
}

.information .section-title {
  background-image: url(../img/information01.jpg);
  background-size: cover;
  background-position: 50% 48%;
  width: 100%;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%); /* Safari対応 */
}
.information .section-title .eng-title {
  margin: 20px 20px 0 0;
}
.information .section-container .information-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.information .section-container .information-content_block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.33% - 20px);
          flex: 1 1 calc(33.33% - 20px); /* 3列レイアウト */
  max-width: calc(33.33% - 20px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; /* すべてのプロパティをアニメーション */
}
@media screen and (max-width: 767px) {
  .information .section-container .information-content_block {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%; /* 1列レイアウト */
    max-width: 100%;
  }
}
.information .section-container .information-content_block:hover {
  background-color: rgba(89, 45, 19, 0.1); /* 半透明のメインカラー */
  padding: 10px;
}
.information .section-container .information-content_block-image {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.information .section-container .information-content_block-image img {
  width: 100%;
  height: auto;
}
.information .section-container .information-content_block-time {
  font-size: 16px;
  line-height: 1em;
  margin: 10px 0;
}
.information .section-container .information-content_block-title {
  color: #592d13;
}

.contact {
  background-image: url("../img/contact01.jpg");
  background-size: cover;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 20px;
  }
}
.contact .section-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .section-container {
  background-color: #fff3e3;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .contact .section-container {
    padding: 20px;
  }
}
.contact .section-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .contact .section-container form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact .section-container form .form-part {
  width: calc(50% - 20px);
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-part {
    width: 100%;
  }
}
.contact .section-container form .form-part-title {
  font-size: 24px;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-part-title {
    line-height: 1em;
  }
}
.contact .section-container form .form-part .form-group-name {
  margin: 20px 0 0;
}
.contact .section-container form .form-part .form-group-name label {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-part .form-group-name {
    margin: 10px 0 0;
  }
}
.contact .section-container form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.contact .section-container form .form-group label {
  margin-right: 20px;
}
.contact .section-container form .form-group label .required {
  color: red;
  font-weight: bold;
  margin-left: 3px;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group label {
    font-size: 24px;
    line-height: 30px;
  }
}
.contact .section-container form .form-group input {
  width: 100%;
  height: 30px;
  padding: 5px 20px;
  font-size: 20px;
  line-height: 1em;
  background-color: #fff3e3;
  color: #00536d;
  border: 1px solid #592d13;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group input {
    font-size: 16px;
  }
}
.contact .section-container form .form-group-company {
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}
.contact .section-container form .form-group-company input {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group-company {
    width: 100%;
    margin: 20px 0 0;
  }
  .contact .section-container form .form-group-company input {
    margin: 10px 0 0;
  }
}
.contact .section-container form .form-group-tel {
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 40px 40px 20px 0;
}
.contact .section-container form .form-group-tel input {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group-tel {
    width: 100%;
    margin: 20px 0 0;
  }
  .contact .section-container form .form-group-tel input {
    margin: 10px 0 0;
  }
}
.contact .section-container form .form-group-mail {
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 40px 0 20px;
}
.contact .section-container form .form-group-mail input {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group-mail {
    width: 100%;
    margin: 20px 0 0;
  }
  .contact .section-container form .form-group-mail input {
    margin: 10px 0 0;
  }
}
.contact .section-container form .form-group-title {
  display: block;
  width: 100%;
}
.contact .section-container form .form-group-title input {
  margin: 20px 0;
}
.contact .section-container form .form-group-title label {
  display: block;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group-title {
    margin: 20px 0 0;
  }
  .contact .section-container form .form-group-title input {
    margin: 10px 0 0;
  }
}
.contact .section-container form .form-group-content {
  display: block;
  width: 100%;
  text-align: left;
  margin: 20px 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group-content {
    margin: 20px 0 0;
  }
}
.contact .section-container form .form-group-content #char-count {
  text-align: right;
  font-size: 14px;
  color: #592d13;
}
.contact .section-container form .form-group-content textarea {
  margin-top: 20px;
  width: 100%;
  height: 300px;
  font-size: 20px;
  line-height: 1.3em;
  background-color: #fff3e3;
  color: #00536d;
  border: 1px solid #592d13;
  border-radius: 15px;
  padding: 5px 20px;
  resize: none;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group-content textarea {
    font-size: 16px;
    margin: 10px 0 0;
  }
}
.contact .section-container form .form-group-content textarea::-webkit-scrollbar {
  width: 13px;
}
.contact .section-container form .form-group-content textarea::-webkit-scrollbar-track {
  background: #fff3e3;
  border-radius: 7px;
  margin: 10px;
}
.contact .section-container form .form-group-content textarea::-webkit-scrollbar-thumb {
  background-color: #592d13;
  border-radius: 7px;
  border: 2px solid #fff3e3;
}
.contact .section-container form .form-group-content textarea::-webkit-scrollbar-thumb:hover {
  background-color: #2f180a;
  cursor: pointer;
}
.contact .section-container form .form-group-privacy {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin: 20px 0 40px;
}
.contact .section-container form .form-group-privacy input {
  width: 30px;
}
.contact .section-container form .form-group-privacy label {
  margin-left: 20px;
}
.contact .section-container form .form-group-privacy label a {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group-privacy label a {
    font-size: 24px;
  }
}
.contact .section-container form .form-group-submit {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact .section-container form .form-group-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 15px 0 0;
  }
}
.contact .section-container form .form-group-submit button {
  background-color: #00536d;
  color: #fff3e3;
  border: 2px solid #592d13;
  border-radius: 40px;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 25px;
  width: 200px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.submit-form .section-inner {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .submit-form .section-inner {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.submit-form .success, .submit-form .error {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .submit-form .success, .submit-form .error {
    font-size: 16px;
  }
}

.company-information .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company-information .section-title .eng-title {
  color: #00536d;
}
.company-information-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 1px solid #592d13;
  padding: 20px 0;
}
.company-information-content:nth-child(1) {
  padding: 0 0 20px;
}
.company-information-content dt {
  width: 150px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .company-information-content dt {
    width: 90px;
  }
}
.company-information-content dd {
  width: calc(100% - 150px);
}
@media screen and (max-width: 767px) {
  .company-information-content dd {
    width: calc(100% - 90px);
  }
}

/**
* home(Information一覧)ページ
* ========================== */
.home .section-title {
  background-image: none;
  clip-path: none;
  -webkit-clip-path: none;
  width: 100%;
  height: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .section-title .jp-title {
  margin: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
  .home .section-title .jp-title {
    margin: 0;
  }
}
.home .section-container .home-content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/**
* single(Information詳細)ページ
* ========================== */
.single .section-title {
  margin-bottom: 20px;
}
.single .section-title .jp-title {
  font-size: 48px;
  line-height: 1.5em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .single .section-title .jp-title {
    font-size: 36px;
    line-height: 1.3em;
  }
}
.single .section-container .single-date_text {
  font-size: 20px;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .single .section-container .single-date_text {
    font-size: 12px;
  }
}
.single .section-container .single-content {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .single .section-container .single-content {
    margin-top: 20px;
  }
}
.single .section-container .single-content_text {
  font-size: 24px;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .single .section-container .single-content_text {
    font-size: 16px;
  }
}

/**
* 404ページ
* ========================== */
.error-404 .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.error-404 .section-title .eng-title {
  color: #00536d;
}
.error-404-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
}
.error-404-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/**
* Privacy Policyページ
* ========================== */
.privacy-subtitle {
  font-weight: bold;
  margin: 20px 0;
}
.privacy-list {
  margin-top: 20px;
}
.privacy-list_item {
  list-style: square;
  margin-left: 20px;
}
.privacy-date {
  margin-top: 20px;
}