@charset "UTF-8";
/****************************************
		0. Import
*****************************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*options*/
   /*
  $base-grid: true,
  $margin-grid: true,
  $padding-grid: true,
  $block-grid: true,
  $collapse: true,
  $offset: true,
  $vertical-grid: true,
  $frame-grid: true

);
*/
/****************************************
		1. General Setting
*****************************************/
html, body, div, span, applet, object, iframe, strong, picture,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption,
tbody, tfoot, thead, table, label, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: inherit;
  font-family: inherit;
  vertical-align: baseline;
  list-style: none;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: #333;
}
a:hover {
  color: #813754;
}

nav {
  display: block;
}

/*Clear*/
.clear {
  clear: both;
  line-height: 0;
}

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

/*box-sizing paddingとborderをwidth heightに含める*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
* *::after, * *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.inline {
  display: inline;
}

.columns, .column {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

img {
  vertical-align: middle;
}

.bold {
  font-weight: bold;
}

.space1 {
  margin-bottom: 5px;
}

.space2 {
  margin-bottom: 10px;
}

.space3 {
  margin-bottom: 15px;
}

.space4 {
  margin-bottom: 20px;
}

.space5 {
  margin-bottom: 25px;
}

.space6 {
  margin-bottom: 30px;
}

.space7 {
  margin-bottom: 35px;
}

.space8 {
  margin-bottom: 40px;
}

.space9 {
  margin-bottom: 45px;
}

.space10 {
  margin-bottom: 50px;
}

.space11 {
  margin-bottom: 55px;
}

.space12 {
  margin-bottom: 60px;
}

.space13 {
  margin-bottom: 65px;
}

.space14 {
  margin-bottom: 70px;
}

.space15 {
  margin-bottom: 75px;
}

.space16 {
  margin-bottom: 80px;
}

.space17 {
  margin-bottom: 85px;
}

.space18 {
  margin-bottom: 90px;
}

.space19 {
  margin-bottom: 95px;
}

.space20 {
  margin-bottom: 100px;
}

@media print {
  a[href]:after {
    content: "" !important;
  }

  abbr[title]:after {
    content: "" !important;
  }
}
figure, picture {
  margin: 0;
  display: block;
}

.googlemap_wrapper {
  height: 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.googlemap_wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.last {
  margin-bottom: 0 !important;
}

html * {
  font-weight: 400;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*定数*/
/*************************************************/
/*menu-trigger Animatation Setting*/
/*************************************************/
/*
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 30px; // 50px
  height: 17px; //44px
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: $menu_color;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 7px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
*/
.btn-trigger {
  position: relative;
  width: 24px;
  height: 16px;
  top: 10px;
  left: 8px;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #FFF;
  border-radius: 0;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0px;
}

.btn-trigger span:nth-of-type(2) {
  top: 7px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0px;
}

.btn-trigger.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
  top: -13px;
}

.btn-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.btn-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

/*************************************************/
/*menu-trigger Animatation Setting*/
/*************************************************/
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateX(1px) translateY(8px) rotate(-45deg);
  transform: translateX(1px) translateY(8px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  top: 16px;
  -webkit-transform: translateX(0) translateY(-8px) rotate(45deg);
  transform: translateX(0) translateY(-8px) rotate(45deg);
}

.menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

/****************************************
		0.1. font-family
*****************************************/
/*
300 light
400 normal
500 medium
600
700
800 bold
*/
/****************************************
		0.1. define
*****************************************/
.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.underline {
  text-decoration: underline;
}

.hover_a {
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.hover_a:hover {
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 479px) {
  .spbr::before {
    content: "\A";
    white-space: pre;
  }
}

@media screen and (max-width: 959px) {
  .mdbr::before {
    content: "\A";
    white-space: pre;
  }
}

@media screen and (max-width: 1199px) {
  .lgbr::before {
    content: "\A";
    white-space: pre;
  }
}

@media screen and (min-width: 960px) {
  .pcbr::before {
    content: "\A";
    white-space: pre;
  }
}

.pagetop {
  display: block;
  position: fixed;
  z-index: 999;
  transform: none !important;
  -webkit-transform: none !important;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  /*
  @include max-screen( $max-large-width ){
      width:40px;
      height:40px;
      bottom:20px;
      right:20px;
  }
  */
}
.pagetop:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media screen and (max-width: 959px) {
  .pagetop {
    width: 30px;
    height: 30px;
    bottom: 30px;
    right: 20px;
  }
}
@media screen and (min-width: 960px) {
  .pagetop {
    width: 56px;
    height: 56px;
    bottom: 30px;
    right: 30px;
  }
}

.img_fit img {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .no_pc {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .no_pc {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .no_sp {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .no_sp {
    display: block;
  }
}

/***********************************/
/*Common Setting*/
/***********************************/
/*****************************/
/*Contact 関連 */
/*input deny*/
.prevent {
  pointer-events: none;
}

/*spmenu open html not scroll*/
.not_scroll {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/*Placeholder change SCSS */
/*
  .foo {
        @include placeholder {
            color: green;
        }
    }

    @include placeholder {
        color: red;
    }
*/
/**************************************/
.text {
  /*
  @include min-screen( $max-medium-width){
      font-size:rem( 16 );
      line-height:1.1;
  }
  */
  color: #333333;
}
@media screen and (max-width: 959px) {
  .text {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 960px) {
  .text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.gray:bofore {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.gray:after {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.no_gray {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}
.no_gray:bofore {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}
.no_gray:after {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}

.main_content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 700;
  color: #670814;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
}
@media screen and (max-width: 959px) {
  h1 {
    font-size: 25px;
  }
}
@media screen and (min-width: 960px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 700;
  color: #670814;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
h2.h2_left {
  justify-content: flex-start;
  text-align: left;
}
@media screen and (max-width: 959px) {
  h2 {
    font-size: 20px;
    gap: 5px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 960px) {
  h2 {
    font-size: 25px;
    gap: 8px;
    margin-bottom: 40px;
  }
}
h2:before {
  content: "";
  display: inline-block;
  background-color: #670814;
}
@media screen and (max-width: 959px) {
  h2:before {
    width: 12px;
    height: 16px;
  }
}
@media screen and (min-width: 960px) {
  h2:before {
    width: 12px;
    height: 22px;
  }
}

h3 {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 700;
  color: #670814;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  h3 {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

h4 {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 700;
  color: #670814;
  line-height: 1;
}
h4.h_center {
  text-align: center;
}
@media screen and (max-width: 959px) {
  h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 960px) {
  h4 {
    font-size: 18px;
    margin-bottom: 18px;
  }
}

.base_red {
  color: #670814;
}

/***********************************/
/*01 body main setting*/
/***********************************/
body {
  font-family: "Noto Sans JP", san-serif;
  font-weight: 400;
  color: #333333;
  width: 100%;
}

main {
  margin: 0 auto;
  position: relative;
  padding-bottom: 100px;
}

.header_pc_under {
  width: 100%;
  height: 126px;
  background-color: #FFF;
}
@media screen and (max-width: 959px) {
  .header_pc_under {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
section .container {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 479px) {
  section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 480px) and (max-width: 959px) {
  section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 960px) {
  section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
section.sec_top.sec_top_50 {
  padding-top: 50px;
}
section.sec_title {
  background-image: url("../images/bg_sec_top.jpg");
  background-repeat: no-repeat;
}
@media screen and (max-width: 959px) {
  section.sec_title {
    background-size: 150% 100%;
    background-position: right top;
    height: 200px;
  }
}
@media screen and (min-width: 960px) {
  section.sec_title {
    background-size: 150% 100%;
    background-position: center top;
    height: 300px;
  }
}
section.sec_title .container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
section.sec_title .container .title_wrapper {
  position: absolute;
  color: #FFF;
}
@media screen and (max-width: 959px) {
  section.sec_title .container .title_wrapper {
    right: 40px;
    top: 20px;
  }
}
@media screen and (min-width: 960px) {
  section.sec_title .container .title_wrapper {
    right: 40px;
    top: 30px;
  }
}
section.sec_title .container .title_wrapper .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 959px) {
  section.sec_title .container .title_wrapper .title {
    letter-spacing: 2px;
    font-size: 20px;
  }
}
@media screen and (min-width: 960px) {
  section.sec_title .container .title_wrapper .title {
    font-size: 40px;
    letter-spacing: 3px;
  }
}
section.sec_title .container .title_wrapper .sub_title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 959px) {
  section.sec_title .container .title_wrapper .sub_title {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  section.sec_title .container .title_wrapper .sub_title {
    font-size: 20px;
  }
}

.main_content {
  max-width: 800px;
}

.mincho {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/********************************************/
/*HEADER*/
/********************************************/
.header_pc {
  background-color: #FFF;
  transition: transform .2s ease-in;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 959px) {
  .header_pc {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .header_pc {
    display: block;
  }
}
.header_pc.fixed {
  transform: translate(0, -70px);
}
.header_pc .header_wrapper {
  margin: 0 auto;
}
.header_pc .header_wrapper .header_1 {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_pc .header_wrapper .header_2 {
  height: 56px;
  border-top: 1px solid #670814;
  border-bottom: 1px solid #670814;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_pc .logo {
  display: block;
  width: 134px;
  height: 41px;
  margin: 0 auto;
}
.header_pc nav.main_menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 30px;
}
.header_pc nav.main_menu a {
  color: #670814;
  font-weight: 700;
  position: relative;
}
.header_pc nav.main_menu a:hover {
  cursor: pointer;
}
.header_pc nav.main_menu a:hover:after {
  transform: translate(-50%, 0) scaleX(1);
}
.header_pc nav.main_menu a:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #670814;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0) scaleX(0);
  transition: all 0.2s cubic-bezier(0.74, 0.155, 0.94, 0.54);
}
.header_pc nav.main_menu a.current {
  color: #ac0000;
}
.header_pc nav.main_menu a.current:after {
  transform: translate(-50%, 0) scaleX(1);
}

/********************************************/
/*HEADER SP*/
/********************************************/
.header_sp {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #670814;
  z-index: 10;
  padding: 0;
  margin: 0;
  /*position:relative;*/
}
@media screen and (max-width: 959px) {
  .header_sp {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .header_sp {
    display: none !important;
  }
}
.header_sp .header_inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.header_sp .header_inner .logo_wrapper {
  display: block;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translate(0, -50%);
  width: 150px;
}
.header_sp .btn-trigger_wrapper {
  position: absolute;
  right: 30px;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #670814;
  transform: translate(0, -50%);
}
.header_sp .btn_lang {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 50%;
  right: 90px;
  transform: translate(0, -50%);
}

.header_sp_under {
  height: 80px;
}
@media screen and (max-width: 959px) {
  .header_sp_under {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .header_sp_under {
    display: none !important;
  }
}

.header_sp_space {
  width: 100%;
  display: block;
  height: 40px;
}
@media screen and (min-width: 960px) {
  .header_sp_space {
    display: none;
  }
}

/*MODAL*/
#modal {
  display: block;
  z-index: 90;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 20px;
  overflow-y: scroll;
  z-index: 100;
  transition: all 500ms;
  background-color: #FFF;
}

#modal.d-off {
  left: 100%;
}

#modal .modal_menu {
  /*
  .icon_modal_wrapper{
      padding:10px ;
      display : grid;
      grid-template-columns:repeat( 4 , 1fr);
      column-gap : 40px;
      justify-items: center;
      max-width:260px;
      margin:0 auto;
      .icon{
          max-width:40px;
      }
  }
  */
}
#modal .modal_menu a.main_menu {
  display: block;
  margin-bottom: 50px;
  padding: 10px;
  border: 1px #FFF solid;
  background-color: #670814;
  color: #FFF;
  text-align: center;
  border-radius: 8px;
}
#modal .modal_menu .icon_modal_wrapper {
  padding: 10px;
  display: flex;
  gap: 40px;
  justify-content: center;
  justify-items: center;
  align-items: center;
  max-width: 260px;
  margin: 0 auto;
  /*
  .icon.note{
      width:100px;
  }
  */
}
#modal .modal_menu .icon_modal_wrapper .icon.contact,
#modal .modal_menu .icon_modal_wrapper .icon.cart,
#modal .modal_menu .icon_modal_wrapper .icon.instagram,
#modal .modal_menu .icon_modal_wrapper .icon.note {
  width: 40px;
}

#modal nav.modal_menu a.modal_str {
  color: #333;
  display: block;
  padding: 20px 10px;
  text-align: center;
  border: 1px solid #FFF;
  border-radius: 8px 8px 0 0;
  margin-bottom: 30px;
  width: 120px;
  margin: 0 auto 50px;
}

/***********************************/
/*Footer*/
/***********************************/
html {
  background-image: url("/images/bg_footer.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100vw 250px;
}

footer {
  padding-bottom: 40px;
}
@media screen and (max-width: 959px) {
  footer {
    padding-top: 30px;
    background-color: #670814;
  }
}
footer .inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}
footer .inner_wrapper .logo_footer {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  footer .inner_wrapper .logo_footer {
    width: 170px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner_wrapper .logo_footer {
    width: 260px;
  }
}
footer .inner_wrapper ul.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px 30px;
}
@media screen and (max-width: 959px) {
  footer .inner_wrapper ul.footer_menu {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
footer .inner_wrapper ul.footer_menu li {
  text-align: center;
}
footer .inner_wrapper ul.footer_menu li a {
  color: #FFF;
  transition: all 0.2s ease;
}
@media screen and (max-width: 959px) {
  footer .inner_wrapper ul.footer_menu li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner_wrapper ul.footer_menu li a {
    font-size: 16px;
  }
}
footer .inner_wrapper ul.footer_menu li:hover {
  cursor: pointer;
}
footer .copy {
  font-size: 0.75rem;
  text-align: center;
  color: #FFF;
}

/********************************************/
/*anime setting*/
/********************************************/
/********************************************/
/*Parts Setting*/
/********************************************/
.mail_info .flex_wrapper {
  display: flex;
  justify-content: center;
  gap: 1em;
}
@media screen and (max-width: 959px) {
  .mail_info .flex_wrapper {
    gap: 0;
    flex-direction: column;
    text-align: center;
  }
}
.mail_info .base_red {
  text-decoration: underline;
}

/******************************************/
/*LAYOUT*/
/******************************************/
/***********************************/
/*PAGE SECTION TOP トップページ フロントページ*/
/***********************************/
#front_page section.sec_slide {
  padding-top: 0 !important;
}
#front_page section.sec_slide .container {
  max-width: 1090px;
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
}
#front_page section.sec_slide .container .slider_wrapper {
  position: relative;
}
#front_page section.sec_slide .container .slider_wrapper .white_front {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  z-index: 1;
}
#front_page section.sec_slide .container .p-swiper-container {
  position: relative;
  overflow: hidden;
}
#front_page section.sec_slide .container .p-swiper-container_pc {
  position: relative;
}
@media screen and (max-width: 959px) {
  #front_page section.sec_slide .container .p-swiper-container_pc {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  #front_page section.sec_slide .container .p-swiper-container_pc {
    display: block !important;
  }
}
#front_page section.sec_slide .container .p-swiper-container_pc #title_pc {
  width: 30vw;
  max-width: 350px;
  position: absolute;
  right: 50px;
  top: 80px;
  z-index: 1;
  opacity: 0;
  transition: all 1s ease-in;
}
#front_page section.sec_slide .container .p-swiper-container_pc #title_pc.on {
  opacity: 1;
  transform: translate(0, 10px);
}
#front_page section.sec_slide .container .p-swiper-container_sp {
  position: relative;
}
@media screen and (max-width: 959px) {
  #front_page section.sec_slide .container .p-swiper-container_sp {
    display: block !important;
  }
}
@media screen and (min-width: 960px) {
  #front_page section.sec_slide .container .p-swiper-container_sp {
    display: none !important;
  }
}
#front_page section.sec_slide .container .p-swiper-container_sp #title_sp {
  width: 44vw;
  position: absolute;
  right: 30px;
  top: 7%;
  z-index: 1;
  opacity: 0;
  transition: all 1s ease-in;
}
#front_page section.sec_slide .container .p-swiper-container_sp #title_sp.on {
  opacity: 1;
  transform: translate(0, 10px);
}
#front_page section.sec_slide .container .swiper-slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
}
#front_page section.sec_slide .container .float_text {
  opacity: 0;
  position: absolute;
  transition: opacity 1s linear;
}
@media screen and (max-width: 959px) {
  #front_page section.sec_slide .container .float_text {
    left: 80%;
    top: 50px;
    width: 8.57143%;
    min-width: 30px;
    max-width: 60px;
  }
}
@media screen and (min-width: 960px) {
  #front_page section.sec_slide .container .float_text {
    width: 70px;
    top: 104px;
    left: 80.54545%;
  }
}
#front_page section.sec_slide .container .float_text.on {
  opacity: 1;
}
#front_page section.sec_slide .container .text_area {
  z-index: 1;
}
@media screen and (max-width: 959px) {
  #front_page section.sec_slide .container .text_area {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  #front_page section.sec_slide .container .text_area {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 45%;
  }
}
#front_page section.sec_slide .container .text_area h1 {
  font-size: 1.625rem;
  letter-spacing: 4px;
  margin-bottom: 1em;
}
#front_page section.sec_slide .container .text_area .text_top {
  line-height: calc(36 / 18);
  font-size: 1.125rem;
  letter-spacing: 2px;
}
#front_page section.sec_slide .text_area_sp {
  padding: 30px 10px;
}
@media screen and (max-width: 959px) {
  #front_page section.sec_slide .text_area_sp {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  #front_page section.sec_slide .text_area_sp {
    display: none;
  }
}
#front_page section.sec_slide .text_area_sp h1 {
  font-size: 1.125rem;
  letter-spacing: 4px;
  margin-bottom: 1em;
  text-align: center;
}
#front_page section.sec_slide .text_area_sp .text_top {
  line-height: calc(36 / 18);
  font-size: 1rem;
  letter-spacing: 2px;
}
#front_page section.sec_top .container {
  max-width: 1100px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  position: relative;
  background-color: transparent;
  padding-left: 0 !important;
  padding-right: 0 !important;
  opacity: 1;
}
@media screen and (max-width: 959px) {
  #front_page section.sec_top .container {
    aspect-ratio: 360 / 300;
  }
}
@media screen and (min-width: 960px) {
  #front_page section.sec_top .container {
    aspect-ratio: 1200 / 457;
  }
}
@media screen and (max-width: 959px) {
  #front_page section.sec_button {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 960px) {
  #front_page section.sec_button {
    padding-top: 70px;
    padding-bottom: 150px;
  }
}
#front_page section.sec_button .grid_wrapper {
  display: grid;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  #front_page section.sec_button .grid_wrapper {
    grid-template-columns: repeat(2, 45%);
    max-width: 600px;
    justify-content: center;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  #front_page section.sec_button .grid_wrapper {
    grid-template-columns: repeat(3, 260px);
  }
}
#front_page section.sec_button .grid_wrapper .top_btn {
  width: 100%;
  border: 1px solid #5b5b5b;
}
#front_page section.sec_button .grid_wrapper .top_btn a.btn_a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  transition: filter .2s ease-in;
}
#front_page section.sec_button .grid_wrapper .top_btn a.btn_a img {
  transition: filter .2s ease-in;
  filter: brightness(0.98);
  width: 100%;
}
#front_page section.sec_button .grid_wrapper .top_btn:hover a.btn_a img {
  filter: brightness(1.15) drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
}

@media screen and (max-width: 959px) {
  section.sec_topics {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 960px) {
  section.sec_topics {
    margin-bottom: 120px;
  }
}
section.sec_topics .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  min-height: 300px;
  padding-top: 50px;
  padding-bottom: 50px;
}
section.sec_topics .container #newsWrap {
  position: relative;
}
@media screen and (max-width: 959px) {
  section.sec_topics .container #newsWrap {
    padding-left: 80px;
  }
}
@media screen and (min-width: 960px) {
  section.sec_topics .container #newsWrap {
    padding-left: 200px;
  }
}
section.sec_topics .container #newsWrap .h2_area {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 960px) {
  section.sec_topics .container #newsWrap .h2_area {
    width: 200px;
  }
}
@media screen and (max-width: 479px) {
  section.sec_topics .container #newsWrap .h2_area img.h2_image {
    width: 27.3px;
    display: block;
    margin: 0 auto 24px;
  }
}
@media screen and (min-width: 480px) {
  section.sec_topics .container #newsWrap .h2_area img.h2_image {
    width: 39px;
    display: block;
    margin: 0 auto 24px;
  }
}
section.sec_topics .container #newsWrap .h2_eng {
  width: 100%;
  text-align: center;
  font-size: 1.125rem;
}
section.sec_topics .container .post_single {
  /*
  background-image:url( "/images/maru_small.png");
  background-size:15px 15px;
  background-position:0 42px;
  background-repeat:no-repeat;
  */
}
section.sec_topics .container .log_wrapper {
  margin-bottom: 50px;
}
@media screen and (min-width: 960px) {
  section.sec_topics .container .log_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
    -ms-align-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 959px) {
  section.sec_topics .container .log_wrapper .left {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  section.sec_topics .container .log_wrapper .left {
    width: 70%;
    padding-left: 20px;
    background-image: url("/images/maru_small.png");
    background-size: 15px 15px;
    background-position: 0 5px;
    background-repeat: no-repeat;
  }
}
section.sec_topics .container .log_wrapper .left .date {
  margin-bottom: 1em;
  font-weight: 700;
}
section.sec_topics .container .log_wrapper .left .title {
  margin-bottom: 1em;
}
section.sec_topics .container .log_wrapper .left .text_log {
  line-height: 2;
  margin-bottom: 1em;
  padding-right: 40px;
}
section.sec_topics .container .log_wrapper .thumbNailWrap {
  aspect-ratio: 1;
  position: relative;
  background-color: #FFF;
}
section.sec_topics .container .log_wrapper .thumbNailWrap.pic_off {
  display: none !important;
}
section.sec_topics .container .log_wrapper .thumbNailWrap img {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 959px) {
  section.sec_topics .container .log_wrapper .thumbNailWrap {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  section.sec_topics .container .log_wrapper .thumbNailWrap {
    width: 30%;
    max-width: 250px;
  }
}

section.sec_about .container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
section.sec_about .container .image_wrapper {
  background-color: #000;
  background-image: url("../images/slide/slide1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 479px) {
  section.sec_about .container .image_wrapper {
    aspect-ratio: 1.5;
  }
}
@media screen and (min-width: 480px) {
  section.sec_about .container .image_wrapper {
    aspect-ratio: 2.2008;
  }
}
section.sec_about .container .image_wrapper h2 {
  max-width: 42px;
  position: absolute;
}
section.sec_about .container .image_wrapper h2 img {
  width: 100%;
}
@media screen and (max-width: 479px) {
  section.sec_about .container .image_wrapper h2 {
    width: 25px;
    left: 10%;
    top: 10px;
  }
}
@media screen and (min-width: 480px) {
  section.sec_about .container .image_wrapper h2 {
    width: 3.81818%;
    left: 5%;
    top: 10%;
  }
}

/**************************************/
/*Contact*/
/**************************************/
#contact section.sec_h1 {
  padding-top: 50px;
}
#contact h1 {
  font-size: 1.25rem;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 959px) {
  #contact h1 img.title_contact {
    width: 100px;
  }
}
@media screen and (min-width: 960px) {
  #contact h1 img.title_contact {
    width: 110px;
  }
}
#contact .container {
  max-width: 800px;
  padding-bottom: 100px;
  margin: 0 auto;
}
#contact .red {
  color: #ac0000;
}
#contact .top_text {
  margin: 0 auto 2em;
  max-width: 600px;
}
#contact form {
  max-width: 600px;
  margin: 0 auto;
}
#contact form table,
#contact form .input_table {
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 959px) {
  #contact form table th,
  #contact form table td,
  #contact form .input_table th,
  #contact form .input_table td {
    display: block;
  }
  #contact form table th,
  #contact form .input_table th {
    text-align: left;
    padding-bottom: 15px;
    font-size: 15px;
  }
  #contact form table td,
  #contact form .input_table td {
    padding-bottom: 30px;
    vertical-align: middle;
  }
}
@media screen and (min-width: 960px) {
  #contact form table th,
  #contact form .input_table th {
    text-align: left;
    width: 30%;
    font-size: 15px;
  }
  #contact form table th,
  #contact form table td,
  #contact form .input_table th,
  #contact form .input_table td {
    padding-bottom: 30px;
    vertical-align: middle;
  }
}
#contact form table input[type="text"],
#contact form table input[type="email"],
#contact form table input[type="tel"],
#contact form table textarea,
#contact form table select,
#contact form .input_table input[type="text"],
#contact form .input_table input[type="email"],
#contact form .input_table input[type="tel"],
#contact form .input_table textarea,
#contact form .input_table select {
  padding: 10px;
  font-family: "Noto Sans JP", san-serif;
  font-size: 16px;
}
@media screen and (max-width: 959px) {
  #contact form table input[type="text"],
  #contact form table input[type="email"],
  #contact form table input[type="tel"],
  #contact form table textarea,
  #contact form table select,
  #contact form .input_table input[type="text"],
  #contact form .input_table input[type="email"],
  #contact form .input_table input[type="tel"],
  #contact form .input_table textarea,
  #contact form .input_table select {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  #contact form table input[type="text"],
  #contact form table input[type="email"],
  #contact form table input[type="tel"],
  #contact form table textarea,
  #contact form table select,
  #contact form .input_table input[type="text"],
  #contact form .input_table input[type="email"],
  #contact form .input_table input[type="tel"],
  #contact form .input_table textarea,
  #contact form .input_table select {
    width: 100%;
  }
}
#contact form table textarea,
#contact form .input_table textarea {
  min-height: 200px;
}
#contact form .input_table {
  margin-bottom: 30px;
}
#contact form .input_table,
#contact form .h-adr {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
#contact form .form-group {
  display: flex;
}
@media screen and (max-width: 959px) {
  #contact form .form-group {
    flex-direction: column;
  }
}
@media screen and (max-width: 959px) {
  #contact form .form-group .col1 {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  #contact form .form-group .col1 {
    width: 30%;
    padding-top: 10px;
  }
}
@media screen and (max-width: 959px) {
  #contact form .form-group .form_answer {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  #contact form .form-group .form_answer {
    width: 70%;
  }
}
#contact form .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
}
#contact form .btn-area button {
  margin: 0 20px;
  padding: 10px;
  border-radius: 5px;
  background-color: #FFF;
  font-size: 16px;
  border: 1px solid #000;
  color: #000;
}
#contact form .btn-area button:hover {
  cursor: pointer;
}

/**************************************/
/*PAGE ABOUT*/
/**************************************/
#page_about .text_wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin: 0 auto;
}
#page_about .fee_table {
  border-collapse: collapse;
  max-width: 500px;
}
#page_about .fee_table td {
  border: 1px solid #888;
  padding: 3px;
}
#page_about .fee_table .item {
  background-color: #670814;
  color: #FFF;
  padding: 3px;
}

/**************************************/
/*PRIVACY*/
/**************************************/
.page_rule h2 {
  font-size: 18px;
  text-align: left !important;
  justify-content: flex-start !important;
  margin-bottom: 14px;
}
.page_rule h3 {
  font-size: 16px;
  margin-bottom: 14px;
}
.page_rule .text {
  font-size: 16px;
}
.page_rule .flex_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin-bottom: 60px;
}
.page_rule .flex_wrapper .text_wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.page_rule .flex_wrapper .text_wrapper.gap {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.page_rule .personal_item {
  display: flex;
  flex-direction: column;
  gap: .5em;
}
.page_rule .personal_item li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 16px;
}
.page_rule .personal_item li:before {
  content: "・";
}
.page_rule .list {
  display: flex;
  flex-direction: column;
  gap: .5em;
}
.page_rule .list.child {
  padding-left: 20px;
}
.page_rule .indent_5 {
  text-indent: -.5em;
  padding-left: .5em;
}
.page_rule .indent1 {
  font-size: 16px;
  text-indent: -1em;
  padding-left: 1em;
}
.page_rule .indent2 {
  font-size: 16px;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

/**************************************/
/*404*/
/**************************************/
#page_404 {
  height: 1500px;
}

/**************************************/
/*page_event イベントページ*/
/**************************************/
a.hover_bright img {
  transition: filter .2s ease-in;
}
a.hover_bright:hover img {
  filter: brightness(1.15) drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
}

a.border_line {
  display: inline-block;
  position: relative;
  word-break: break-all;
}
a.border_line:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #670814;
  position: absolute;
  left: 0;
  top: 100%;
  transform: translate(0, 0);
  transition: all 0.2s cubic-bezier(0.74, 0.155, 0.94, 0.54);
}
a.border_line:hover:after {
  width: 100%;
  transform: translate(0, 0);
}

#page_event .decimal_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1em;
}
#page_event .decimal_list li {
  text-indent: -1em;
  padding-left: 1em;
}
#page_event .decimal_list li:before {
  content: "・";
}
#page_event .circle_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1em;
}
#page_event .circle_list li {
  text-indent: -1em;
  padding-left: 1em;
}
#page_event .circle_list li:before {
  content: "〇";
}
#page_event .name_wrap {
  width: 100%;
  border-top: 1px dotted #888;
}
@media screen and (max-width: 959px) {
  #page_event .name_wrap {
    padding-top: 30px;
  }
}
@media screen and (min-width: 960px) {
  #page_event .name_wrap {
    padding-top: 40px;
  }
}
#page_event .name_wrap .flex_wrap {
  display: flex;
  gap: 1.5em;
}
@media screen and (max-width: 959px) {
  #page_event .name_wrap .flex_wrap {
    flex-direction: column;
    gap: 0;
    margin-bottom: 15px;
  }
}
#page_event .name_wrap .flex_wrap .item1 {
  width: 8em;
}
#page_event .grid_wrap {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 959px) {
  #page_event .grid_wrap {
    gap: 40px;
  }
}
@media screen and (min-width: 960px) {
  #page_event .grid_wrap {
    gap: 60px;
  }
}
@media screen and (max-width: 959px) {
  #page_event .sec_event2 .flex_wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 450px;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 960px) {
  #page_event .sec_event2 .flex_wrapper {
    /*
    grid-template-columns: repeat(2,1fr);
    gap:50px;
    margin:0 auto 30px;
    */
    display: flex;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto 30px;
    gap: 5px;
  }
}
#page_event .sec_event2 .flex_wrapper a.image_href {
  display: block;
  width: 100%;
  border: 1px solid #cacaca;
}
#page_event .sec_event2 .flex_wrapper a.image_href img {
  width: 100%;
}
#page_event .sec_about3 h3.h3_mail {
  margin-bottom: 15px;
}
#page_event .info_indent1 {
  padding-left: 1em;
}
@media screen and (max-width: 959px) {
  #page_event .sec_archive {
    padding-top: 40px;
  }
}
@media screen and (min-width: 960px) {
  #page_event .sec_archive {
    padding-top: 60px;
  }
}
#page_event .archive_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
#page_event .archive_wrapper .s_wrapper {
  padding: 10px;
  border: 1px solid #888;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
#page_event .archive_wrapper .image_wrapper {
  width: 100%;
  display: flex;
  gap: 10px;
}
#page_event .archive_wrapper .image_wrapper .image_link {
  display: block;
  width: 50%;
  border: 1px solid #f0f0f0;
  opacity: 1;
  transition: opacity .2s ease-in;
}
#page_event .archive_wrapper .image_wrapper .image_link:hover {
  opacity: .7;
}

/**************************************/
/*STAFF*/
/**************************************/
#page_staff .staff_content {
  max-width: 600px;
}
#page_staff .staff_content .all_wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#page_staff .staff_content h2.h2_left {
  font-size: 16px;
  margin-bottom: 1em;
}
#page_staff .staff_content h2.h2_left:before {
  content: "";
  display: inline-block;
  background-color: #670814;
}
@media screen and (max-width: 959px) {
  #page_staff .staff_content h2.h2_left:before {
    width: 12px;
    height: 15px;
  }
}
@media screen and (min-width: 960px) {
  #page_staff .staff_content h2.h2_left:before {
    width: 12px;
    height: 16px;
  }
}
#page_staff .staff_content .decimal_list li {
  color: #333333;
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 959px) {
  #page_staff .staff_content .decimal_list li {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 960px) {
  #page_staff .staff_content .decimal_list li {
    font-size: 1rem;
    line-height: 1.6;
  }
}
#page_staff .staff_content .decimal_list li span {
  display: inline-block;
}
@media screen and (max-width: 479px) {
  #page_staff .staff_content .decimal_list li .name {
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  #page_staff .staff_content .decimal_list li .name {
    width: 6em;
  }
}
@media screen and (max-width: 479px) {
  #page_staff .staff_content .decimal_list li .position {
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  #page_staff .staff_content .decimal_list li .position {
    width: calc( 100% - 7em);
  }
}
#page_staff .staff_content .decimal_list li .position .small {
  font-size: 14px;
}
@media screen and (max-width: 479px) {
  #page_staff .staff_content .decimal_list li {
    flex-direction: column;
    margin-bottom: 20px;
    gap: 0;
  }
}

/**************************************/
/*LINK*/
/**************************************/
#page_link .all_wrapper {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#page_link h2.h2_left {
  font-size: 16px;
  margin-bottom: 1em;
}
#page_link h2.h2_left:before {
  content: "";
  display: inline-block;
  background-color: #670814;
}
@media screen and (max-width: 959px) {
  #page_link h2.h2_left:before {
    width: 12px;
    height: 15px;
  }
}
@media screen and (min-width: 960px) {
  #page_link h2.h2_left:before {
    width: 12px;
    height: 16px;
  }
}
#page_link .decimal_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#page_link .decimal_list li {
  color: #333333;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  #page_link .decimal_list li {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 960px) {
  #page_link .decimal_list li {
    font-size: 1rem;
    line-height: 1.6;
  }
}
#page_link .decimal_list li .name {
  width: 30%;
}
#page_link .decimal_list li .link {
  width: 70%;
}

/**************************************/
/*PAGE ADMISSION 入会のご案内*/
/**************************************/
#page_admission h3 {
  margin-bottom: 16px;
}
#page_admission h4 {
  color: #670814;
  font-weight: 700;
  margin-bottom: 10px;
}
#page_admission picture.vitruvianus {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
}
#page_admission .text_wrapper {
  margin-bottom: 50px;
}
#page_admission table.fee_table {
  table-layout: fixed;
  border-collapse: collapse;
  margin: 0 auto 30px;
}
@media screen and (max-width: 959px) {
  #page_admission table.fee_table {
    width: 100%;
    max-width: 500px;
  }
}
@media screen and (min-width: 960px) {
  #page_admission table.fee_table {
    width: 600px;
  }
}
#page_admission table.fee_table th, #page_admission table.fee_table td {
  padding: 5px;
  text-align: center;
  border: 1px solid #888;
}
#page_admission table.fee_table th {
  background-color: #f0f0f0;
}
#page_admission .payinfo {
  table-layout: fixed;
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
  margin-bottom: 30px;
}
#page_admission .payinfo th, #page_admission .payinfo td {
  padding: 5px;
  text-align: left;
  border: 1px solid #888;
}
#page_admission .payinfo th.item {
  background-color: #f0f0f0;
  width: 30%;
}
#page_admission .payinfo td.content {
  width: 70%;
}
#page_admission h3.h3_center {
  text-align: center;
}
#page_admission .flex_wrapper {
  display: flex;
  justify-content: center;
}

a.btn_contact {
  color: #333;
  font-weight: 700;
  background: linear-gradient(180deg, white 0%, #aafcff 80%, #acfaff 100%);
  border-radius: 100vh;
  border: 1px solid #333;
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: .1em;
  transition: all .2s linear;
}
a.btn_contact span {
  color: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
a.btn_contact:hover {
  background: linear-gradient(180deg, #9c4752 0%, #670814 80%, #670814 100%);
  color: #FFF;
}
a.btn_contact:hover span {
  color: inherit;
}
a.btn_contact:hover:after {
  transform: translate(10px, -50%) rotate(45deg);
  border-top: 3px solid #FFF;
  border-right: 3px solid #fFF;
}
a.btn_contact:after {
  content: "";
  display: block;
  background-color: transparent;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: translate(0, -50%) rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  transition: all .2s linear;
}

/************************************
Page Bulletin 定期刊行物
*************************************/
.page_bulletin section.sec_top .flex_wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .page_bulletin section.sec_top .flex_wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page_bulletin section.sec_top .flex_wrapper .item {
    width: 100%;
  }
  .page_bulletin section.sec_top .flex_wrapper .item.book {
    max-width: 250px;
  }
}
@media screen and (min-width: 960px) {
  .page_bulletin section.sec_top .flex_wrapper {
    gap: 50px;
  }
  .page_bulletin section.sec_top .flex_wrapper .item {
    width: 50%;
  }
}
.page_bulletin section.sec_top .flex_wrapper .btn_contact {
  margin: 0 auto;
}
.page_bulletin section.sec_2 .grid_wrapper {
  display: grid;
  gap: 30px;
}
@media screen and (max-width: 959px) {
  .page_bulletin section.sec_2 .grid_wrapper {
    grid-template-columns: repeat(1, 300px);
    justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .page_bulletin section.sec_2 .grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_bulletin section.sec_3 .flex_wrapper {
  display: flex;
  flex-direction: column;
  column-gap: 30px;
}
.page_bulletin section.sec_3 ul.list {
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  margin-bottom: 30px;
}
.page_bulletin section.sec_3 ul.list li {
  text-indent: -1em;
  padding-left: 1em;
}
.page_bulletin section.sec_3 ul.list li:before {
  content: "＊";
}
.page_bulletin section.sec_list .grid_wrapper_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page_bulletin section.sec_list .grid_wrapper_list .flex_wrapper {
  display: flex;
  gap: 20px;
}
.page_bulletin section.sec_list .grid_wrapper_list .flex_wrapper .item_file {
  width: 70%;
  padding-left: 20px;
}
.page_bulletin section.sec_list .grid_wrapper_list .flex_wrapper .item_file a {
  color: #670814;
}
.page_bulletin section.sec_list .grid_wrapper_list .flex_wrapper .item_year {
  width: 30%;
}
.page_bulletin section.sec_list .grid_wrapper_list .line {
  width: 100%;
  height: 1px;
  background-color: #cfcfcf;
}
.page_bulletin section.sec_4 .address_wrapper {
  margin: 0 auto;
  max-width: 500px;
}
.page_bulletin section.sec_4 .address_wrapper h4 {
  font-weight: 700;
  color: #670814;
}
.page_bulletin .acrobat {
  display: block;
  max-width: 250px;
  margin: 0 auto;
}

/**************************************/
/*PAGE ABOUT*/
/**************************************/
#site_map .sitemap_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 350px;
  margin: 0 auto;
}
#site_map .sitemap_wrapper .link {
  background: #FFF;
  padding: 10px 0 10px 10px;
  transition: all 0.3s linear;
}
#site_map .sitemap_wrapper .link a {
  font-size: 18px;
  font-weight: 700;
  color: #670814;
}
#site_map .sitemap_wrapper .link:hover {
  background: #670814;
}
#site_map .sitemap_wrapper .link:hover a {
  color: #FFF;
}
#site_map .sitemap_wrapper .link.child1 {
  padding-left: 30px;
}
#site_map .sitemap_wrapper .link.child1 a {
  padding-left: 0.5em;
}
#site_map .sitemap_wrapper .link.child1 a:before {
  content: "┗";
}
