@charset "UTF-8";
/* Scss Document */
@import "normalize.css";
/* Scss Document */
/*=======================================================
    reset
========================================================*/
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
}

/*=======================================================
    font
========================================================*/
.yu-mincho {
  font-family: "Yu Mincho", "YuMincho";
}

.font_en {
  font-family: Copperplate, Copperplate Gothic Light, fantasy;
}

/*=======================================================

    ブレークポイント
========================================================*/
/*-------------- calc mixin ここから ----------------*/
/*-------------- calc mixin ここまで ----------------*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*=======================================================

    common

========================================================*/
html {
  font-size: 63.5%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 56.5%;
  }
}

body {
  font-size: 2rem;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}
a {
  transition: all 0.3s ease 0s;
  color: #000;
}
a:hover {
  color: #f27c35;
}

@media screen and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 1001px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .tab {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  .tab {
    display: none;
  }
}
@media screen and (min-width: 606px) and (max-width: 767px) {
  .tab {
    display: block !important;
  }
}

.clearfix {
  *zoom: 1;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.no_link {
  opacity: 0.3;
  pointer-events: none;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
}

a img {
  transition: all 0.3s ease 0s;
}
a img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1000px) {
  img {
    max-width: 100%;
  }
}
.link {
  color: #000;
  text-decoration: none;
}

.mrgT5 {
  margin-top: 5px;
}

.mrgT10 {
  margin-top: 10px;
}

.mrgT15 {
  margin-top: 15px;
}

.mrgT20 {
  margin-top: 20px;
}

.mrgT25 {
  margin-top: 25px;
}

.mrgT30 {
  margin-top: 30px;
}

.mrgT40 {
  margin-top: 40px;
}

.mrgT50 {
  margin-top: 50px;
}

.mrgT60 {
  margin-top: 60px;
}

.mrgT70 {
  margin-top: 70px;
}

.mrgB5 {
  margin-bottom: 5px;
}

.mrgB10 {
  margin-bottom: 10px;
}

.mrgB15 {
  margin-bottom: 15px;
}

.mrgB20 {
  margin-bottom: 20px;
}

.mrgB25 {
  margin-bottom: 25px;
}

.mrgB30 {
  margin-bottom: 30px;
}

.mrgB40 {
  margin-bottom: 40px;
}

.mrgB50 {
  margin-bottom: 50px;
}

.mrgB60 {
  margin-bottom: 60px;
}

.mrgB70 {
  margin-bottom: 70px;
}

.floatL {
  float: left;
}

.floatR {
  float: right;
}

.fontBold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.f12 {
  font-size: 1.2rem !important;
}

.f14 {
  font-size: 1.4rem;
}

.f16 {
  font-size: 1.6rem;
}

.f18 {
  font-size: 1.8rem;
}

.red {
  color: #f27c35;
}

.marker {
  background: linear-gradient(transparent 60%, #ffe800 60%);
  font-weight: bold;
}

/*=======================================================

    header

========================================================*/
@media screen and (max-width: 1000px) {
  #container {
    overflow: hidden;
  }
}
#container header {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  z-index: 9999;
}
@media screen and (max-width: 1000px) {
  #container header {
    padding: 0;
  }
}
#container header.is-fixed {
  position: fixed;
  background-color: #fff;
  animation: nyuru 0.5s;
}
#container header.is-fixed .head_inner .wrap {
  padding: 10px 70px;
}
@keyframes nyuru {
  0% {
    margin-top: -158px;
  }
  100% {
    margin-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  @keyframes nyuru {
    0% {
      margin-top: -78px;
    }
    100% {
      margin-top: 0;
    }
  }
}
@media screen and (max-width: 1000px) {
  #container header .head_inner {
    padding: 10px;
    position: relative;
    z-index: 1000;
  }
}
#container header .head_inner .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 70px;
}
#container header .head_inner nav .gnav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#container header .head_inner nav .gnav li {
  width: 16.666667%;
}
#container header .head_inner nav .gnav li a {
  background: #f27c35;
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  padding: 20px 0;
  border-right: 1px solid #fff;
}
#container header .head_inner nav .gnav li a:hover {
  background: #cc5a27;
}
#container .menu-trigger,
#container .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
}
#container .menu-trigger {
  width: 50px;
  height: 50px;
  float: right;
  position: fixed;
  top: 1%;
  right: 1%;
  z-index: 9999;
  border-radius: 5px;
  background: #f27c35;
  transform: scale(0.8);
}
#container .menu-trigger span {
  width: 30px;
  height: 3px;
  margin: auto auto auto 10px;
  position: absolute;
  background-color: #fff;
}
#container .menu-trigger span:nth-of-type(1) {
  top: 15px;
}
#container .menu-trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
#container .menu-trigger span:nth-of-type(3) {
  bottom: 15px;
}
#container .menu-trigger {
  padding-right: 20px;
}
#container .menu-trigger.active span {
  background-color: #fff;
}
#container .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
#container .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
#container .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}
#container #overlay {
  width: 100%;
  height: 100vh;
  margin: auto;
  padding-top: 30%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  display: none;
  text-align: center;
}
#container #overlay ul {
  width: 100%;
  margin: 10px 0;
}
#container #overlay ul li {
  margin: 25px 15px;
  text-align: center;
  line-height: 1.6;
  border: 0;
}
#container #overlay ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #333;
}
#container #overlay ul li a span {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  color: #f27c35;
  display: block;
  text-transform: uppercase;
}
#container footer .inner {
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  #container footer .inner {
    padding: 0;
  }
}
#container footer .inner .nav_wrap {
  background: #ed6d2a;
  padding: 30px;
}
#container footer .inner .nav_wrap nav {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  #container footer .inner .nav_wrap nav {
    display: block;
  }
}
#container footer .inner .nav_wrap nav > ul {
  padding: 0 0 0 70px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 1000px) {
  #container footer .inner .nav_wrap nav > ul {
    padding: 0;
    text-align: center;
    border: 0;
  }
}
#container footer .inner .nav_wrap nav > ul:first-child {
  border-left: 0;
  padding: 0;
}
#container footer .inner .nav_wrap nav > ul li {
  margin-bottom: 1em;
}
#container footer .inner .nav_wrap nav > ul li a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
}
#container footer .inner .nav_wrap nav > ul > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  #container footer .inner .nav_wrap nav > ul > ul {
    display: block;
    text-align: center;
  }
}
#container footer .inner .nav_wrap nav > ul > ul li {
  width: calc(50% - 30px);
}
@media screen and (max-width: 1000px) {
  #container footer .inner .nav_wrap nav > ul > ul li {
    width: 100%;
  }
}
#container footer .inner .nav_wrap nav > ul > ul li a {
  font-size: 1.4rem;
}
#container footer .inner .nav_wrap nav > ul > ul li a::before {
  content: "■";
}
#container footer .inner .info {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 35px 0;
}
@media screen and (max-width: 1000px) {
  #container footer .inner .info {
    display: block;
    text-align: center;
    padding: 15px;
  }
}
#container footer .inner .info h1 {
  width: calc(50% - 30px);
}
@media screen and (max-width: 1000px) {
  #container footer .inner .info h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
#container footer .inner .info .cont {
  width: calc(50% - 30px);
}
@media screen and (max-width: 1000px) {
  #container footer .inner .info .cont {
    width: 100%;
    text-align: center;
  }
}
#container footer .inner .info .cont h2 {
  line-height: 1.6;
  margin-bottom: 5px;
}
#container footer .inner .info .cont h2 span {
  font-size: 1.2rem;
  display: block;
}
#container footer .inner .info .cont .address {
  font-size: 1.4rem;
  line-height: 1.6;
}
#container footer address {
  text-align: center;
  font-size: 1.4rem;
  padding: 30px 0;
  background: #422513;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  #container footer address {
    padding: 10px 70px 10px 10px;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.4;
  }
}
#container .contact_wrap {
  text-align: center;
  background: #ece9e7;
  padding: 80px 0;
}
#container .contact_wrap h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1em;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  #container .contact_wrap h2 {
    font-size: 2.2rem;
  }
}
#container .contact_wrap h2::before {
  content: url(../img/common/ico_mail.svg);
  display: block;
}
#container .contact_wrap .btn a {
  display: block;
  background: #ed6d2a;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  padding: 20px;
  margin: 0 auto;
  max-width: 270px;
  box-sizing: border-box;
  position: relative;
}
#container .contact_wrap .btn a:hover {
  background: #cc5a27;
}
#container .contact_wrap .btn a::after {
  content: url(../img/common/ico_arrow.svg);
  position: absolute;
  right: 20px;
  top: 20px;
}

/*=======================================================

    共通レイアウト

========================================================*/
#container img {
  max-width: 100%;
  height: auto;
}
#container .flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  #container .flex .box01 {
    order: 1;
  }
}
@media screen and (max-width: 1000px) {
  #container .flex .box02 {
    order: 2;
  }
}
#container .flex img {
  max-width: 100%;
}
#container #content .pagenavi {
  text-align: center;
  margin: 50px 0 0;
}
@media screen and (max-width: 1101px) {
  #container #content .inner {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}
#container #content section p {
  line-height: 1.8;
}
#container #content section .inner {
  padding: 50px 0;
}
@media screen and (max-width: 1101px) {
  #container #content section .inner {
    padding: 15px 0;
    box-sizing: border-box;
  }
}
#container .toTop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
#container .wp-pagenavi a, #container .wp-pagenavi span {
  text-decoration: none;
  border: 0;
  margin: 2px 10px;
  color: #707070;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 40px;
  height: 43px;
  line-height: 43px;
  display: inline-block;
  background: #fff;
  border: 1px solid #444;
}
#container .wp-pagenavi a:hover, #container .wp-pagenavi span.current {
  border-color: #b52e82;
  background: #b52e82;
  color: #fff;
}
#container .wp-pagenavi a.nextpostslink {
  border-radius: 20px;
  font-size: 1.3rem;
  width: auto;
  height: auto;
  padding: 10px 10px;
  line-height: 1.6;
}
#container .wp-pagenavi a.previouspostslink {
  border-radius: 20px;
  font-size: 1.3rem;
  width: auto;
  height: auto;
  padding: 10px 10px;
  line-height: 1.6;
}

/*=======================================================

    TOPコンテンツ

========================================================*/
#top #container {
  overflow: hidden;
}
#top #container section h2.style01 {
  font-size: 4rem;
  line-height: 1.6;
  margin-bottom: 1em;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  #top #container section h2.style01 {
    font-size: 2.4rem;
  }
}
#top #container section h2.style01 .en {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  display: block;
}
@media screen and (max-width: 1000px) {
  #top #container section h2.style01 .en {
    font-size: 3rem;
  }
}
#top #container section h2.style02 {
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 1em;
  font-weight: 600;
}
#top #container section h2.style02 .en {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  display: block;
  color: #f27c35;
}
@media screen and (max-width: 1000px) {
  #top #container section h2.style02 .en {
    font-size: 2rem;
  }
}
#top #container section .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  #top #container section .inner {
    padding: 0 15px;
  }
}
#top #container .sec001 {
  background: url(../img/top/bg_intro.svg) no-repeat center center #ece9e7;
  padding: 150px 0;
  margin-top: -10px;
}
@media screen and (max-width: 1000px) {
  #top #container .sec001 {
    padding: 60px 0;
  }
}
#top #container .sec001 .inner .lead {
  line-height: 2.2;
  font-size: 3rem;
  font-weight: 500;
  color: #422513;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #top #container .sec001 .inner .lead {
    font-size: 1.8rem;
  }
}
#top #container .sec002 {
  background: url(../img/top/bg01.png) no-repeat center top/cover;
  padding: 200px 0;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 {
    padding: 100px 0;
  }
}
#top #container .sec002 .inner h2 {
  font-size: 12rem;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 1em;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner h2 {
    font-size: 6rem;
    overflow: hidden;
  }
}
#top #container .sec002 .inner h2 span {
  font-size: 6rem;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner h2 span {
    font-size: 3rem;
  }
}
#top #container .sec002 .inner h2::after {
  content: url(../img/top/fig_wave.svg);
  display: block;
  margin-top: -70px;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner h2::after {
    margin-top: 0;
  }
}
#top #container .sec002 .inner ul li {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner ul li {
    margin-bottom: 60px;
  }
}
#top #container .sec002 .inner ul li .cont {
  width: 85%;
}
#top #container .sec002 .inner ul li .cont h3 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner ul li .cont h3 {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
#top #container .sec002 .inner ul li .cont .txt {
  font-size: 2.6rem;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner ul li .cont .txt {
    font-size: 2rem;
  }
}
#top #container .sec002 .inner ul li:first-child::before {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  content: "1";
  font-size: 22rem;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner ul li:first-child::before {
    font-size: 11rem;
    margin-right: 20px;
  }
}
#top #container .sec002 .inner ul li:nth-child(2)::before {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  content: "2";
  font-size: 22rem;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner ul li:nth-child(2)::before {
    font-size: 11rem;
    margin-right: 20px;
  }
}
#top #container .sec002 .inner ul li:last-child {
  margin-bottom: 0;
}
#top #container .sec002 .inner ul li:last-child::before {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  content: "3";
  font-size: 22rem;
}
@media screen and (max-width: 1000px) {
  #top #container .sec002 .inner ul li:last-child::before {
    font-size: 11rem;
    margin-right: 20px;
  }
}
#top #container .sec003 {
  background: url(../img/top/bg02.png) no-repeat center top/cover;
  padding: 200px 0;
}
@media screen and (max-width: 1000px) {
  #top #container .sec003 {
    padding: 100px 0;
  }
}
#top #container .sec003 .inner {
  color: #fff;
}
#top #container .sec003 .inner h2 {
  font-size: 6rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1000px) {
  #top #container .sec003 .inner h2 {
    font-size: 3rem;
  }
}
#top #container .sec003 .inner ul {
  max-width: 800px;
  margin: 0 auto;
}
#top #container .sec003 .inner ul li {
  font-size: 3.6rem;
  font-weight: 600;
  padding-left: 1.4em;
  text-indent: -1.4em;
  margin-bottom: 50px;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  #top #container .sec003 .inner ul li {
    font-size: 2rem;
    padding-left: 2.7em;
    text-indent: -2.7em;
  }
}
#top #container .sec003 .inner ul li:last-child {
  margin-bottom: 0;
}
#top #container .sec003 .inner ul li::before {
  content: url(../img/top/ico_box.svg);
  margin-right: 20px;
}
#top #container .sec004 {
  background: url(../img/top/bg01.png) no-repeat center top/cover;
  padding: 80px 0;
}
#top #container .sec004 .inner {
  color: #fff;
}
#top #container .sec004 .inner h2 {
  font-size: 4.4rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner h2 {
    font-size: 3rem;
  }
}
#top #container .sec004 .inner .flex {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}
#top #container .sec004 .inner .flex figure {
  flex: 1;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex figure {
    flex: auto;
    margin: 0;
  }
}
#top #container .sec004 .inner .flex .cont {
  width: 50%;
  padding: 0 0 0 100px;
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex .cont {
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
    margin-top: 30px;
  }
}
#top #container .sec004 .inner .flex .cont h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1em;
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex .cont h3 {
    font-size: 2rem;
  }
}
#top #container .sec004 .inner .flex .cont .txt {
  font-size: 2rem;
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex .cont .txt {
    font-size: 1.6rem;
  }
}
#top #container .sec004 .inner .flex02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}
#top #container .sec004 .inner .flex02.last {
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex02 {
    flex-direction: column-reverse;
  }
}
#top #container .sec004 .inner .flex02 figure {
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex02 figure {
    flex: auto;
    margin: 0;
  }
}
#top #container .sec004 .inner .flex02 .cont {
  width: 50%;
  padding: 0 100px 0 0;
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex02 .cont {
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
    margin-top: 30px;
  }
}
#top #container .sec004 .inner .flex02 .cont h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1em;
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex02 .cont h3 {
    font-size: 2rem;
  }
}
#top #container .sec004 .inner .flex02 .cont .txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 1000px) {
  #top #container .sec004 .inner .flex02 .cont .txt {
    font-size: 1.6rem;
  }
}

/*=======================================================

    下層

========================================================*/
#local #container {
  overflow: hidden;
}
#local #container .title {
  height: 910px;
}
@media screen and (max-width: 1000px) {
  #local #container .title {
    height: 450px;
  }
}
#local #container h2.style01 {
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
  color: #422513;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  #local #container h2.style01 {
    font-size: 2.8rem;
  }
}
#local #container section p {
  color: #422513;
}
@media screen and (max-width: 1000px) {
  #local #container section .inner {
    padding: 0 15px;
  }
}
#local #container .bread {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0 60px;
}
@media screen and (max-width: 1000px) {
  #local #container .bread {
    padding: 15px 15px 50px;
  }
}
#local #container .bread a {
  color: #422513;
}

/*=======================================================

    料金について

========================================================*/
#local .price {
  background: #f6f5f5;
}
#local .price .title {
  background: url(../img/price/bg_title.png) no-repeat center top/cover;
}
#local .price .new_price .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#local .price .new_price .inner h3 {
  text-align: center;
  margin-bottom: 1em;
  font-weight: 600;
  font-size: 3.2rem;
}
@media screen and (max-width: 1000px) {
  #local .price .new_price .inner h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1000px) {
  #local .price .new_price .inner .js-scrollable table {
    width: 700px;
  }
}
#local .price .new_price .inner table {
  width: 100%;
  margin-bottom: 30px;
}
#local .price .new_price .inner table.text-center {
  table-layout: fixed;
}
#local .price .new_price .inner table.text-center tr td:nth-child(2) {
  text-align: center;
}
#local .price .new_price .inner table tr th {
  padding: 15px;
  font-weight: 600;
  border: 1px solid #ed6d2a;
  line-height: 1.4;
  vertical-align: middle;
}
#local .price .new_price .inner table tr th.bg_orange {
  background: #ed6d2a;
  color: #fff;
  border: 1px solid #fff;
}
#local .price .new_price .inner table tr td {
  line-height: 1.4;
  padding: 15px;
  border: 1px solid #ed6d2a;
  vertical-align: middle;
}
#local .price .new_price .inner table tr td:nth-child(2) {
  text-align: right;
}
#local .price .new_price .inner table tr td.price_txt {
  text-align: right;
}
#local .price .new_price .inner table tr td.border0 {
  border: 0;
}
#local .price .sec001 {
  background: #f6f5f5;
  padding: 70px 0;
}
@media screen and (max-width: 1000px) {
  #local .price .sec001 {
    padding: 40px 0;
  }
}
#local .price .sec001 .inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
#local .price .sec001 .inner .lead {
  font-size: 2.7rem;
}
@media screen and (max-width: 1000px) {
  #local .price .sec001 .inner .lead {
    font-size: 1.7rem;
    text-align: left;
  }
}
#local .price .sec002 {
  background: #f6f5f5;
  padding: 0 0 70px;
}
@media screen and (max-width: 1000px) {
  #local .price .sec002 {
    padding: 0 0 40px;
  }
}
@media screen and (min-width: 1001px) {
  #local .price .sec002 .scroll-hint-icon-white {
    display: none;
  }
}
#local .price .sec002 .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#local .price .sec002 .inner .box {
  margin-bottom: 60px;
}
#local .price .sec002 .inner .box.no01 h3.tab::after {
  content: url(../img/price/fig_map.svg);
  margin-left: 20px;
}
@media screen and (max-width: 1000px) {
  #local .price .sec002 .inner .box.no01 .js-scrollable {
    padding-top: 150px;
  }
}
#local .price .sec002 .inner .box.no01 table::before {
  content: url(../img/price/fig_pop01.png);
  position: absolute;
  right: 30px;
  top: -125px;
}
#local .price .sec002 .inner .box.no01 table::after {
  content: url(../img/price/fig_no01.svg);
  position: absolute;
  right: -30px;
  top: -25px;
}
#local .price .sec002 .inner .box.no02 h3.tab::after {
  content: url(../img/price/fig_illust03.svg);
  margin-left: 20px;
}
@media screen and (max-width: 1000px) {
  #local .price .sec002 .inner .box.no02 .js-scrollable {
    padding-top: 50px;
  }
}
#local .price .sec002 .inner .box.no02 table::after {
  content: url(../img/price/fig_no01.svg);
  position: absolute;
  right: 190px;
  top: -30px;
}
#local .price .sec002 .inner .box.no03 {
  position: relative;
}
#local .price .sec002 .inner .box.no03::after {
  content: url(../img/price/fig_pop02.png);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  #local .price .sec002 .inner .box.no03::after {
    content: ""; /*何も入れない*/
    display: inline-block;
    width: 300px; /*画像の幅*/
    height: 117px; /*画像の高さ*/
    background-image: url(../img/price/fig_pop02.png);
    background-size: contain;
    vertical-align: middle;
  }
}
#local .price .sec002 .inner .box.no03 .box_wrap {
  padding-bottom: 200px;
}
#local .price .sec002 .inner .box.no03 h3.tab {
  text-align: center;
  justify-content: center;
  padding: 20px 50px;
}
#local .price .sec002 .inner .box.no04 h3 {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5em;
}
#local .price .sec002 .inner .box.no04 h3 span {
  color: #ed6d2a;
}
#local .price .sec002 .inner .box.no04 .flex {
  justify-content: space-between;
}
#local .price .sec002 .inner .box.no04 .flex.end {
  align-items: end;
}
#local .price .sec002 .inner .box.no04 .flex .box_s {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1000px) {
  #local .price .sec002 .inner .box.no04 .flex .box_s {
    width: 100%;
  }
}
#local .price .sec002 .inner .box.no04 .flex .box_s h4 {
  font-size: 1.9rem;
  color: #ed6d2a;
  font-weight: 600;
  padding-left: 1em;
  border-left: 3px solid #ed6d2a;
  margin-bottom: 10px;
}
#local .price .sec002 .inner .box.no04 .flex .box_s table {
  width: 100%;
}
#local .price .sec002 .inner .box.no04 .flex .box_s.end table {
  margin-top: 30px;
}
#local .price .sec002 .inner .box.no04 .bnr {
  text-align: center;
}
#local .price .sec002 .inner .box h3.tab {
  padding: 15px 50px;
  border-radius: 15px 15px 0 0;
  background: #ed6d2a;
  display: flex;
  align-items: center;
  max-width: 490px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 600;
  font-size: 2.4rem;
}
#local .price .sec002 .inner .box .box_wrap {
  padding: 50px 100px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  #local .price .sec002 .inner .box .box_wrap {
    padding: 50px 20px;
  }
}
#local .price .sec002 .inner .box .box_wrap .indent {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 1001px) {
  #local .price .sec002 .inner .box .box_wrap .js-scrollable {
    overflow: inherit !important;
  }
}
@media screen and (max-width: 1000px) {
  #local .price .sec002 .inner .box .box_wrap .js-scrollable {
    overflow: scroll;
  }
}
#local .price .sec002 .inner .box .box_wrap .js-scrollable table {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #local .price .sec002 .inner .box .box_wrap .js-scrollable table {
    width: 800px;
    box-sizing: border-box;
  }
}
#local .price .sec002 .inner .box .box_wrap table {
  font-size: 1.3rem;
  margin-bottom: 30px;
  position: relative;
}
#local .price .sec002 .inner .box .box_wrap table.style01 {
  table-layout: fixed;
  width: 100%;
}
#local .price .sec002 .inner .box .box_wrap table.style01 tr {
  text-align: center;
}
#local .price .sec002 .inner .box .box_wrap table.style01 tr:nth-child(odd) {
  background: #fdf0ea;
}
#local .price .sec002 .inner .box .box_wrap table.style01 tr th {
  width: auto;
}
#local .price .sec002 .inner .box .box_wrap table.style01::after {
  display: none;
}
#local .price .sec002 .inner .box .box_wrap table.style02 {
  table-layout: fixed;
  width: 100%;
}
#local .price .sec002 .inner .box .box_wrap table.style02 tr {
  text-align: center;
}
#local .price .sec002 .inner .box .box_wrap table.style02 tr th {
  width: auto;
}
#local .price .sec002 .inner .box .box_wrap table.style02::after {
  display: none;
}
#local .price .sec002 .inner .box .box_wrap table.style03 {
  width: 100%;
}
#local .price .sec002 .inner .box .box_wrap table.style03 tr {
  text-align: center;
}
#local .price .sec002 .inner .box .box_wrap table.style03 tr:nth-child(odd) {
  background: #fdf0ea;
}
#local .price .sec002 .inner .box .box_wrap table.style03 tr th {
  width: auto;
}
#local .price .sec002 .inner .box .box_wrap table.style03::after {
  display: none;
}
#local .price .sec002 .inner .box .box_wrap table tr.plan td {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
#local .price .sec002 .inner .box .box_wrap table tr.plan td.plan01 {
  background: #3cb4c8;
}
#local .price .sec002 .inner .box .box_wrap table tr.plan td.plan02 {
  background: #dc6478;
}
#local .price .sec002 .inner .box .box_wrap table tr.plan td.plan03 {
  background: #fad200;
  color: #000;
}
#local .price .sec002 .inner .box .box_wrap table tr th {
  padding: 15px;
  font-weight: 600;
  border: 1px solid #ed6d2a;
  line-height: 1.4;
  width: 23%;
  vertical-align: middle;
}
#local .price .sec002 .inner .box .box_wrap table tr th.bg_orange {
  background: #ed6d2a;
  color: #fff;
  border: 1px solid #fff;
}
#local .price .sec002 .inner .box .box_wrap table tr td {
  line-height: 1.4;
  padding: 15px;
  border: 1px solid #ed6d2a;
  vertical-align: middle;
}
#local .price .sec002 .inner .box .box_wrap table tr td.bg_blue {
  background: #d8f0f4;
}
#local .price .sec002 .inner .box .box_wrap table tr td.bg_pink {
  background: #fbeff1;
}
#local .price .sec002 .inner .box .box_wrap table tr td.bg_yellow {
  background: #fef8d9;
}
#local .price .sec002 .inner .box .box_wrap table tr td .orange {
  color: #ed6d2a;
  font-size: 1.6rem;
  font-weight: 600;
}
#local .price .sec002 .inner .box .box_wrap table tr td .orange span {
  font-size: 1.3rem;
}
#local .price .sec002 .inner .box .box_wrap table tr td .blue {
  color: #3cb4c8;
}
#local .price .sec002 .inner .box .box_wrap table tr td .pink {
  color: #dc6478;
}
#local .price .sec002 .inner .box .box_wrap table tr td .flex {
  align-items: center;
  justify-content: center;
}
#local .price .sec002 .inner .box .box_wrap table tr td .money {
  display: flex;
  align-items: center;
}
#local .price .sec002 .inner .box .box_wrap table tr td .money::after {
  content: url(../img/price/fig_illust01.svg);
  margin-left: 5px;
}
#local .price .sec002 .inner .box .box_wrap table tr td .home {
  display: flex;
  align-items: center;
}
#local .price .sec002 .inner .box .box_wrap table tr td .home::after {
  content: url(../img/price/fig_illust02.svg);
  margin-left: 5px;
}
#local .price .sec002 .inner .box .txt {
  font-size: 1.6rem;
}
#local .price .sec002 .inner .box .txt span {
  display: inline-block;
}

/*=======================================================

    業務内容

========================================================*/
#local .service {
  background: #ece9e7;
}
#local .service .title {
  background: url(../img/service/bg_title.png) no-repeat center top/cover;
}
#local .service section .inner .more01 a {
  display: block;
  border-radius: 45px;
  background: #ed6d2a;
  border: 0;
  padding: 20px 50px 20px 30px;
  box-sizing: border-box;
  text-align: center;
  margin: 40px auto;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 600;
  box-shadow: 5px 5px #cccccc;
  position: relative;
  margin-bottom: 50px;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  #local .service section .inner .more01 a {
    font-size: 2rem;
    text-align: left;
    padding: 20px 70px 20px 30px;
  }
}
#local .service section .inner .more01 a::before {
  content: url(../img/service/ico_arrow02.svg);
  position: absolute;
  right: 20px;
  top: 20px;
}
#local .service section .inner .more01 a:hover {
  background: #cc5a27;
}
#local .service section .inner h2.style01 {
  margin: 0 auto 3em !important;
  border-bottom: 2px #422513 solid;
  display: table;
  padding: 0 1em 1em;
  line-height: 1.4;
}
#local .service section .inner .flow {
  margin-bottom: 80px;
}
#local .service section .inner .flow li {
  margin-bottom: 1em;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  line-height: 1.6;
  font-weight: 600;
}
#local .service section .inner .flow li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  #local .service section .inner .flow li {
    font-size: 2.2rem;
  }
}
#local .service section .inner .flow li span {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 5rem;
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  #local .service section .inner .flow li span {
    font-size: 3.2rem;
  }
}
#local .service .sec001 {
  background: #ece9e7;
  padding: 70px 0;
}
@media screen and (max-width: 1000px) {
  #local .service .sec001 {
    padding: 40px 0;
  }
}
#local .service .sec001 .inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
#local .service .sec001 .inner .lead {
  font-size: 2.7rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  #local .service .sec001 .inner .lead {
    font-size: 1.8rem;
  }
}
#local .service .sec001 .inner .flex {
  justify-content: space-between;
}
#local .service .sec001 .inner .flex li {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1000px) {
  #local .service .sec001 .inner .flex li {
    width: 100%;
  }
}
#local .service .sec001 .inner .flex li a {
  text-decoration: none;
  display: block;
  border-radius: 55px;
  background: #ed6d2a;
  border: 0;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
  box-shadow: 5px 5px #cccccc;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  #local .service .sec001 .inner .flex li a {
    font-size: 2rem;
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}
#local .service .sec001 .inner .flex li a::before {
  content: url(../img/service/ico_arrow.svg);
  position: absolute;
  right: 20px;
  top: 30px;
}
@media screen and (max-width: 1000px) {
  #local .service .sec001 .inner .flex li a::before {
    top: 10px;
  }
}
#local .service .sec001 .inner .flex li a:hover {
  background: #cc5a27;
}
#local .service .sec002 {
  background: #fff;
  padding: 70px 0 10px;
}
#local .service .sec002 .inner {
  max-width: 800px;
  margin: 0 auto;
}
#local .service .sec003 {
  background: url(../img/service/bg01.svg) no-repeat center top/contain;
  background-color: #fdf0ea;
  padding: 200px 0 10px;
}
@media screen and (max-width: 1000px) {
  #local .service .sec003 {
    padding: 100px 0 10px;
  }
}
#local .service .sec003 .inner {
  max-width: 800px;
  margin: 0 auto;
}
#local .service .sec004 {
  background: url(../img/service/bg02.svg) no-repeat center top/contain;
  background-color: #fbe2d4;
  padding: 200px 0 10px;
}
@media screen and (max-width: 1000px) {
  #local .service .sec004 {
    padding: 100px 0 10px;
  }
}
#local .service .sec004 .inner {
  max-width: 800px;
  margin: 0 auto;
}
#local .service .sec005 {
  background: url(../img/service/bg03.svg) no-repeat center top/contain;
  background-color: #fad3bf;
  padding: 200px 0 60px;
}
@media screen and (max-width: 1000px) {
  #local .service .sec005 {
    padding: 100px 0 50px;
  }
}
#local .service .sec005 .inner {
  max-width: 800px;
  margin: 0 auto;
}

/*=======================================================

    弊社について

========================================================*/
#local .company {
  background: #ece9e7;
}
#local .company .title {
  background: url(../img/company/bg_title.png) no-repeat center top/cover;
}
#local .company .sec001 {
  padding: 70px 0;
  background: #ece9e7;
}
@media screen and (max-width: 1000px) {
  #local .company .sec001 {
    padding: 40px 0;
  }
}
#local .company .sec001 .inner {
  max-width: 800px;
  margin: 0 auto;
}
#local .company .sec001 .inner .flex {
  justify-content: space-between;
}
#local .company .sec001 .inner .flex figure {
  width: calc(35% - 20px);
}
@media screen and (max-width: 1000px) {
  #local .company .sec001 .inner .flex figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
#local .company .sec001 .inner .flex .cont {
  width: calc(65% - 20px);
}
#local .company .sec001 .inner .flex .cont .txt {
  margin-bottom: 1em;
  font-size: 1.8rem;
}
#local .company .sec001 .inner .flex .cont .name {
  text-align: right;
}
@media screen and (max-width: 1000px) {
  #local .company .sec001 .inner .flex .cont {
    width: 100%;
  }
}
#local .company .sec002 {
  padding: 70px 0;
  background: #ece9e7;
}
@media screen and (max-width: 1000px) {
  #local .company .sec002 {
    padding: 40px 0;
  }
}
#local .company .sec002 .inner {
  max-width: 800px;
  margin: 0 auto;
}
#local .company .sec002 .inner table {
  width: 100%;
}
#local .company .sec002 .inner table tr th {
  padding: 15px 25px;
  text-align: center;
  background: #ed6d2a;
  color: #fff;
  border-top: 1px solid #422513;
  font-size: 1.8rem;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 1000px) {
  #local .company .sec002 .inner table tr th {
    width: 100%;
    box-sizing: border-box;
    display: block;
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}
#local .company .sec002 .inner table tr td {
  padding: 15px 25px;
  color: #422513;
  line-height: 1.6;
  border-top: 1px solid #422513;
  font-size: 1.8rem;
}
@media screen and (max-width: 1000px) {
  #local .company .sec002 .inner table tr td {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
}
#local .company .sec002 .inner table tr:last-child th {
  border-bottom: 1px solid #422513;
}
#local .company .sec002 .inner table tr:last-child td {
  border-bottom: 1px solid #422513;
}
#local .company .sec003 {
  padding: 70px 0;
}
@media screen and (max-width: 1000px) {
  #local .company .sec003 {
    padding: 40px 0;
  }
}
#local .company .sec003 .inner {
  max-width: 800px;
  margin: 0 auto;
}
#local .company .sec003 .inner .txt {
  font-size: 1.8rem;
}
#local .company .sec004 {
  padding: 70px 0;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  #local .company .sec004 {
    padding: 40px 0;
  }
}
#local .company .sec004 .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#local .company .sec004 .inner .gmap {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  #local .company .sec004 .inner .gmap iframe {
    height: 400px;
  }
}
@media screen and (max-width: 1000px) {
  #local .company .sec004 .inner .info {
    font-size: 1.5rem;
  }
}

/*=======================================================

    お問い合わせ

========================================================*/
#local .contact {
  background: #ece9e7;
}
#local .contact .title {
  background: url(../img/contact/bg_title.png) no-repeat center top/cover;
}
#local .contact .sec001 {
  background: #ece9e7;
  padding: 70px 0;
}
@media screen and (max-width: 1000px) {
  #local .contact .sec001 {
    padding: 40px 0;
  }
}
#local .contact .sec001 .inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#local .contact .sec001 .inner .lead {
  font-size: 2.7rem;
}
@media screen and (max-width: 1000px) {
  #local .contact .sec001 .inner .lead {
    font-size: 1.8rem;
  }
}
#local .contact .sec002 {
  background: #fff;
  padding: 70px 0;
}
@media screen and (max-width: 1000px) {
  #local .contact .sec002 {
    padding: 40px 0;
  }
}
#local .contact .sec002 .inner {
  max-width: 800px;
  margin: 0 auto;
}
#local .contact .sec002 .inner .lead {
  font-size: 2.7rem;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #local .contact .sec002 .inner .lead {
    font-size: 1.8rem;
  }
}
#local .contact .sec002 .inner .form table {
  width: 100%;
}
#local .contact .sec002 .inner .form table tr th {
  padding: 15px 25px;
  text-align: center;
  background: #f8c5aa;
  color: #422513;
  border-top: 1px solid #422513;
  font-size: 1.8rem;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  #local .contact .sec002 .inner .form table tr th {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
}
#local .contact .sec002 .inner .form table tr th em {
  padding: 2px 4px;
  background: #ed6d2a;
  color: #fff;
  font-size: 1.6rem;
  margin-left: 2em;
}
#local .contact .sec002 .inner .form table tr td {
  padding: 15px 25px;
  color: #422513;
  line-height: 1.6;
  border-top: 1px solid #422513;
  font-size: 1.8rem;
}
@media screen and (max-width: 1000px) {
  #local .contact .sec002 .inner .form table tr td {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
}
#local .contact .sec002 .inner .form table tr td input {
  padding: 15px;
  border: 1px solid #a19289;
  width: 100%;
  box-sizing: border-box;
}
#local .contact .sec002 .inner .form table tr td textarea {
  padding: 15px;
  border: 1px solid #a19289;
  width: 100%;
  box-sizing: border-box;
}
#local .contact .sec002 .inner .form table tr:last-child th {
  border-bottom: 1px solid #422513;
}
#local .contact .sec002 .inner .form table tr:last-child td {
  border-bottom: 1px solid #422513;
}
#local .contact .sec002 .inner .form .txt {
  text-align: center;
  margin: 1em 0;
  font-size: 1.7rem;
}
#local .contact .sec002 .inner .form .privacy_txt {
  text-align: center;
  font-size: 1.6rem;
}
#local .contact .sec002 .inner .form .submit {
  text-align: center;
}
#local .contact .sec002 .inner .form .submit input {
  border-radius: 45px;
  background: #ed6d2a;
  border: 0;
  padding: 20px;
  box-sizing: border-box;
  width: 240px;
  text-align: center;
  margin: 40px auto;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  box-shadow: 5px 5px #cccccc;
  cursor: pointer;
}
#local .contact .sec002 .inner .form .submit .wpcf7-spinner {
  display: block;
}
#local .contact .sec002 .inner .form .info_txt {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 40px;
}
#local .contact .sec002 .inner .form .mail_txt {
  font-size: 2rem;
}
@media screen and (max-width: 1000px) {
  #local .contact .sec002 .inner .form .mail_txt {
    font-size: 1.6rem;
  }
}
#local .contact .sec002 .inner .form .mail_txt a {
  color: #ed6d2a;
}

/*=======================================================

    プライバシーポリシー

========================================================*/
#local .privacy .title {
  display: none;
}
#local .privacy h1 {
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  color: #ed6d2a;
}
@media screen and (max-width: 1000px) {
  #local .privacy h1 {
    font-size: 3rem;
  }
}
#local .privacy p {
  font-size: 1.6rem;
}
#local .privacy .sec001 {
  padding: 70px 0;
}
@media screen and (max-width: 1000px) {
  #local .privacy .sec001 {
    padding: 40px 0;
  }
}
#local .privacy .sec001 .inner {
  max-width: 800px;
  margin: 0 auto;
}
#local .privacy .sec001 .inner .lead {
  margin-bottom: 40px;
}
#local .privacy .sec001 .inner .box h3 {
  font-size: 2.8rem;
  font-weight: 600;
  padding: 0 0 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #422513;
  line-height: 1.4;
  color: #422513;
}
@media screen and (max-width: 1000px) {
  #local .privacy .sec001 .inner .box h3 {
    font-size: 2.2rem;
  }
}
#local .privacy .sec001 .inner .box .txt {
  margin-bottom: 1.5em;
}
#local .privacy .sec001 .inner .box h4 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #422513;
}
@media screen and (max-width: 1000px) {
  #local .privacy .sec001 .inner .box h4 {
    font-size: 1.8rem;
  }
}
#local .privacy .sec001 .inner .box ul {
  list-style: disc;
  line-height: 2.2;
  padding-left: 1em;
  margin-bottom: 1.5em;
}
#local .privacy .sec001 .inner .box ul li {
  font-size: 1.6rem;
}/*# sourceMappingURL=style.css.map */