@charset "UTF-8";
/* Scss Document */
/* Scss Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b,
h2,
h3, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

html {
  font-size: 62.5%; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

/* Scss Document */
/* Scss Document */
/*
@mixin sp_size{
  @media screen and (max-width: $mobile) {
    @content;
  }
}

@mixin tab_size{
  @media screen and (max-width: $tablet) {
    @content;
  }
}

@mixin pc_size{
  @media screen and (max-width: $desktop) {
    @content;
  }
}
*/
/* Scss Document */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #211D1D;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3); }
  header .header_wrap {
    padding: 0;
    display: block; }
    header .header_wrap .logo {
      padding: 10px 10px;
      margin: auto;
      box-sizing: border-box; }
      header .header_wrap .logo img {
        height: 30px;
        width: auto;
        margin: auto;
        display: block; }
    header .header_wrap .menu_wrap {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 50px;
      width: 100%;
      background: #211D1D; }
      header .header_wrap .menu_wrap ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background: #211D1D; }
        header .header_wrap .menu_wrap ul li {
          flex: 0 1 100%;
          width: 100%;
          max-width: 100%; }
          header .header_wrap .menu_wrap ul li a {
            display: block;
            height: 40px;
            line-height: 40px;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem; }
    header .header_wrap .menu_btn {
      width: 30px;
      height: 26px;
      transition: 0.3s;
      position: absolute;
      cursor: pointer;
      right: 20px;
      top: 50%;
      transform: translate(0, -50%); }
      header .header_wrap .menu_btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #fff; }
        header .header_wrap .menu_btn span:nth-child(1) {
          top: 0; }
        header .header_wrap .menu_btn span:nth-child(2) {
          top: 12px; }
        header .header_wrap .menu_btn span:nth-child(3) {
          bottom: 0; }

body.open header .menu_btn span:nth-child(1) {
  -webkit-transform: translateY(20px) rotate(-315deg);
  transform: translateY(20px) rotate(-315deg);
  top: -8px; }
body.open header .menu_btn span:nth-child(2) {
  opacity: 0; }
body.open header .menu_btn span:nth-child(3) {
  -webkit-transform: translateY(-20px) rotate(315deg);
  transform: translateY(-20px) rotate(315deg);
  bottom: -8px; }

/*------------------------------
		768px以上
------------------------------*/
@media screen and (min-width: 768px) {
  header {
    position: static;
    height: auto;
    box-shadow: none; }
    header .header_wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
      align-content: flex-start;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      align-items: flex-end;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 20px 0; }
      header .header_wrap .logo {
        flex: 0 1 210px;
        width: 210px;
        max-width: 210px;
        margin: initial;
        padding: 0; }
        header .header_wrap .logo img {
          width: 100%;
          height: auto; }
      header .header_wrap .menu_wrap {
        display: block !important;
        position: static;
        width: auto;
        background: none;
        flex: 0 1 950px;
        width: 950px;
        max-width: 950px; }
        header .header_wrap .menu_wrap ul li {
          flex: 0 1 calc(100% / 8);
          width: calc(100% / 8);
          max-width: calc(100% / 8); }
          header .header_wrap .menu_wrap ul li a {
            height: auto;
            line-height: 1.5;
            font-size: 1.4rem; }
      header .header_wrap .menu_btn {
        display: none; } }
/*------------------------------
		1024px以下
------------------------------*/
/*------------------------------
		768px以下
------------------------------*/
/* Scss Document */
footer {
  padding-bottom: 15px;
  background-color: #0A0808; }
  footer #gotop {
    display: block !important;
    opacity: 1 !important;
    position: static !important;
    border-radius: 0;
    width: 100%;
    height: auto;
    border: none;
    background: #ccc;
    margin-bottom: 30px;
    padding: 5px; }
  footer #contact {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    padding: 10%;
    text-align: center;
    background: url("/img/common/footer_image.png") no-repeat center/cover; }
    footer #contact:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: .7; }
    footer #contact h2 {
      font-size: 2rem; }
    footer #contact p {
      line-height: 1.5;
      font-size: 1.3rem; }
    footer #contact .label {
      margin-bottom: 20px; }
      footer #contact .label p {
        line-height: 1;
        padding: 10px;
        font-size: 1.6rem;
        display: inline-block;
        border: 1px solid #fff; }
    footer #contact .telnum {
      margin-top: 20px;
      font-size: 3.6rem; }
      footer #contact .telnum span {
        vertical-align: baseline;
        font-size: 1.8rem; }
      footer #contact .telnum p {
        font-size: 1.1rem; }
    footer #contact .btn, footer #contact .back, footer #contact .form_btn {
      margin-bottom: 0; }
  footer .foot_menu {
    padding: 0; }
    footer .foot_menu ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
      align-content: flex-start;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      footer .foot_menu ul.sns {
        width: 40%;
        margin: 0 auto; }
      footer .foot_menu ul li {
        flex: 0 1 calc(100% / 3);
        width: calc(100% / 3);
        max-width: calc(100% / 3);
        font-family: 'Cormorant Garamond', serif;
        text-align: center; }
        footer .foot_menu ul li a {
          display: block;
          padding: 10px 0; }
  footer .snsbox {
    display: flex;
    margin: 0 auto;
    width: 250px; }
    footer .snsbox ul {
      display: flex;
      flex: auto;
      justify-content: space-evenly;
      text-align: center; }
      footer .snsbox ul li {
        font-size: 25px; }
  footer .logo {
    margin: 15px 0;
    text-align: center; }
    footer .logo img {
      width: 45vw;
      max-width: 184px; }
  footer .copyright {
    text-align: center;
    font-size: 1rem; }

@media screen and (min-width: 768px) {
  footer {
    padding-bottom: 35px; }
    footer #gotop {
      display: block !important;
      opacity: 1 !important;
      position: static !important;
      border-radius: 0;
      width: 100%;
      height: auto;
      border: none;
      background: #ccc;
      margin-bottom: 30px;
      padding: 5px; }
    footer #contact {
      margin-bottom: auto;
      padding: 120px 0; }
      footer #contact h2 {
        font-size: 3.4rem; }
      footer #contact p {
        font-size: 1.8rem; }
      footer #contact .label {
        margin-bottom: 20px; }
        footer #contact .label p {
          padding: 12px;
          font-size: 1.8rem; }
      footer #contact .telnum {
        margin-top: 20px;
        line-height: 1.2;
        font-size: 6.3rem; }
        footer #contact .telnum span {
          vertical-align: baseline;
          font-size: 3.4rem; }
        footer #contact .telnum p {
          font-size: 1.4rem; }
        footer #contact .telnum .f15 {
          font-size: 1.5rem; }
      footer #contact .btn, footer #contact .back, footer #contact .form_btn {
        margin-bottom: 0; }
        footer #contact .btn a, footer #contact .back a, footer #contact .form_btn a {
          max-width: 540px;
          height: 80px;
          line-height: 50px;
          font-size: 1.8rem; }
    footer .foot_menu {
      width: 100%;
      max-width: 1020px;
      margin: 40px auto 120px;
      padding: 0; }
      footer .foot_menu ul.sns {
        width: 20%;
        margin: 0 auto; }
        footer .foot_menu ul.sns li {
          font-size: 2.8rem; }
      footer .foot_menu ul li {
        flex: 0 1 calc(100% / 8);
        width: calc(100% / 8);
        max-width: calc(100% / 8);
        font-size: 1.6rem; } }
body {
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif, "Noto Sans", sans-serif;
  color: #fff;
  background-image: url("/img/common/bg.jpg");
  background-repeat: repeat-y;
  position: relative; }

.of {
  overflow: hidden; }

.fl {
  float: left; }

.fr {
  float: right; }

.mt10 {
  margin-top: 10px; }

.mr10 {
  margin-right: 10px; }

.mb10 {
  margin-bottom: 10px; }

.ml10 {
  margin-left: 10px; }

.mt20 {
  margin-top: 20px; }

.mr20 {
  margin-right: 20px; }

.mb20 {
  margin-bottom: 20px; }

.ml20 {
  margin-left: 20px; }

.mt30 {
  margin-top: 30px; }

.mr30 {
  margin-right: 30px; }

.mb30 {
  margin-bottom: 30px; }

.ml30 {
  margin-left: 30px; }

.pl10 {
  padding-left: 10px; }

.pr10 {
  padding-right: 10px; }

.pt10 {
  padding-top: 10px; }

.pb10 {
  padding-bottom: 10px; }

.t_center {
  text-align: center; }

.t_left {
  text-align: left; }

.t_right {
  text-align: right; }

.sp_only {
  display: none; }
  @media screen and (max-width: 980px) {
    .sp_only {
      display: none; } }
  @media screen and (max-width: 768px) {
    .sp_only {
      display: initial; } }

.tab_only {
  display: none; }
  @media screen and (max-width: 980px) {
    .tab_only {
      display: initial; } }
  @media screen and (max-width: 768px) {
    .tab_only {
      display: none; } }

.sp_tab_only {
  display: none; }
  @media screen and (max-width: 980px) {
    .sp_tab_only {
      display: initial; } }
  @media screen and (max-width: 768px) {
    .sp_tab_only {
      display: initial; } }

.pc_tab_only {
  display: initial; }
  @media screen and (max-width: 980px) {
    .pc_tab_only {
      display: initial; } }
  @media screen and (max-width: 768px) {
    .pc_tab_only {
      display: none; } }

.pc_only {
  display: initial; }
  @media screen and (max-width: 980px) {
    .pc_only {
      display: none; } }
  @media screen and (max-width: 768px) {
    .pc_only {
      display: none; } }

a, button {
  text-decoration: none;
  color: inherit;
  transition: 0.2s; }

img {
  width: 100%;
  vertical-align: bottom; }

.w1280 {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: auto; }
  @media screen and (max-width: 1280px) {
    .w1280 {
      padding: 0 2%; } }
  @media screen and (max-width: 768px) {
    .w1280 {
      padding: 0 4%; } }

.w980 {
  box-sizing: border-box;
  width: 100%;
  max-width: 980px;
  margin: auto; }
  @media screen and (max-width: 1280px) {
    .w980 {
      padding: 0 2%; } }
  @media screen and (max-width: 768px) {
    .w980 {
      padding: 0 4%; } }

.owter_wrapper {
  width: 90%;
  margin: 50px auto; }

/*
h1{
	font-size:1rem;
	font-weight: normal;
	letter-spacing: normal;
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: auto;
    text-align: center;
	color:#fff;
	padding: 0 5px;
}
*/
h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    h2 {
      font-size: calc( 2.8rem + ( 1vw - 7.68px ) * 2.34375 ); } }
  @media (min-width: 1280px) {
    h2 {
      font-size: 4rem; } }

h3 {
  font-size: 2.4rem; }
  @media (min-width: 768px) {
    h3 {
      font-size: calc( 2.4rem + ( 1vw - 7.68px ) * 1.171875 ); } }
  @media (min-width: 1280px) {
    h3 {
      font-size: 3rem; } }

i {
  margin-right: 5px; }

a:hover {
  opacity: 0.8; }

.flex_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.is-empty {
  margin: 0 !important;
  padding: 0 !important; }

.owter_box {
  margin-bottom: 50px; }

.inner_box {
  padding: 8% 4%; }

#contents {
  margin-top: 50px; }

.copy_title {
  text-align: center;
  margin-bottom: 40px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif, "Noto Sans", sans-serif;
  font-weight: normal; }

.copy {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem; }
  @media (min-width: 768px) {
    .copy {
      font-size: calc( 1.8rem + ( 1vw - 7.68px ) * 1.171875 ); } }
  @media (min-width: 1280px) {
    .copy {
      font-size: 2.4rem; } }

.attention {
  font-size: 1.2rem;
  letter-spacing: normal; }

#breadcrumb {
  text-align: right;
  margin-top: 10px;
  font-size: 1.2rem;
  letter-spacing: normal; }
  #breadcrumb a {
    padding-right: 15px;
    position: relative; }
    #breadcrumb a:after {
      content: '';
      position: absolute;
      width: 4px;
      height: 4px;
      border-top: 1px solid;
      border-right: 1px solid;
      top: 50%;
      transform: rotate(45deg) translate(0%, -50%);
      right: 8px; }

.title h2 {
  font-size: 1.2rem;
  font-weight: initial;
  color: #BEB255; }
  .title h2 span {
    font-size: 2.4rem; }

#titleimg {
  position: relative;
  z-index: 1;
  height: 15vh;
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  overflow: hidden; }
  #titleimg:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
    background: inherit; }
  #titleimg .wrapper {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    text-align: center;
    color: #434040; }
    #titleimg .wrapper h1 {
      font-size: 1.6rem; }
    #titleimg .wrapper span {
      margin-bottom: 5px;
      display: block;
      font-size: 3.6rem; }

.btn, .back, .form_btn {
  margin: 30px auto;
  position: relative;
  z-index: 1; }
  .btn a, .back a, .form_btn a, .btn button, .back button, .form_btn button {
    box-sizing: border-box;
    display: block;
    position: relative;
    max-width: 300px;
    width: 100%;
    padding: 15px 20px;
    margin: auto;
    text-align: center;
    color: #fff;
    border: 1px solid #BEB255;
    background: #BEB255;
    /*
    &:hover{
    	color: $maincolor;
    	background:#fff;
    	opacity: 1;
    }
    */ }
    .btn a:after, .back a:after, .form_btn a:after, .btn button:after, .back button:after, .form_btn button:after {
      content: '';
      position: absolute;
      width: 5px;
      height: 5px;
      border-top: 1px solid;
      border-right: 1px solid;
      top: 50%;
      transform: rotate(45deg) translate(0%, -50%);
      right: 20px; }
  .btn.return a:after, .return.back a:after, .return.form_btn a:after, .btn.return button:after, .return.back button:after, .return.form_btn button:after {
    position: absolute;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid;
    border-left: 1px solid;
    border-top: none;
    border-right: none;
    top: 50%;
    transform: rotate(45deg) translate(0%, -50%);
    right: auto;
    left: 20px; }

.back a {
  background: #dadada;
  color: #333;
  border-color: #333; }

.form_btn {
  margin: 30px auto; }
  .form_btn a,
  .form_btn button {
    font-size: 100%;
    background: #2FAF7E;
    border-color: #2FAF7E; }
    .form_btn a:hover,
    .form_btn button:hover {
      color: #2FAF7E; }
    .form_btn a:after,
    .form_btn button:after {
      display: none; }

.form_label {
  display: inline-block;
  vertical-align: middle;
  margin: 3px 0; }

.radio-input {
  display: none;
  cursor: pointer; }
  .radio-input:checked + .radio-parts {
    color: #008dd7; }
    .radio-input:checked + .radio-parts:after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 4px;
      transform: translateY(-50%);
      width: 7px;
      height: 7px;
      background: #008dd7;
      border-radius: 50%; }

.radio-parts {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  line-height: 1;
  cursor: pointer; }
  .radio-parts:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border: 1px solid #999;
    border-radius: 50%;
    background-color: #fff; }

.checkbox-input {
  display: none; }
  .checkbox-input:checked + .checkbox-parts {
    color: #008dd7; }
    .checkbox-input:checked + .checkbox-parts:after {
      content: "";
      display: block;
      position: absolute;
      top: -7px;
      left: 5px;
      width: 7px;
      height: 14px;
      transform: rotate(40deg);
      border-bottom: 3px solid #008dd7;
      border-right: 3px solid #008dd7; }

.checkbox-parts {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  line-height: 1; }
  .checkbox-parts:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #fff; }

.pull .bull__span {
  overflow: hidden;
  margin: 2em auto;
  text-align: center;
  position: relative;
  border: 1px solid #333;
  border-radius: 2px;
  background: #ffffff;
  padding: 5px 0; }
  .pull .bull__span:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #333 transparent transparent transparent;
    pointer-events: none; }
  .pull .bull__span select {
    width: 35%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 8px 38px 8px 8px;
    color: #333; }
    .pull .bull__span select::-ms-expand {
      display: none; }

.h_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; }
  .h_wrap > .h_box {
    flex: 0 1 48%;
    width: 48%;
    max-width: 48%; }

@media screen and (min-width: 768px) {
  #contents {
    margin: 0; }

  .owter_box {
    margin-bottom: 100px; }

  .btn, .back, .form_btn {
    margin: 60px auto; }

  #titleimg {
    height: 300px; }
    #titleimg .wrapper h1 {
      font-size: 1.7rem; }
    #titleimg .wrapper span {
      margin-bottom: 5px;
      display: block;
      font-size: 6.5rem; }

  .owter_wrapper {
    width: 100%;
    max-width: 980px;
    margin: 50px auto; } }
/*
//------------------------------
//		1024px以下
//------------------------------

@include tab_size() { 

	
}

//------------------------------
//		768px以下
//------------------------------

@include sp_size() { 
	#contents{
		margin-top: 100px;
	}

	.box {
		margin-bottom: 80px;
	}
	
	.title{
		border:none;
		padding-left: 0;
		text-align: center;
	}

	//ボタン設定
	.btn{
		a{
			width: 100%;
		    max-width: 100%;
			padding:20px;
		}
		&:after{
			max-width: 100%;
		}
	}
	
	//------------------------------
	//		  下層共通
	//------------------------------

	
	.titleimg{
		height: 20vh;
		margin-bottom: 40px;
	}
	
	#breadcrumb{
	    display: none;
	}
	
	
	//	お問い合わせ
	.contact{
		.contact_wrap{
			>div{
				@include flex_box(100%);
			}
			.tel{
				margin-bottom: 20px;
				@include font(3rem, 6rem, 320px, 768px);
			}
			.mail{
				a{
					@include font(1.8rem, 4rem, 320px, 768px);
				}
				
			}
		}
	}
}
*/

/*# sourceMappingURL=base.css.map */
