@charset "UTF-8";

/* -------------------------- */

/* basis */

/* -------------------------- */

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  color: #320506;
  font-family: "\30D2\30E9\30AE\30CE\89D2\30B4   ProN", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF   Medium", "\6E38\30B4\30B7\30C3\30AF\4F53", "Yu Gothic Medium", YuGothic, "\30E1\30A4\30EA\30AA", Meiryo, "\FF2D\FF33   \FF30\30B4\30B7\30C3\30AF", "MS PGothic", sans-serif;
  font-size: 1.4em;
  line-height: 1.6;
  overflow-y: scroll;
  position: relative;
  word-break: break-word;
}

/* コンテンツ幅 */

.container {
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 30px;
  }

  .container.container_l {
    padding: 0 60px;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 50px;
  }

  .container.container_l {
    padding: 0 200px;
  }
}

/* 表示制御 */

@media screen and (min-width: 768px) {
  .visible_xs {
    display: none;
  }
}

.hidden_xs {
  display: none;
}

@media screen and (min-width: 768px) {
  .hidden_xs {
    display: block;
  }
}

.hidden_all {
  display: none;
}

/* フォント制御 */

.txt_normal {
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 1280px) {
  .txt_normal {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.txt_c {
  text-align: center;
}

.txt_r {
  text-align: right;
}

/* 画像制御 */

.img_responsive {
  width: 100%;
  height: auto;
}

.thum_img {
  line-height: 0;
}

.icon {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

/* -------------------------- */

/* reset */

/* -------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

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

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* -------------------------- */

/* link */

/* -------------------------- */

a {
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:link,
a:visited {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

/* -------------------------- */

/* flexbox */

/* -------------------------- */

/* x_type01 スマホ縦並び、TB横並び */

.flexible_x_type01 {
  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 (min-width: 768px) {
  .flexible_x_type01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* x_type02 スマホ横並び、TB縦並び */

.flexible_x_type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (min-width: 768px) {
  .flexible_x_type02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* x_type03 横並び */

.flexible_x_type03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* x_type04 横並び折返し */

.flexible_x_type04 {
  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;
}

/* y_type01 縦並び */

.flexible_y_type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* -------------------------- */

/* bg */

/* -------------------------- */

.bg_color03 {
  background: #320506;
}

.bg_grey01 {
  background-color: #faf8f8;
}

/* -------------------------- */

/* title */

/* -------------------------- */

/* title_section */

.title_section {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 2.2rem;
  font-family: "Noto Serif JP";
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title_section {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 1280px) {
  .title_section {
    margin-bottom: 40px;
    padding-bottom: 25px;
    font-size: 4rem;
  }
}

.title_section--nopadding {
  margin-bottom: 0;
}

.title_section:after {
  width: 20px;
  height: 1px;
  margin: auto;
  background: #320506;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.title_section > span {
  color: #ac0b0f;
  display: block;
  font-size: 1.2rem;
}

@media screen and (min-width: 1280px) {
  .title_section > span {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
}

.title_section em {
  color: #320506;
  display: block;
  font-style: normal;
  font-size: 2.4rem;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .title_section em {
    font-size: 5.2rem;
  }
}

.noted {
  position: relative;
  padding-left: 20px;
  display: inline-block;
}

.noted:before {
  content: '\203B';
  position: absolute;
  left: 0;
  top: 0;
}

.txt_normal {
  letter-spacing: 0.4px;
}

/* title_contents01 */

.title_contents01 {
  margin-bottom: 15px;
  font-family: "Noto Serif JP";
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title_contents01 {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1280px) {
  .title_contents01 {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}

/* title_contents02 */

.title_contents02 {
  margin-bottom: 10px;
  color: #320506;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .title_contents02 {
    margin-bottom: 25px;
    font-size: 3.2rem;
  }
}

.title_contents02_sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

@media screen and (min-width: 1280px) {
  .title_contents02_sub {
    margin: -22px 0 10px;
  }
}

.title_contents02_sub span:first-child {
  width: 55px;
  height: 55px;
  padding-top: 13px;
  background: #320506;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 1280px) {
  .title_contents02_sub span:first-child {
    width: 80px;
    height: 80px;
    padding-top: 18px;
    font-size: 1.4rem;
  }
}

.title_contents02_sub span:first-child em {
  display: block;
  font-style: normal;
  font-size: 2rem;
}

@media screen and (min-width: 1280px) {
  .title_contents02_sub span:first-child em {
    font-size: 3.4rem;
  }
}

.title_contents02_sub span:last-child {
  padding-left: 15px;
  display: block;
  font-size: 1.4rem;
  line-height: 1.3;
}

@media screen and (min-width: 1280px) {
  .title_contents02_sub span:last-child {
    padding-left: 20px;
    font-size: 1.6rem;
  }
}

.title_contents02_sub span:last-child em {
  display: block;
  font-size: 2rem;
  font-style: normal;
}

@media screen and (min-width: 1280px) {
  .title_contents02_sub span:last-child em {
    font-size: 3.2rem;
  }
}

/* title_contents03 */

.title_contents03 {
  margin-bottom: 15px;
  color: #320506;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .title_contents03 {
    margin-bottom: 30px;
    font-size: 3.2rem;
  }
}

.title_contents03:before,
.title_contents03:after {
  width: 20px;
  height: 1px;
  margin: auto;
  background: #320506;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .title_contents03:before,
  .title_contents03:after {
    width: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .title_contents03:before,
  .title_contents03:after {
    width: 110px;
    top: 12px;
  }
}

.title_contents03:before {
  left: -30px;
}

@media screen and (min-width: 768px) {
  .title_contents03:before {
    left: -70px;
  }
}

@media screen and (min-width: 1280px) {
  .title_contents03:before {
    left: -135px;
  }
}

.title_contents03:after {
  right: -30px;
}

@media screen and (min-width: 768px) {
  .title_contents03:after {
    right: -70px;
  }
}

@media screen and (min-width: 1280px) {
  .title_contents03:after {
    right: -135px;
  }
}

.title_contents03 em {
  color: #ac0b0f;
  font-style: normal;
  font-size: 4rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .title_contents03 em {
    color: #ac0b0f;
  }
}

@media screen and (min-width: 1280px) {
  .title_contents03 em {
    font-size: 4rem;
  }
}

/* title_contents04 */

.title_contents04 {
  margin-bottom: 10px;
  color: #320506;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 1280px) {
  .title_contents04 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}

.title_contents04 span {
  margin-right: 15px;
  display: inline-block;
  font-size: 1.4rem;
}

/* title_contents05 */

.title_contents05 {
  margin-bottom: 30px;
  color: #320506;
  font-size: 2rem;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .title_contents05 {
    margin-bottom: 50px;
    font-size: 2.6rem;
  }
}

.title_contents05 span {
  padding-right: 10px;
  background: #fff;
  display: inline-block;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 1280px) {
  .title_contents05 span {
    padding-right: 20px;
  }
}

.title_contents05:before,
.title_contents05:after {
  width: 100%;
  height: 1px;
  margin: auto;
  background: #320506;
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
}

.title_contents05:before {
  margin-top: 15px;
}

@media screen and (min-width: 1280px) {
  .title_contents05:before {
    margin-top: 18px;
  }
}

.title_contents05:after {
  margin-top: 19px;
}

@media screen and (min-width: 1280px) {
  .title_contents05:after {
    margin-top: 22px;
  }
}

/* title_contents06 */

.title_contents06 {
  margin-bottom: 15px;
  font-family: "Noto Serif JP";
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title_contents06 {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1280px) {
  .title_contents06 {
    margin-bottom: 20px;
    font-size: 4rem;
  }
}

/* -------------------------- */

/* text */

/* -------------------------- */

/* txt_achievement */

.txt_achievement {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .txt_achievement {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .txt_achievement {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .txt_achievement span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .txt_achievement span {
    font-size: 2.4rem;
  }
}

.txt_achievement span em {
  padding: 0 5px;
  color: #ac0b0f;
  font-style: normal;
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
  .txt_achievement span em {
    font-size: 4rem;
  }
}

@media screen and (min-width: 1280px) {
  .txt_achievement span em {
    font-size: 6rem;
  }
}

/* txt_catch */

.txt_catch {
  margin-bottom: 30px;
  font-family: "Noto Serif JP";
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .txt_catch {
    font-size: 2.6rem;
  }

  .txt_catch rt {
    margin-bottom: -5px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1280px) {
  .txt_catch {
    margin-top: -30px;
    font-size: 4.3rem;
  }

  .txt_catch rt {
    margin-bottom: -8px;
    font-size: 1.6rem;
  }
}

/* txt_caution */

.txt_caution {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  line-height: 1.4;
}

@media screen and (min-width: 1280px) {
  .txt_caution {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.txt_important {
  line-height: 1.6;
}

@media screen and (min-width: 1280px) {
  .txt_important {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.txt_important em {
  color: #ac0b0f;
  font-style: normal;
}

@media screen and (min-width: 1280px) {
  .txt_important em {
    font-size: 1.8rem;
  }
}

/* -------------------------- */

/* btn */

/* -------------------------- */

/* btn_more01 */

.btn_default01 {
  width: 100%;
  height: 45px;
  background: #320506;
  border: 1px solid #320506;
  border-radius: 0;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .btn_default01 {
    width: 290px;
    height: 55px;
    margin: 0 auto;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .btn_default01 {
    height: 76px;
  }
}

.btn_default01 .icon {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  fill: #fff;
}

.btn_default01 .icon.rotage {
  -webkit-transform: rotate(-180deg) translateY(0);
          transform: rotate(-180deg) translateY(0);
  margin-left: 0;
  margin-right: 10px;
}

.btn_default01:hover {
  background: #fff;
  color: #320506;
  opacity: 1;
}

.btn_default01:hover .icon {
  fill: #320506;
}

.btn_default01:focus {
  outline: none;
}

.btn_default01.btn_color01 {
  background: #fff;
  color: #320506;
}

.btn_default01.btn_color01 .icon {
  fill: #320506;
}

.btn_default01.btn_color01:hover {
  background: #320506;
  color: #fff;
  opacity: 1;
}

.btn_default01.btn_color01:hover .icon {
  fill: #fff;
}

.btn_default01.btn_color02 {
  background: #ac0b0f;
  border-color: #ac0b0f;
}

.btn_default01.btn_color02:hover {
  background: #fff;
  color: #ac0b0f;
}

.btn_default01.btn_color02:hover .icon {
  fill: #ac0b0f;
}

.btn_default01.btn_color03 {
  background: #fff;
  border-color: #ac0b0f;
  color: #ac0b0f;
}

.btn_default01.btn_color03 .icon {
  fill: #ac0b0f;
}

.btn_default01.btn_color03:hover {
  background: #ac0b0f;
  color: #fff;
  opacity: 1;
}

.btn_default01.btn_color03:hover .icon {
  fill: #fff;
}

/* btn_default02 */

.btn_default02 {
  width: 100%;
  height: 45px;
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .btn_default02 {
    width: 320px;
    height: 55px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1280px) {
  .btn_default02 {
    width: 380px;
    height: 100px;
    font-size: 2rem;
  }
}

/* btn_back */

.btn_back .icon {
  margin: 0 10px 0 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.btn_center {
  width: 100%;
  text-align: center;
}

.btn_center .btn_default01 {
  margin: 0 auto;
}

/* btn_contact */

.btn_contact a {
  height: 100px;
  background: #ac0b0f;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .btn_contact a {
    height: 230px;
  }
}

.btn_contact a .btn_contact_txt em {
  margin-bottom: 5px;
  display: block;
  font-family: "Noto Serif JP";
  font-size: 2.7rem;
  font-style: normal;
}

@media screen and (min-width: 1280px) {
  .btn_contact a .btn_contact_txt em {
    margin-bottom: 13px;
    font-size: 3.4rem;
  }
}

.btn_contact a .btn_contact_txt span {
  display: block;
  font-size: 1.2rem;
}

@media screen and (min-width: 1280px) {
  .btn_contact a .btn_contact_txt span {
    font-size: 1.4rem;
  }
}

.btn_contact a .icon {
  margin-left: 10px;
  fill: #fff;
}

@media screen and (min-width: 1280px) {
  .btn_contact a .icon {
    width: 25px;
    height: 25px;
    margin-left: 30px;
  }
}

/* btn_small */

@media screen and (min-width: 768px) {
  .btn_small {
    width: inherit;
    margin: 0;
    padding: 0 15px;
    display: inline-block;
    line-height: 45px;
  }
}

@media screen and (min-width: 1280px) {
  .btn_small {
    padding: 0 30px;
    line-height: 65px;
  }
}

/* -------------------------- */

/* form */

/* -------------------------- */

.input {
  width: 100%;
  height: 42px;
  padding: 15px 10px;
  background: #ece7e5;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

.input:focus {
  background-color: #ddd;
  outline: none;
}

@media screen and (min-width: 1280px) {
  .input {
    height: 60px;
    padding: 15px;
  }
}

textarea {
  width: 100%;
  height: 200px;
  padding: 15px 10px;
  background: #ece7e5;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

textarea:focus {
  background-color: #dbdbdb;
}

@media screen and (min-width: 768px) {
  textarea {
    padding: 20px 15px;
  }
}

textarea:focus {
  outline: none;
}

.input_size01 {
  width: 100%;
}

.input_size02 {
  width: 100%;
  height: 100px;
}

@media screen and (min-width: 1280px) {
  .input_size02 {
    height: 200px;
  }
}

.input_size03 {
  width: 150px;
}

.input_size04 {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .input_size04 {
    width: 50%;
  }
}

.input_size05 {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .input_size05 {
    width: 400px;
  }
}

.input_size06 {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .input_size06 {
    width: 500px;
  }
}

.input_size07 {
  width: 90px;
}

@media screen and (min-width: 768px) {
  .input_size07 {
    width: 100px;
  }
}

@media screen and (min-width: 1280px) {
  .input_size07 {
    width: 250px;
  }
}

.input_size08 {
  width: 40px;
}

@media screen and (min-width: 768px) {
  .input_size08 {
    width: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .input_size08 {
    width: 100px;
  }
}

.input_size09 {
  width: 150px;
}

@media screen and (min-width: 1280px) {
  .input_size09 {
    width: 250px;
  }
}

.cms_input_bottom {
  margin-bottom: 10px;
}

.input_btn {
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.input_btn:hover {
  opacity: 0.7;
}

.input_check {
  height: 24px;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.input_check input[type='radio'],
.input_check input[type='checkbox'] {
  display: none;
  position: relative;
}

.input_check input[type='radio'] + span,
.input_check input[type='checkbox'] + span {
  height: 24px;
  padding-left: 35px;
  display: inline-block;
  line-height: 1.8;
}

.input_check input[type='radio'] + span {
  line-height: 24px;
}

.input_check input[type='radio'] + span::before,
.input_check input[type='checkbox'] + span::before {
  background: #fff;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s;
}

.input_check input[type='radio'] + span::before {
  width: 20px;
  height: 20px;
  border-radius: 40px;
  border: 2px solid #320506;
}

.input_check input[type='checkbox'] + span::before {
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.input_check input[type='checkbox']:checked + span::before {
  background: #ac0b0f;
}

.input_check input[type='checkbox']:checked + span::after {
  width: 30px;
  height: 30px;
  /*background: url(/images/icon/icon_check.svg) no-repeat center/15px auto;*/
  border-radius: 3px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  vertical-align: middle;
}

.input_check input[type='radio']:checked + span::after {
  width: 14px;
  height: 14px;
  background: #320506;
  border-radius: 15px;
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
}

@media screen and (min-width: 1280px) {
  .input_check {
    height: 30px;
  }

  .input_check input[type='checkbox'] + span {
    height: 40px;
    padding-left: 52px;
    line-height: 30px;
    font-size: 1.6rem;
  }

  .input_check input[type='radio'] + span {
    height: 30px;
    padding-left: 42px;
    line-height: 30px;
    font-size: 1.6rem;
  }

  .input_check input[type='radio'] + span::before {
    width: 26px;
    height: 26px;
    border-radius: 100px;
  }

  .input_check input[type='checkbox'] + span::before {
    width: 40px;
    height: 40px;
    top: -3px;
  }

  .input_check input[type='checkbox']:checked + span::after {
    width: 40px;
    height: 40px;
    background-size: 25px auto;
    top: -4px;
  }

  .input_check input[type='checkbox'] + span::before {
    width: 40px;
    height: 40px;
  }

  .input_check input[type='radio']:checked + span::after {
    width: 18px;
    height: 18px;
    border-radius: 100px;
    left: 6px;
    top: 6px;
  }
}

/* input_check_btn */

.input_check_btn {
  width: 100%;
  height: 42px;
  display: block;
  cursor: pointer;
  position: relative;
}

.input_check_btn input {
  display: none;
  position: relative;
}

.input_check_btn input + span {
  width: 100%;
  height: 44px;
  color: #ac0b0f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.input_check_btn input + span:before {
  width: calc(100% - 4px);
  height: 40px;
  background: #fff;
  border: 2px solid #ac0b0f;
  border-radius: 100px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s;
  z-index: -1;
}

.input_check_btn input:checked + span {
  color: #fff !important;
}

.input_check_btn input:checked + span:before {
  background: #ac0b0f;
}

.input_check_btn input:checked + span:after {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  vertical-align: middle;
  z-index: 2;
}

.input_check_btn img {
  width: 32px;
  height: auto;
  border: 1px solid #d4dbe1;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .input_check_btn input + span {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .input_check_btn {
    height: 65px;
  }

  .input_check_btn input + span {
    height: 65px;
    font-size: 1.8rem;
  }

  .input_check_btn input + span:before {
    height: 65px;
  }

  .input_check_btn img {
    width: 62px;
    left: 50px;
  }

  .input_check_btn input:checked + span:after {
    width: 25px;
    height: 25px;
    margin-top: 2px;
    background-size: 25px auto;
    right: 35px;
  }
}

/* select */

.select_box {
  width: 100%;
  height: 42px;
  background: #fff;
  border: 1px solid #320506;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .select_box {
    height: 70px;
  }
}

.select_box:before {
  width: 45px;
  height: calc(100% + 2px);
  background: #320506;
  content: '';
  position: absolute;
  right: -1px;
  top: -1px;
}

@media screen and (min-width: 1280px) {
  .select_box:before {
    width: 70px;
  }
}

.select_box:after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8.7px 5px 0 5px;
  border-color: #fff transparent;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 17px;
}

@media screen and (min-width: 1280px) {
  .select_box:after {
    border-width: 12px 7px 0 7px;
    right: 28px;
  }
}

.select_box::-ms-expand {
  display: none;
}

.select_box select {
  width: 100%;
  height: 40px;
  background: #faf8f8;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  text-indent: 0.01px;
  text-overflow: '';
  height: 40px;
  padding: 0 25px 0 10px;
  border: none;
  border-radius: 3px;
  text-indent: 0.01px;
  background-size: auto 45px;
  font-size: 1.4rem;
  position: relative;
  z-index: 4;
}

@media screen and (min-width: 1280px) {
  .select_box select {
    height: 60px;
    font-size: 1.6rem;
  }
}

.select_box select:focus {
  outline: none;
}

.select_box select::-ms-expand {
  display: none;
}

.select_box.select_type02 {
  background: #ece7e5;
  border: none;
}

@media screen and (min-width: 1280px) {
  .select_box.select_type02 {
    height: 60px;
  }
}

.select_box.select_type02:before {
  height: 42px;
  right: 0;
  top: 0;
}

@media screen and (min-width: 1280px) {
  .select_box.select_type02:before {
    width: 60px;
    height: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .select_box.select_type02:after {
    right: 23px;
  }
}

/* file */

.input_fileUpload {
  display: none;
}

.file_label {
  width: 170px;
  height: 40px;
  background: #320506;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.file_label:hover {
  opacity: 0.7;
}

.error_txt {
  width: 100%;
  padding-top: 5px;
  color: #ac0b0f;
}

.error_txt:empty {
  display: none;
}

/* required */

.required {
  width: 42px;
  height: 20px;
  margin-left: 10px;
  padding: 2px 0;
  background: #ac0b0f;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 1280px) {
  .required {
    width: 60px;
    height: 27px;
    font-size: 1.4rem;
  }
}

/* -------------------------- */

/* list */

/* -------------------------- */

/* list_disc */

.list_disc li {
  padding-left: 12px;
  line-height: 1.6;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .list_disc li {
    padding-left: 15px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.list_disc li:before {
  width: 6px;
  height: 6px;
  background: #320506;
  border-radius: 100px;
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
}

@media screen and (min-width: 1280px) {
  .list_disc li:before {
    top: 0.8em;
  }
}

.list_disc_color01 li:before {
  background: #320506;
}

/* list_decimel */

.list_decimel {
  padding: 0;
}

.list_decimel li {
  margin-left: 1.5em;
  list-style: decimal;
  line-height: 1.6;
}

@media screen and (min-width: 1280px) {
  .list_decimel {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* list_caution */

.list_caution li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  line-height: 1.4;
}

.list_caution li:not(:last-child) {
  margin-bottom: 5px;
}

.list_caution li a {
  color: #444;
  text-decoration: underline;
}

@media screen and (min-width: 1280px) {
  .list_caution li li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* link_list */

@media screen and (min-width: 768px) {
  .link_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .link_list li {
    display: inline-block;
  }
}

.link_list li:not(:last-child) {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .link_list li:not(:last-child) {
    margin: 0 15px 0 0;
  }
}

@media screen and (min-width: 768px) {
  .link_list li .btn_default01 {
    width: auto;
    padding: 0 15px;
  }
}

@media screen and (min-width: 1280px) {
  .link_list li .btn_default01 {
    padding: 0 50px;
  }
}

/* pager */

.pager {
  overflow: hidden;
}

.pager .pager_list {
  margin: 0 -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .pager .pager_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (min-width: 1280px) {
  .pager .pager_list {
    margin: 0 -6px;
  }
}

.pager .pager_list li {
  margin: 0 2px;
  letter-spacing: 0;
}

@media screen and (min-width: 1280px) {
  .pager .pager_list li {
    margin: 0 6px;
  }
}

.pager .pager_list li a,
.pager .pager_list li span {
  width: 35px;
  height: 35px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Serif JP";
  line-height: 1;
}

@media screen and (min-width: 1280px) {
  .pager .pager_list li a,
  .pager .pager_list li span {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.6rem;
  }
}

.pager .pager_list li a {
  background: #fff;
  border: 1px solid #320506;
  color: #320506;
}

.pager .pager_list li span,
.pager .pager_list li a:hover {
  background-color: #320506;
  border: 1px solid #320506;
  color: #fff;
  opacity: 1;
  text-decoration: none;
}

/* list_anker */

.list_anker {
  -webkit-box-shadow: 0 2px 6px 2px rgba(10, 10, 10, 0.1);
          box-shadow: 0 2px 6px 2px rgba(10, 10, 10, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #320506;
}

@media screen and (min-width: 768px) {
  .list_anker {
    border-left: 0;
    border-right: 0;
  }
}

.list_anker.special li:last-child a {
  background-color: #fff;
  border-top: 1px solid #320506;
  color: #320506;
}

@media screen and (min-width: 768px) {
  .list_anker.special li:last-child a {
    border-left: 1px solid #320506;
    border-top: 1px solid #fff;
  }
}

.list_anker.special li:last-child a:hover {
  color: #ac0b0f;
}

.list_anker.special li:last-child a:hover .icon_link {
  fill: #ac0b0f;
}

.list_anker.special li:last-child a .icon_link {
  fill: #320506;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.list_anker li {
  width: 100%;
}

.list_anker li:not(:last-child) {
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .list_anker li:not(:last-child) {
    border-right: 1px solid #fff;
    border-bottom: none;
  }
}

@media screen and (min-width: 768px) {
  .list_anker li:first-child {
    border-left: 1px solid #320506;
  }
}

@media screen and (min-width: 768px) {
  .list_anker li:last-child {
    border-right: 1px solid #320506;
  }
}

.list_anker li .btn_default01 {
  width: 100%;
}

.list_anker li .btn_default01:hover {
  color: #ac0b0f;
  background-color: #fff;
}

.list_anker li .btn_default01:hover .icon {
  fill: #ac0b0f;
}

.list_anker li a {
  height: 50px;
  padding: 0 10px;
  background: #320506;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (min-width: 1280px) {
  .list_anker li a {
    height: 75px;
    font-size: 1.6rem;
  }
}

.list_anker li a .icon {
  margin-left: 10px;
  fill: #fff;
}

.list_anker li a .icon_link {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.list_anker li a:hover {
  background: #fff;
  color: #320506;
  opacity: 1;
}

.list_anker li a:hover .icon {
  fill: #320506;
}

@media screen and (min-width: 768px) {
  .list_anker.list_anker_column03 li {
    width: calc(100% / 3);
  }
}

@media screen and (min-width: 768px) {
  .list_anker.list_anker_column04 li {
    width: calc(100% / 4);
  }
}

@media screen and (min-width: 768px) {
  .list_anker.list_anker_column05 li {
    width: calc(100% / 5);
  }
}

/* -------------------------- */

/* table */

/* -------------------------- */

.table_default {
  background: #fff;
  border-bottom: 1px solid #320506;
}

@media screen and (min-width: 768px) {
  .table_default {
    border-top: 3px solid #320506;
    border-bottom-width: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 1280px) {
  .table_default {
    font-size: 1.8rem;
  }
}

.table_default dt {
  width: 100%;
  padding: 10px;
  background: #320506;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .table_default dt {
    width: 20%;
    padding: 10px 15px 13px;
  }
}

@media screen and (min-width: 1280px) {
  .table_default dt {
    width: 15%;
    padding: 15px 15px 20px 25px;
  }
}

.table_default dt:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}

.table_default dd {
  width: 100%;
  padding: 10px 10px 15px 10px;
  border-left: 1px solid #320506;
  border-right: 1px solid #320506;
}

@media screen and (min-width: 768px) {
  .table_default dd {
    width: 80%;
    padding: 10px 15px 13px;
    border-right-width: 3px;
  }
}

@media screen and (min-width: 1280px) {
  .table_default dd {
    width: 85%;
    padding: 15px 15px 20px 25px;
  }
}

.table_default dd:not(:last-of-type) {
  border-bottom: 1px solid #320506;
}

/* table_line */

.table_line {
  width: auto;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .table_line {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media screen and (min-width: 1280px) {
  .table_line {
    font-size: 1.6rem;
  }
}

.table_line > dt,
.table_line > dd {
  width: 100%;
}

.table_line > dt {
  padding: 10px 0 0;
  font-weight: bold;
}

.table_line > dt .required__tel {
  top: 30% !important;
}

@media screen and (min-width: 768px) {
  .table_line > dt {
    width: 30%;
    padding: 15px;
  }
}

@media screen and (min-width: 1280px) {
  .table_line > dt {
    width: 20%;
    padding: 20px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .table_line > dt:not(:last-of-type) {
    border-bottom: 1px solid #dbdbdb;
  }
}

@media screen and (min-width: 768px) {
  .table_line > dt:first-of-type {
    border-top: 1px solid #320506;
  }
}

@media screen and (min-width: 768px) {
  .table_line > dt:last-of-type {
    border-bottom: 1px solid #320506;
  }
}

.table_line > dd {
  padding: 0 0 10px;
}

@media screen and (min-width: 768px) {
  .table_line > dd {
    width: 70%;
    padding: 15px;
  }
}

@media screen and (min-width: 1280px) {
  .table_line > dd {
    width: 80%;
    padding: 20px 15px;
  }
}

.table_line > dd:not(:last-of-type) {
  border-bottom: 1px solid #dbdbdb;
}

@media screen and (min-width: 768px) {
  .table_line > dd:first-of-type {
    border-top: 1px solid #dbdbdb;
  }
}

@media screen and (min-width: 768px) {
  .table_line > dd:last-of-type {
    border-bottom: 1px solid #dbdbdb;
  }
}

.table_line > dd a {
  color: #ac0b0f;
  text-decoration: underline;
  word-break: break-all;
}

.table_line .tel input {
  margin-bottom: 10px;
}

.table_line .tel select.input {
  width: 50%;
  font-size: 0.9em;
  background-image: url(/js/svg/chevron-down-svgrepo-com.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

@media screen and (min-width: 768px) {
  .table_line .tel a {
    color: #000;
    pointer-events: none;
    text-decoration: none;
  }
}

.table_line .material-message-padding {
  color: #ac0b0f;
  font-size: 0.9em;
  padding-top: 20px;
}

/* -------------------------- */

/* General */

/* -------------------------- */

.pb_base {
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .pb_base {
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .pb_base {
    padding-bottom: 80px;
  }
}

.pb_base_small {
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .pb_base_small {
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .pb_base_small {
    padding-bottom: 40px;
  }
}

.pb_base_xsmall {
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .pb_base_xsmall {
    padding-bottom: 20px;
  }
}

.padding_section {
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .padding_section {
    padding: 60px 0;
  }
}

@media screen and (min-width: 1280px) {
  .padding_section {
    padding: 80px 0;
  }
}

.line_grey {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
}

.line_grey:after,
.line_grey:before {
  content: '';
  width: 90px;
  height: 1px;
  background-color: #320506;
  position: absolute;
  left: 0;
}

@media screen and (min-width: 768px) {
  .line_grey:after,
  .line_grey:before {
    width: 130px;
  }
}

@media screen and (min-width: 1280px) {
  .line_grey:after,
  .line_grey:before {
    width: 155px;
  }
}

.line_grey:after {
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.line_grey:before {
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.line_grey--large:after,
.line_grey--large:before {
  width: 100px;
}

@media screen and (min-width: 768px) {
  .line_grey--large:after,
  .line_grey--large:before {
    width: 200px;
  }
}

@media screen and (min-width: 1280px) {
  .line_grey--large:after,
  .line_grey--large:before {
    width: 230px;
  }
}

.line_grey--medium:after,
.line_grey--medium:before {
  width: 100px;
}

@media screen and (min-width: 768px) {
  .line_grey--medium:after,
  .line_grey--medium:before {
    width: 170px;
  }
}

@media screen and (min-width: 1280px) {
  .line_grey--medium:after,
  .line_grey--medium:before {
    width: 195px;
  }
}

/* -------------------------- */

/* header */

/* -------------------------- */

.scroll {
  overflow: scroll !important;
}

.header {
  width: 100%;
  height: 50px;
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 500;
}

@media screen and (min-width: 768px) {
  .header {
    padding-left: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .header {
    height: 80px;
    padding-left: 50px;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    left: 0;
    top: 0;
  }
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1280px) {
  .header .logo {
    padding-bottom: 5px;
  }
}

.header .logo a {
  color: #320506;
  display: block;
  font-family: "Noto Serif JP";
  font-weight: 600;
  line-height: 1.2;
}

@media screen and (min-width: 1280px) {
  .header .logo a {
    line-height: 1;
  }
}

.header .logo a em {
  display: block;
  font-style: normal;
  font-size: 2rem;
}

@media screen and (min-width: 1280px) {
  .header .logo a em {
    font-size: 3.9rem;
  }
}

.header .logo a span {
  display: block;
  font-size: 1.2rem;
}

@media screen and (min-width: 1280px) {
  .header .logo a span {
    font-size: 1.4rem;
  }
}

.header .logo a:hover {
  color: #ac0b0f;
}

.header .js_hamburger,
.header .js_hamburger span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header .js_hamburger {
  width: 50px;
  height: 50px;
  background: #ac0b0f;
  cursor: pointer;
  position: fixed;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 100;
}

@media screen and (min-width: 1280px) {
  .header .js_hamburger {
    display: none;
  }
}

.header .js_hamburger span {
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 15px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header .js_hamburger span:nth-of-type(1) {
  top: 17px;
}

.header .js_hamburger span:nth-of-type(2) {
  top: 23px;
}

.header .js_hamburger span:nth-of-type(3) {
  top: 29px;
}

.header .js_hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}

.header .js_hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.header .js_hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}

.header .js_hamburger.active + .global_navi {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header .global_navi {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  display: none;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

@media screen and (min-width: 1280px) {
  .header .global_navi {
    background: none;
    height: 80px;
    display: block !important;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    top: inherit;
    left: inherit;
    z-index: 500;
  }
}

.header .global_navi .global_navi_wrap {
  width: 80%;
}

@media screen and (min-width: 1280px) {
  .header .global_navi .global_navi_wrap {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header .global_navi .global_navi_inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 1280px) {
  .header .global_navi .global_navi_inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.header .global_navi .global_navi_inner .global_navi_inner_list {
  width: 100%;
  margin-bottom: 15px;
  border-top: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
  .header .global_navi .global_navi_inner .global_navi_inner_list {
    margin-top: 0;
  }
}

@media screen and (min-width: 1280px) {
  .header .global_navi .global_navi_inner .global_navi_inner_list {
    width: auto;
    height: 100%;
    margin: 0 20px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: none;
  }
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

@media screen and (min-width: 1280px) {
  .header .global_navi .global_navi_inner .global_navi_inner_list > li {
    height: 100%;
    border-bottom: none;
    display: block;
    overflow: inherit;
  }
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
  padding: 12px 15px;
  color: #320506;
  display: block;
  font-weight: bold;
  position: relative;
}

@media screen and (min-width: 768px) {
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
    padding: 12px;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
    height: 100%;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
  }
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li > a:hover {
  color: #ac0b0f;
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li > a.active {
  color: #ac0b0f;
}

@media screen and (min-width: 1280px) {
  .header .global_navi .global_navi_inner .global_navi_inner_list > li.menu_sp {
    display: none;
  }
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li.menu_pc {
  display: none;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .header .global_navi .global_navi_inner .global_navi_inner_list > li.menu_pc {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  .header .global_navi .global_navi_inner .global_navi_inner_list > li.menu_pc:hover > a {
    color: #ac0b0f;
  }
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li.menu_pc:hover > a:after {
  display: none;
}

.header .header_btn_mail a {
  height: 55px;
  background: #320506;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Serif JP";
  font-weight: bold;
}

@media screen and (min-width: 1280px) {
  .header .header_btn_mail a {
    width: 270px;
    height: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.8rem;
  }
}

.header .header_btn_mail a:hover {
  background: #ac0b0f;
}

.header .heder_btn_visit {
  display: none;
}

@media screen and (max-width: 767px) {
  .header .heder_btn_visit {
    display: block;
    width: 100%;
    margin: 15px auto 0;
  }

  .header .heder_btn_visit a img {
    width: 100%;
    height: auto;
  }
}

.header .menu_contents {
  display: none;
  position: absolute;
  top: 80px;
  left: 5px;
  z-index: 100000;
  white-space: nowrap;
}

.header .menu_contents .menu_contents_list li {
  margin-top: 1px;
}

.header .menu_contents .menu_contents_list li a {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.6);
  color: #320506;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

.header .menu_contents .menu_contents_list li a:hover {
  background: #320506;
  color: #fff;
}

/* -------------------------- */

/* content */

/* -------------------------- */

.content {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .content .container {
    padding: 0 70px 0 30px;
  }
}

@media screen and (min-width: 1280px) {
  .content .container {
    padding: 0 80px 0 50px;
  }
}

@media screen and (min-width: 1500px) {
  .content .container {
    padding: 0 50px;
  }
}

.content .container.\--info {
  padding-top: 3.5em;
}

/* contents_head */

.contents_head {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .contents_head {
    margin-bottom: 35px;
  }
}

.contents_head:before {
  width: 10vw;
  height: 35px;
  background: #fff;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .contents_head:before {
    height: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .contents_head:before {
    width: 20vw;
    height: 70px;
  }
}

.contents_head .container {
  height: 100%;
  position: relative;
  z-index: 1;
}

.contents_head .contents_head_title {
  height: 35px;
  padding-right: 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Noto Serif JP";
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  left: 15px;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .contents_head .contents_head_title {
    height: 50px;
    padding-right: 30px;
    font-size: 3.5rem;
    left: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .contents_head .contents_head_title {
    height: 70px;
    font-size: 4.5rem;
    left: 50px;
  }
}

.contents_head .contents_head_title em {
  font-style: normal;
}

.contents_head .contents_head_title span {
  width: 100%;
  margin-top: 5px;
  display: block;
  font-size: 1.2rem;
}

@media screen and (min-width: 1280px) {
  .contents_head .contents_head_title span {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .contents_head.contents_head_large {
    height: 350px;
  }
}

@media screen and (min-width: 1280px) {
  .contents_head.contents_head_large {
    height: 700px;
  }
}

/* breadcrumb */

.breadcrumb {
  padding: 10px 0 30px;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 0 0 50px;
  }
}

@media screen and (min-width: 1280px) {
  .breadcrumb {
    padding: 0 0 70px;
  }
}

.breadcrumb .breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 1280px) {
  .breadcrumb .breadcrumb_list {
    min-height: 25px;
  }
}

.breadcrumb .breadcrumb_list li {
  max-width: 300px;
  font-size: 1.4rem;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .breadcrumb .breadcrumb_list li {
    max-width: 350px;
  }
}

@media screen and (min-width: 1280px) {
  .breadcrumb .breadcrumb_list li {
    max-width: 600px;
  }
}

.breadcrumb .breadcrumb_list li a {
  padding-right: 10px;
  color: #320506;
  font-size: 1.2rem;
  display: inline-block;
}

@media screen and (min-width: 1280px) {
  .breadcrumb .breadcrumb_list li a {
    padding-right: 15px;
    font-size: 1.4rem;
  }
}

.breadcrumb .breadcrumb_list li a:hover {
  opacity: 0.7;
}

.breadcrumb .breadcrumb_list li:not(:last-child):after {
  margin: 0 5px 0 0;
  content: '/';
  color: #320506;
}

@media screen and (min-width: 1280px) {
  .breadcrumb .breadcrumb_list li:not(:last-child):after {
    margin: 0 10px 0 0;
  }
}

.breadcrumb .breadcrumb_list li:not(:last-child) a {
  color: #ac0b0f;
  text-decoration: underline;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* news_box */

@media screen and (min-width: 768px) {
  .news_box {
    margin: 0 -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 1280px) {
  .news_box {
    margin: 0 -20px;
  }
}

.news_box .news_list {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .news_box .news_list {
    width: 33.3333%;
    padding: 0 10px;
  }
}

@media screen and (min-width: 1280px) {
  .news_box .news_list {
    margin-bottom: 40px;
    padding: 0 20px;
  }
}

.news_box .news_list a {
  height: 100%;
  padding: 15px;
  border-top: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
  color: #320506;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .news_box .news_list a {
    padding: 35px 30px 33px;
  }
}

.news_box .news_list a:after {
  width: 25px;
  height: 25px;
  border-top: 1px solid #320506;
  border-left: 1px solid #320506;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 1280px) {
  .news_box .news_list a:after {
    width: 40px;
    height: 40px;
  }
}

.news_box .news_list a .news_list_time {
  width: 100%;
  margin-bottom: 5px;
  font-family: "Noto Serif JP";
}

@media screen and (min-width: 1280px) {
  .news_box .news_list a .news_list_time {
    width: auto;
    margin: 0 25px 20px 0;
  }
}

.news_box .news_list a .news_list_category {
  margin-bottom: 10px;
  padding: 2px 10px;
  background: #320506;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1280px) {
  .news_box .news_list a .news_list_category {
    margin-bottom: 20px;
  }
}

.news_box .news_list a .news_list_title {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1280px) {
  .news_box .news_list a .news_list_title {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.news_box .news_list a .news_list_tag {
  margin-top: 10px;
}

.news_box .news_list a:hover {
  background: #320506;
  border-color: #320506;
}

.news_box .news_list a:hover .news_list_time {
  color: #fff;
}

.news_box .news_list a:hover .news_list_category {
  background: #fff;
  color: #320506;
}

.news_box .news_list a:hover .news_list_title {
  color: #fff;
}

.news_list_tag {
  color: #ac0b0f;
  display: block;
  text-decoration: underline;
}

.news_list_tag a {
  color: #ac0b0f;
}

.news_list_tag a:hover {
  opacity: 0.7;
}

/* contact_form */

.contact_form {
  background: #fff;
}

.contact_form .table_line {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .contact_form .table_line {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .table_line {
    margin-bottom: 40px;
  }
}

.contact_form .table_line > dt {
  margin-bottom: 8px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .contact_form .table_line > dt {
    margin-bottom: 0;
    padding: 25px 0 25px 20px;
    width: 35%;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .table_line > dt {
    padding: 25px 0 25px 25px;
  }
}

.contact_form .table_line > dt .required {
  position: absolute;
  right: 0;
  top: 10px;
}

@media screen and (min-width: 768px) {
  .contact_form .table_line > dt .required {
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .table_line > dt .required {
    right: 50px;
  }
}

@media screen and (min-width: 768px) {
  .contact_form .table_line > dt.radio_box {
    padding: 20px 15px;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .table_line > dt.radio_box {
    padding: 28px 0 25px 25px;
  }
}

@media screen and (min-width: 768px) {
  .contact_form .table_line > dt.radio_box .required {
    top: 22px;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .table_line > dt.radio_box .required {
    top: 32px;
  }
}

.contact_form .table_line > dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .contact_form .table_line > dd {
    width: 65%;
    padding: 15px 20px 15px 0;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .table_line > dd {
    padding: 22px 40px 22px 0;
  }
}

.contact_form .table_line .add span {
  width: 25px;
  display: inline-block;
}

.contact_form .table_line .add input:first-of-type {
  margin-bottom: 10px;
}

.contact_form .table_line .add input:last-of-type {
  width: calc(100% - 25px);
  margin-left: 25px;
}

@media screen and (min-width: 768px) {
  .contact_form .input_check_list {
    margin-bottom: -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.contact_form .input_check_list li {
  margin-bottom: 10px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .contact_form .input_check_list li {
    margin-right: 25px;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .input_check_list li {
    margin-right: 30px;
  }
}

.contact_form .input_check_list li:not(:last-child) {
  margin-bottom: 10px;
}

.contact_form .input_agree {
  padding: 25px 0;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .contact_form .confirm {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .contact_form .confirm > dt {
    padding: 15px;
    border-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .confirm > dt {
    padding: 25px;
  }
}

@media screen and (min-width: 768px) {
  .contact_form .confirm > dt:last-of-type {
    border-bottom: 1px solid #320506;
  }
}

@media screen and (min-width: 768px) {
  .contact_form .confirm > dd {
    border-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact_form .confirm > dd:last-of-type {
    border-bottom: 1px solid #ddd;
  }
}

.contact_form.thanks .title_contents04 {
  text-align: center;
}

.contact_box {
  border: 1px solid #e5d0d0;
  margin-bottom: 20px;
}

.contact_box .title_contents01 {
  color: #fff;
  background-color: #320506;
  margin-bottom: 0;
  line-height: 1;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .contact_box .title_contents01 {
    padding: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .contact_box .title_contents01 {
    padding: 40px;
  }
}

.contact_box .contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #faf8f8;
}

.contact_box .contact_list_item {
  text-align: center;
  width: 100%;
  padding: 20px;
  display: block;
  color: #320506;
  border-top: 1px solid #e5d0d0;
}

@media screen and (min-width: 768px) {
  .contact_box .contact_list_item {
    width: 50%;
    padding: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .contact_box .contact_list_item {
    padding: 40px;
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .contact_box .contact_list_item:first-child {
    border-right: 1px solid #e5d0d0;
  }
}

.contact_box .contact_list_item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 1.6rem;
  font-family: "Noto Serif JP";
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .contact_box .contact_list_item p {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .contact_box .contact_list_item p {
    font-size: 2.4rem;
  }
}

.contact_box .contact_list_item p span {
  font-size: 2.2rem;
  padding-left: 10px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .contact_box .contact_list_item p span {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1280px) {
  .contact_box .contact_list_item p span {
    font-size: 4rem;
  }
}

/* fix */

.fix {
  display: none;
}

@media screen and (min-width: 768px) {
  .fix {
    display: block;
    position: fixed;
    right: 0;
    bottom: 12vh;
    z-index: 5;
  }
}

.fix .btn_fix_recruit {
  width: 70px;
  margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
  .fix .btn_fix_recruit {
    width: 55px;
  }
}

@media screen and (min-width: 1280px) {
  .fix .btn_fix_recruit {
    width: 60px;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1920px) {
  .fix .btn_fix_recruit {
    width: 70px;
  }
}

.fix .btn_fix_recruit a {
  width: 100%;
  padding: 10px 0;
  background: #ac0b0f;
  border: 1px solid #ac0b0f;
  border-right: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Serif JP";
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

@media screen and (min-width: 1280px) {
  .fix .btn_fix_recruit a {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1500px) {
  .fix .btn_fix_recruit a {
    font-size: 1.6rem;
  }
}

.fix .btn_fix_recruit a .icon {
  margin-top: 5px;
  fill: #fff;
  /*@include media1280() {
					margin-top: 15px;
				}
				// @media1280*/
}

.fix .btn_fix_recruit a:hover {
  background: #fff;
  color: #ac0b0f;
}

.fix .btn_fix_recruit a:hover .icon {
  fill: #ac0b0f;
}

.fix .btn_fix_visit {
  width: 70px;
  height: auto;
  margin-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .fix .btn_fix_visit {
    width: 55px;
  }
}

@media screen and (min-width: 1280px) {
  .fix .btn_fix_visit {
    width: 60px;
  }
}

@media screen and (min-width: 1920px) {
  .fix .btn_fix_visit {
    width: 70px;
  }
}

.fix .btn_fix_visit a:hover img {
  opacity: 0.9;
}

.fix .btn_fix_visit img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .fix .btn_fix_visit img {
    height: 200px;
    width: 70px;
  }
}

@media screen and (min-width: 1920px) {
  .fix .btn_fix_visit img {
    height: 100%;
    width: 100%;
  }
}

.fix .btn_fix_sns {
  width: 70px;
  height: 60px;
}

@media screen and (min-width: 768px) {
  .fix .btn_fix_sns {
    width: 55px;
  }
}

@media screen and (min-width: 1280px) {
  .fix .btn_fix_sns {
    width: 60px;
    height: 90px;
  }
}

@media screen and (min-width: 1920px) {
  .fix .btn_fix_sns {
    width: 70px;
  }
}

.fix .btn_fix_sns a {
  width: 100%;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #320506;
  border-right: none;
  color: #320506;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.fix .btn_fix_sns a .icon {
  width: 25px;
  height: 25px;
  margin-bottom: 5px;
  fill: #320506;
}

@media screen and (min-width: 1280px) {
  .fix .btn_fix_sns a .icon {
    width: 40px;
    height: 40px;
  }
}

.fix .btn_fix_sns a:hover {
  background: #320506;
  color: #fff;
}

.fix .btn_fix_sns a:hover .icon {
  fill: #fff;
}

/* service_box */

.service_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .service_box {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .service_box {
    padding-bottom: 60px;
  }
}

.service_box_item {
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .service_box_item {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .service_box_item {
    padding-bottom: 50px;
  }
}

.service_box_item:last-child {
  padding-bottom: 0;
}

.service_box_item_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service_box_item_content_img {
  padding-bottom: 1.5rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .service_box_item_content_img {
    width: 283px;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .service_box_item_content_img {
    width: 383px;
  }
}

.service_box_item_content_img img {
  border: 1px solid #707070;
}

.service_box_item_content_txt {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .service_box_item_content_txt {
    width: calc(100% - 283px);
    padding-left: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .service_box_item_content_txt {
    padding-left: 40px;
    width: calc(100% - 383px);
  }
}

.service_box_item_content_txt .title_service {
  font-family: "Noto Serif JP";
  font-size: 1.8rem;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .service_box_item_content_txt .title_service {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .service_box_item_content_txt .title_service {
    font-size: 2.4rem;
  }
}

.service_box_item_content_txt p {
  letter-spacing: 0.4px;
}

.link_anchor {
  margin-top: -50px;
  padding-top: 50px;
}

@media screen and (min-width: 1280px) {
  .link_anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
}

/* -------------------------- */

/* footer */

/* -------------------------- */

.footer {
  padding-top: 30px;
  background: #320506;
}

@media screen and (min-width: 768px) {
  .footer {
    padding-top: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .footer {
    padding-top: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* footer_company */

.footer_company {
  width: 100%;
  margin-bottom: 30px;
  padding: 0 15px;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .footer_company {
    width: auto;
    margin-right: 45px;
    padding: 0;
    text-align: left;
  }
}

.footer_company .logo {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1280px) {
  .footer_company .logo {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .footer_company .logo {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer_company .logo a {
  display: block;
}

.footer_company .logo a img {
  width: 110px;
  height: auto;
}

@media screen and (min-width: 1280px) {
  .footer_company .logo a img {
    width: 250px;
  }
}

.footer_company .add {
  text-align: center;
  font-style: normal;
}

@media screen and (min-width: 1280px) {
  .footer_company .add {
    text-align: left;
  }
}

/* footer_navi */

.footer_navi {
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (min-width: 1280px) {
  .footer_navi {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer_navi .sp_none {
  display: none;
}

@media screen and (min-width: 1280px) {
  .footer_navi .sp_none {
    display: block;
  }
}

.footer_navi .footer_navi_list {
  border-top: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 1280px) {
  .footer_navi .footer_navi_list {
    margin-right: 40px;
    display: block;
    border: none;
  }
}

.footer_navi .footer_navi_list.sp_none {
  display: none;
}

@media screen and (min-width: 1280px) {
  .footer_navi .footer_navi_list.sp_none {
    display: block;
  }
}

.footer_navi .footer_navi_list > li {
  width: 100%;
  padding: 0 5px;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 1280px) {
  .footer_navi .footer_navi_list > li {
    width: auto;
    margin-bottom: 15px;
    border: none;
  }
}

.footer_navi .footer_navi_list > li > a {
  padding: 15px;
  color: #fff;
  display: block;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .footer_navi .footer_navi_list > li > a {
    padding: 0;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
  }
}

.footer_navi .footer_navi_list > li > a:hover {
  color: #ac0b0f;
}

.footer_navi .footer_navi_list_under {
  margin: 10px 0 20px;
}

.footer_navi .footer_navi_list_under li {
  margin-bottom: 5px;
}

.footer_navi .footer_navi_list_under li a {
  color: #fff;
}

.footer_navi .footer_navi_list_under li a:hover {
  color: #ac0b0f;
}

.btn_footer_instagram {
  width: 40px;
  margin: 0 auto 30px;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .btn_footer_instagram {
    margin: 0;
  }
}

.btn_footer_instagram a {
  display: block;
}

.btn_footer_instagram a .icon {
  width: 40px;
  height: 40px;
  fill: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn_footer_instagram a:hover .icon {
  fill: #ac0b0f;
}

/* copy */

.copy {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #320506;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1280px) {
  .copy {
    padding: 30px 0;
  }
}

@media screen and (min-width: 1280px) {
  .copy small {
    font-size: 1.4rem;
  }
}

/* btn_pagetop */

.btn_pagetop {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
}

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

@media screen and (min-width: 1280px) {
  .btn_pagetop {
    display: block;
    position: fixed;
  }
}

.btn_pagetop a {
  width: 55px;
  height: 55px;
  background: #ac0b0f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn_pagetop a .icon {
  fill: #fff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}


/*# sourceMappingURL=import.css.map*/