@charset "UTF-8";
/* core */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Montserrat:ital,wght@1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;700;900&display=swap");
/* =================================================
color
================================================= */
/* =================================================
font
================================================= */
/* =================================================
loading animation
================================================= */
/* =================================================
breakpoints
================================================= */
/* min-width */
/* max-width */
/* =================================================
reset
================================================= */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  margin: 0;
}

img {
  border: none;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

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

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

a {
  outline: none;
  text-decoration: none;
}

/* =================================================
base
================================================= */
:root {
  color: #231815;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
  color: #231815;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Montserrat", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
}
@media (max-width: 479px) {
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
  }
}

/* --------------------------------------------------
heading
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

/* --------------------------------------------------
form reset
-------------------------------------------------- */
button,
fieldset,
form,
input,
label,
legend,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

/* --------------------------------------------------
link
-------------------------------------------------- */
a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #231815;
}
@media (min-width: 1024px) {
  a:hover {
    color: #231815;
  }
  a:visited {
    color: #231815;
  }
}

/* --------------------------------------------------
form elements
-------------------------------------------------- */
[type=text],
[type=email],
[type=password],
[type=number],
[type=tel],
textarea,
select {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 0;
}

select {
  height: 2.5em;
  padding-right: 8%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff url("../img/common/arrow.svg") 96% center no-repeat;
  background-size: 12px;
}

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

/* --------------------------------------------------
placeholder
-------------------------------------------------- */
::-webkit-input-placeholder {
  color: #bababa;
}
::-moz-placeholder {
  color: #bababa;
}
:-ms-input-placeholder {
  color: #bababa;
}
::-ms-input-placeholder {
  color: #bababa;
}
::placeholder {
  color: #bababa;
}

@-webkit-keyframes img {
  0% {
    right: 100%;
    width: 100%;
  }
  50% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 0;
    width: 0;
  }
}

@keyframes img {
  0% {
    right: 100%;
    width: 100%;
  }
  50% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 0;
    width: 0;
  }
}
/* layout */
/* ボタン ベース 矢印 */
a.btn_std,
a.btn_std01 {
  display: block;
  text-align: center;
  border-radius: 4px;
  padding: 0.8em 1.6em 0.74em;
  font-size: 2rem;
  line-height: 1;
  vertical-align: bottom;
  background: url(../img/common/arr_w.svg) 96% center no-repeat;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 479px) {
  a.btn_std,
  a.btn_std01 {
    font-size: 2.2rem;
  }
}
a.btn_std:hover,
a.btn_std01:hover {
  background-position: 98% center;
}

/*押すタイプ*/
a.btn_std01 {
  -webkit-box-shadow: 0px 3px 0px rgb(206, 137, 0);
          box-shadow: 0px 3px 0px rgb(206, 137, 0);
}
a.btn_std01:active {
  position: relative;
  top: 3px;
  -webkit-box-shadow: 0 0 0 rgb(206, 137, 0);
          box-shadow: 0 0 0 rgb(206, 137, 0);
}

/* 挿入する場合の設定例 */
a.btn_std00 {
  color: #fff;
  background: #882539;
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.68);
          box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.68);
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 38px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
}
@media (max-width: 479px) {
  .hamburger span {
    height: 2px;
  }
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* 見出し ベース */
.h_icn1 {
  position: relative;
  font-size: 3.2rem;
  text-align: center;
  padding: 40px 0;
  line-height: 1;
  border-bottom: 1px solid #882539;
  margin-bottom: 40px;
}
@media (max-width: 479px) {
  .h_icn1 {
    padding: 24px 0;
    margin-bottom: 24px;
  }
}
.h_icn1 .sub {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 16px;
}
.h_icn1 .att {
  font-size: 1.8rem;
  margin: 16px auto 0;
}
.h_icn1 {
  /*&:before{
  	content: "";
  	display: block;
  	width: 32px;
  	height: 32px;
  	background: url(../img/common/h_icn1.svg) center center no-repeat;
  	background-size: contain;
  	margin: 0 auto 40px;
  	@include mq-down(sp) {
  		margin-bottom: 24px;
  	}
  }*/
}

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

img {
  vertical-align: bottom;
}

/* responsive */
.sp {
  display: none;
}
@media (max-width: 479px) {
  .sp {
    display: inherit;
  }
}

@media (max-width: 479px) {
  .pc {
    display: none;
  }
}
/* layout */
.inner {
  position: relative;
  margin: 0px auto;
}
.grid_cell {
  display: table;
}
.grid_cell .cell {
  display: table-cell;
  vertical-align: middle;
}

.grid_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
ul.ul_table > li > dl {
  display: table;
}
ul.ul_table > li > dl > dt,
ul.ul_table > li > dl > dd {
  display: table-cell;
  vertical-align: middle;
}
ul.ul_table > li > dl > dt {
  width: 120px;
  padding-right: 4px;
}

a.std_icn1 {
  position: relative;
}
a.std_icn1:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  margin-right: 0.4em;
  background: url(../img/common/arr.svg) 0 0 no-repeat;
  background-size: contain;
}

/* accordion */
.list_qaa [type=checkbox] + label:before {
  display: none;
}

/*-----------------------------------------------------------
	tab
-----------------------------------------------------------*/
input[name=switch] {
  display: none;
}

/* :::::: button :::::: */
.tabBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  width: 100%;
  margin: 0 0 0 4px;
  padding: 0;
  text-align: center;
}

.tabBtn li {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  margin-left: -4px;
  margin-top: -20px;
  z-index: 160;
}

.tabBtn label {
  display: block;
  cursor: pointer;
  padding: 10px 0 24px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  font-size: 24px;
  border: 4px solid #3198d0;
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  background: #fff;
}

.tabBtn li:nth-last-child(-n+5) label {
  padding: 10px 0 12px;
}

.tabBtn label:hover {
  color: #3198d0;
}

/* :::::: contents :::::: */
.tabContents section {
  padding: 20px;
  background: white;
}

.tabContents section::after {
  content: "";
  display: block;
  clear: left;
}

/* :::::: mechanism :::::: */
.tabContents section {
  opacity: 0.1;
}

.tabContents section {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#tab01:checked ~ .tabBtn label[for=tab01],
#tab02:checked ~ .tabBtn label[for=tab02],
#tab03:checked ~ .tabBtn label[for=tab03],
#tab04:checked ~ .tabBtn label[for=tab04],
#tab05:checked ~ .tabBtn label[for=tab05],
#tab06:checked ~ .tabBtn label[for=tab06],
#tab07:checked ~ .tabBtn label[for=tab07],
#tab08:checked ~ .tabBtn label[for=tab08],
#tab09:checked ~ .tabBtn label[for=tab09],
#tab10:checked ~ .tabBtn label[for=tab10] {
  color: #fff;
  background: #3198d0;
  position: relative;
}

#tab01:checked ~ .tabContents #tabsec01,
#tab02:checked ~ .tabContents #tabsec02,
#tab03:checked ~ .tabContents #tabsec03,
#tab04:checked ~ .tabContents #tabsec04,
#tab05:checked ~ .tabContents #tabsec05,
#tab06:checked ~ .tabContents #tabsec06,
#tab07:checked ~ .tabContents #tabsec07,
#tab08:checked ~ .tabContents #tabsec08,
#tab09:checked ~ .tabContents #tabsec09,
#tab10:checked ~ .tabContents #tabsec10 {
  opacity: 1;
  background: white;
}

/* :::::: slide :::::: */
.tabContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1000%;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.tabContents section {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  opacity: 0.1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: 4px solid #c3d5e9;
  border-radius: 0 0 16px 16px;
}

#tab01:checked ~ .tabContents {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#tab02:checked ~ .tabContents {
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

#tab03:checked ~ .tabContents {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}

#tab04:checked ~ .tabContents {
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

#tab05:checked ~ .tabContents {
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}

#tab06:checked ~ .tabContents {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#tab07:checked ~ .tabContents {
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
}

#tab08:checked ~ .tabContents {
  -webkit-transform: translateX(-70%);
          transform: translateX(-70%);
}

#tab09:checked ~ .tabContents {
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
}

#tab10:checked ~ .tabContents {
  -webkit-transform: translateX(-90%);
          transform: translateX(-90%);
}

.tabContents2 {
  width: 100%;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  position: relative;
}
.tabContents2 section {
  width: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 4px solid #3198d0;
  border-radius: 0 0 16px 16px;
  display: none;
  opacity: 0.1;
}
.tabContents2 section:hover {
  opacity: 0.75;
}

#tab01:checked ~ .tabContents2 #tabsec01,
#tab02:checked ~ .tabContents2 #tabsec02,
#tab03:checked ~ .tabContents2 #tabsec03,
#tab04:checked ~ .tabContents2 #tabsec04,
#tab05:checked ~ .tabContents2 #tabsec05,
#tab06:checked ~ .tabContents2 #tabsec06,
#tab07:checked ~ .tabContents2 #tabsec07,
#tab08:checked ~ .tabContents2 #tabsec08,
#tab09:checked ~ .tabContents2 #tabsec09,
#tab10:checked ~ .tabContents2 #tabsec10 {
  display: block;
  opacity: 1;
  background: #fff;
}

/* pagetop */
.pagetop1 {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 56px;
  height: 56px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 479px) {
  .pagetop1 {
    width: 80px;
    height: 80px;
    bottom: 140px;
  }
}
.pagetop1.active {
  bottom: 60px;
}
.pagetop1 a {
  display: block;
  height: 56px;
  padding-top: 30px;
  border: 3px solid #882539;
  background: #fff url(../img/common/top.svg) center 9px no-repeat;
  background-size: 26px 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  text-align: center;
  color: #882539;
  letter-spacing: -0.1em;
  font-size: 10px;
  font-weight: bold;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.pagetop1 a:hover {
  opacity: 1;
}
@media (max-width: 479px) {
  .pagetop1 a {
    display: block;
    height: 80px;
    font-size: 14px;
    padding-top: 48px;
    background-size: 40px 28px;
  }
}

/* お客様の声*/
.ul_voice_std {
  width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 479px) {
  .ul_voice_std {
    width: auto;
  }
}
.ul_voice_std > li {
  width: 460px;
  position: relative;
}
@media (max-width: 479px) {
  .ul_voice_std > li {
    width: auto;
  }
}
.ul_voice_std > li:nth-child(2) {
  margin-left: 40px;
}
@media (max-width: 479px) {
  .ul_voice_std > li:nth-child(2) {
    margin-left: 0;
  }
}
.ul_voice_std > li:nth-child(2) .desgin_tag:before {
  background: url(../img/index/obj_tape2.svg) center center no-repeat;
}
.ul_voice_std > li:nth-child(3) {
  width: 960px;
}
@media (max-width: 479px) {
  .ul_voice_std > li:nth-child(3) {
    width: auto;
  }
}
.ul_voice_std > li:nth-child(3) .note_blk {
  width: 460px;
}
@media (max-width: 479px) {
  .ul_voice_std > li:nth-child(3) .note_blk {
    width: auto;
    margin-bottom: 32px;
  }
}
.ul_voice_std > li:nth-child(3) .etc_blk {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}
@media (max-width: 479px) {
  .ul_voice_std > li:nth-child(3) .etc_blk {
    position: static;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    text-align: center;
  }
  .ul_voice_std > li:nth-child(3) .etc_blk iframe {
    width: 560px;
    height: 315px;
  }
}
.ul_voice_std > li:nth-child(3) .desgin_tag:before {
  background: url(../img/index/obj_tape3.svg) center center no-repeat;
}

.desgin_tag {
  background: #f9f8f8;
  padding: 56px 20px 32px;
  position: relative;
  margin: 48px 0 36px;
  -webkit-box-shadow: 4px 4px 0 rgba(200, 200, 200, 0.6);
          box-shadow: 4px 4px 0 rgba(200, 200, 200, 0.6);
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*&:before{
    content: "";
  	display: inline-block;
  	vertical-align: middle;
  	width: 240px;
  	height: 80px;
  	background: url(../img/index/obj_tape1.svg) center center no-repeat;
  	background-size: contain;
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
  }*/
}
.desgin_tag .gr_txt {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(249, 248, 248, 0)), color-stop(49%, rgba(249, 248, 248, 0)), color-stop(#f9f8f8), to(#f9f8f8)), -webkit-gradient(linear, left top, left bottom, from(rgba(249, 248, 248, 0)), color-stop(94.5%, rgba(249, 248, 248, 0)), to(#424242));
  background-image: linear-gradient(90deg, rgba(249, 248, 248, 0) 0%, rgba(249, 248, 248, 0) 49%, #f9f8f8, #f9f8f8), linear-gradient(180deg, rgba(249, 248, 248, 0) 0%, rgba(249, 248, 248, 0) 94.5%, #424242 100%);
  background-repeat: repeat-x, repeat-y;
  background-size: 4px 100%, 100% 2em;
  line-height: 2;
  text-align: left;
  font-size: 16px;
}
@media (max-width: 479px) {
  .desgin_tag .gr_txt {
    font-size: 2.2rem;
  }
}
.desgin_tag .gr_txt p {
  font-size: 16px;
}
@media (max-width: 479px) {
  .desgin_tag .gr_txt p {
    font-size: 2.2rem;
  }
}
.desgin_tag {
  /*.tmb{
  	margin: 24px auto 0;
  	text-align: center;
  }*/
  /*.name{
    font-size: 20px;
    color: #3198d0;
    text-align: right;
    margin-bottom: 16px;
    line-height: 1;
  	@include mq-down(sp) {
  		font-size: 24px;
  	}
  }*/
}

/* ニュースティッカー */
.newsticker {
  width: 100%;
  overflow: hidden;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.56);
  color: #fff;
}
@media (min-width: 1024px) {
  .newsticker {
    height: 56px;
    position: relative;
    top: -56px;
  }
}
.newsticker .tit_chap {
  display: none;
}
.newsticker ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.newsticker ul > .blknew a {
  color: #fff;
  display: block;
}
.newsticker ul[data-length="5"] {
  top: 56px;
  -webkit-animation-name: news-5;
          animation-name: news-5;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.newsticker ul[data-length="4"] {
  top: 56px;
  -webkit-animation-name: news-4;
          animation-name: news-4;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.newsticker ul[data-length="3"] {
  top: 56px;
  -webkit-animation-name: news-3;
          animation-name: news-3;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.newsticker ul[data-length="2"] {
  top: 56px;
  -webkit-animation-name: news-2;
          animation-name: news-2;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.newsticker ul:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes news-5 {
  0% {
    top: 56px;
    visibility: visible;
  }
  5% {
    top: 0;
  }
  15% {
    top: 0;
  }
  20% {
    top: -56px;
  }
  35% {
    top: -56px;
  }
  40% {
    top: -112px;
  }
  55% {
    top: -112px;
  }
  60% {
    top: -168px;
  }
  75% {
    top: -168px;
  }
  80% {
    top: -224px;
  }
  95% {
    top: -224px;
  }
  99% {
    top: -280px;
    visibility: hidden;
  }
  100% {
    top: 56px;
    visibility: hidden;
  }
}

@keyframes news-5 {
  0% {
    top: 56px;
    visibility: visible;
  }
  5% {
    top: 0;
  }
  15% {
    top: 0;
  }
  20% {
    top: -56px;
  }
  35% {
    top: -56px;
  }
  40% {
    top: -112px;
  }
  55% {
    top: -112px;
  }
  60% {
    top: -168px;
  }
  75% {
    top: -168px;
  }
  80% {
    top: -224px;
  }
  95% {
    top: -224px;
  }
  99% {
    top: -280px;
    visibility: hidden;
  }
  100% {
    top: 56px;
    visibility: hidden;
  }
}
@-webkit-keyframes news-4 {
  0% {
    top: 56px;
    visibility: visible;
  }
  5% {
    top: 0;
  }
  15% {
    top: 0;
  }
  20% {
    top: -56px;
  }
  40% {
    top: -56px;
  }
  45% {
    top: -112px;
  }
  65% {
    top: -112px;
  }
  70% {
    top: -168px;
  }
  90% {
    top: -168px;
  }
  95% {
    top: -224px;
  }
  99% {
    top: -224px;
    visibility: hidden;
  }
  100% {
    top: 56px;
    visibility: hidden;
  }
}
@keyframes news-4 {
  0% {
    top: 56px;
    visibility: visible;
  }
  5% {
    top: 0;
  }
  15% {
    top: 0;
  }
  20% {
    top: -56px;
  }
  40% {
    top: -56px;
  }
  45% {
    top: -112px;
  }
  65% {
    top: -112px;
  }
  70% {
    top: -168px;
  }
  90% {
    top: -168px;
  }
  95% {
    top: -224px;
  }
  99% {
    top: -224px;
    visibility: hidden;
  }
  100% {
    top: 56px;
    visibility: hidden;
  }
}
@-webkit-keyframes news-3 {
  0% {
    top: 56px;
    visibility: visible;
  }
  5% {
    top: 0;
  }
  30% {
    top: 0;
  }
  35% {
    top: -56px;
  }
  60% {
    top: -56px;
  }
  65% {
    top: -112px;
  }
  90% {
    top: -112px;
  }
  95% {
    top: -168px;
  }
  99% {
    top: -168px;
    visibility: hidden;
  }
  100% {
    top: 56px;
    visibility: hidden;
  }
}
@keyframes news-3 {
  0% {
    top: 56px;
    visibility: visible;
  }
  5% {
    top: 0;
  }
  30% {
    top: 0;
  }
  35% {
    top: -56px;
  }
  60% {
    top: -56px;
  }
  65% {
    top: -112px;
  }
  90% {
    top: -112px;
  }
  95% {
    top: -168px;
  }
  99% {
    top: -168px;
    visibility: hidden;
  }
  100% {
    top: 56px;
    visibility: hidden;
  }
}
@-webkit-keyframes news-2 {
  0% {
    top: 56px;
    visibility: visible;
  }
  5% {
    top: 0;
  }
  55% {
    top: 0;
  }
  60% {
    top: -56px;
  }
  90% {
    top: -56px;
  }
  95% {
    top: -112px;
  }
  99% {
    top: -112px;
    visibility: hidden;
  }
  100% {
    top: 56px;
    visibility: hidden;
  }
}
@keyframes news-2 {
  0% {
    top: 56px;
    visibility: visible;
  }
  5% {
    top: 0;
  }
  55% {
    top: 0;
  }
  60% {
    top: -56px;
  }
  90% {
    top: -56px;
  }
  95% {
    top: -112px;
  }
  99% {
    top: -112px;
    visibility: hidden;
  }
  100% {
    top: 56px;
    visibility: hidden;
  }
}
/*-----------------------------------------------------------
	snippet
-----------------------------------------------------------*/
.olwrap .lo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.olwrap .lo:nth-child(odd) .tmb {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 32px;
}
.olwrap .lo:nth-child(odd) .txt {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.olwrap .lo:nth-child(even) .tmb {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 32px;
}
.olwrap .lo:nth-child(even) .txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/*-----------------------------------------------------------
	クリアフィックス
-----------------------------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0px;
  visibility: hidden;
}

/* 文章構造 ベース */
.txt_line_std p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 0.6em;
}
@media (max-width: 479px) {
  .txt_line_std p {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
.txt_line_std p:last-child {
  margin-bottom: 0;
}

/*-----------------------------------------------------------
    基本レイアウト
-----------------------------------------------------------*/
html {
  font-size: 62.5%;
}

@media (max-width: 479px) {
  body {
    margin: 0 auto;
  }
}

.wrap,
.inner {
  width: 92%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .wrap,
  .inner {
    max-width: 1080px;
  }
}
@media (min-width: 768px) {
  .wrap,
  .inner {
    width: 94%;
  }
}
@media (max-width: 479px) {
  .wrap,
  .inner {
    width: auto;
    margin: 0px 5vw;
  }
}

/*----------------------- common base --------------------------*/
/* コンテンツ ベース */
.sec {
  padding: 0 0 5.6%;
}
@media (max-width: 479px) {
  .sec {
    padding: 0 0 16vw;
  }
}

.ssec {
  position: relative;
}
/*----------------------- snippet section --------------------------*/
/* 記事一覧 */
.ul_topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ul_topic > li {
  width: 48%;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .ul_topic > li {
    width: 32%;
  }
}
.ul_topic > li a {
  display: block;
  position: relative;
  padding-bottom: 8px;
  border-bottom: solid 4px #ddd;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ul_topic > li a:hover {
  border-bottom: solid 4px #882539;
}
.ul_topic > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  background: url(../img/common/a_arr.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 8px;
  bottom: 8px;
}
@media (max-width: 479px) {
  .ul_topic > li a:before {
    width: 20px;
    height: 21px;
  }
}
.ul_topic > li a .tmb {
  height: 26vw;
  max-height: 240px;
  border-radius: 16px;
  position: relative;
}
.ul_topic > li a .tmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ul_topic > li a .txt {
  padding-top: 8px;
  min-height: 8em;
}
.ul_topic > li a .txt > .tit {
  font-size: 3.6vw;
  font-weight: bold;
  padding-top: 6px;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .ul_topic > li a .txt > .tit {
    font-size: 1.6rem;
  }
}
.ul_topic > li a .txt .txt_line p {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 479px) {
  .ul_topic > li a .txt .txt_line p {
    font-size: 1.8rem;
  }
}
.ul_topic > li a .date {
  padding: 8px 0;
}
.ul_topic > li a .date .cat {
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 479px) {
  .ul_topic > li a .date .cat {
    font-size: 1.4rem;
  }
}
.ul_topic > li a .date .update {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  color: #666;
  margin-top: 8px;
}
@media (max-width: 479px) {
  .ul_topic > li a .date .update {
    font-size: 1.6rem;
  }
}

/*----------------------- share section --------------------------*/
/*バナーバー INFO */
.bnrbar {
  border-radius: 16px;
  height: 240px;
  background: url(../img/common/bnr_bg_info.jpg) center center no-repeat;
}
@media (max-width: 479px) {
  .bnrbar {
    background-size: auto;
  }
}
.bnrbar .blk_l {
  width: 50%;
  height: 100%;
  background: rgba(237, 0, 102, 0.56);
  border-radius: 16px 0 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 24px 24px;
  color: #fff;
}
@media (max-width: 479px) {
  .bnrbar .blk_l {
    width: 100%;
    border-radius: 16px;
  }
}
.bnrbar .blk_l > .tit {
  font-size: 3.4rem;
  line-height: 1;
}
@media (max-width: 479px) {
  .bnrbar .blk_l > .tit {
    text-align: center;
  }
}
.bnrbar .blk_l .blk_form a.btn {
  display: block;
  border-radius: 8px;
  background: #fff;
  color: #882539;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  padding: 0.56em 0;
  margin: 8px auto;
}
@media (max-width: 479px) {
  .bnrbar .blk_l .blk_tel {
    margin-top: 16px;
  }
}
.bnrbar .blk_l .blk_tel a {
  color: #fff;
}
.bnrbar .blk_l .blk_tel .dl_tel {
  text-align: center;
}
.bnrbar .blk_l .blk_tel .dl_tel dt {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
.bnrbar .blk_l .blk_tel .dl_tel dd {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: arial;
}

/*ページ最後 活動ご支援のお願い*/
.share_donate > .inner > .txt_line_std {
  text-align: center;
}
@media (max-width: 479px) {
  .share_donate > .inner > .txt_line_std {
    text-align: left;
  }
}
.share_donate > .inner > .btn_area {
  width: 600px;
  margin: 40px auto;
}
@media (max-width: 479px) {
  .share_donate > .inner > .btn_area {
    width: auto;
  }
}
.share_donate .ul_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 479px) {
  .share_donate .ul_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.share_donate .ul_info > li {
  width: 460px;
  border-radius: 8px;
  border: 4px solid #882539;
  padding: 16px 32px 12px;
}
@media (max-width: 479px) {
  .share_donate .ul_info > li {
    width: auto;
    padding: 16px 16px 16px;
    margin-bottom: 16px;
  }
}
.share_donate .ul_info > li > .tit {
  font-size: 2rem;
  color: #882539;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 479px) {
  .share_donate .ul_info > li > .tit {
    font-size: 2.4rem;
    letter-spacing: normal;
  }
}
.share_donate .ul_info > li > .txt_line_std {
  min-height: 140px;
}
.share_donate .ul_info > li > .txt_line_std p {
  line-height: 1.6;
}
.share_donate .ul_info > li > .btn_area {
  margin-top: 16px;
}
.share_donate .ul_info > li > .btn_area .att {
  padding: 8px 0;
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 479px) {
  .share_donate .ul_info > li > .btn_area .att {
    font-size: 2rem;
    margin-bottom: -8px;
  }
}

/*支援者の声 レイアウト1*/
@media (max-width: 479px) {
  .sec_voice .inner {
    margin: 0 15px;
  }
}
.sec_voice .ul_voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 479px) {
  .sec_voice .ul_voice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 30px;
  }
}
.sec_voice .ul_voice > li {
  width: 440px;
}
@media (max-width: 479px) {
  .sec_voice .ul_voice > li {
    width: auto;
  }
}
.sec_voice .ul_voice > li.desgin_tag {
  padding: 24px 24px 32px;
  margin: 0 auto 24px;
}
.sec_voice .ul_voice > li.desgin_tag .name {
  margin-bottom: 16px;
  letter-spacing: -0.4em;
}
.sec_voice .ul_voice > li.desgin_tag .name > .tmb,
.sec_voice .ul_voice > li.desgin_tag .name > .txt {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
}
.sec_voice .ul_voice > li.desgin_tag .name > .txt {
  margin-left: 8px;
  font-size: 2rem;
  line-height: 1;
}
@media (max-width: 479px) {
  .sec_voice .ul_voice > li.desgin_tag .name > .txt {
    margin-left: 12px;
    font-size: 2.6rem;
  }
}

/*----------------------- header --------------------------*/
#ghd {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media (min-width: 1024px) {
  #ghd {
    height: 100px;
  }
}
#ghd .hd_in {
  padding: 0 5vw;
  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;
  height: inherit;
  position: relative;
}
#ghd .header__title {
  width: 40px;
}
@media (min-width: 1024px) {
  #ghd .header__title {
    width: 220px;
  }
}
#ghd .header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
#ghd {
  font-family: "Oswald", sans-serif;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: rgba(0, 0, 0, 0.92);
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    -webkit-transform: initial;
            transform: initial;
    background-color: inherit;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    width: 64%;
  }
}
@media (min-width: 1024px) {
  .header__nav .nav__items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: initial;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__nav .nav-items {
  padding-top: inherit;
  padding-bottom: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .header__nav .nav-items {
    position: static;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}
.header__nav a {
  display: block;
  padding: 0.56em;
  position: relative;
}
.header__nav a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background-color: #f89174;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__nav a:hover::after {
  width: 100%;
}
.header__nav a:hover {
  color: #f89174; /*ホバー時の文字色*/
}
.header__nav a.btn {
  width: 180px;
  display: block;
  line-height: 1;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 0.56em;
}
.header__nav a.btn:after {
  display: none;
}
.header__nav a.btn:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 15px;
  background: url(../img/common/hd_icn1.svg) center center no-repeat;
  background-size: contain;
  margin-right: 0.4em;
  margin-bottom: 0.2em;
}
.header__nav a.btn:hover {
  background-color: #555;
  color: #fff;
}
.header__nav a.btn:hover:before {
  background: url(../img/common/hd_icn1_w.svg) center center no-repeat;
  background-size: contain;
}

/* ナビのリンク */
.nav-items__item a {
  color: #000;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 24px;
  font-size: 5.6vw;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) {
  .nav-items__item a {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

/*----------------------- footer --------------------------*/
#gft {
  color: #fff;
  padding: 0;
  position: relative;
  margin: 0 0 0;
}
@media (max-width: 479px) {
  #gft {
    margin: 0 auto;
  }
}
#gft:before {
  display: none;
}
#gft a {
  color: #fff;
}
#gft .first {
  background: #1f1f1f;
  padding: 6.4vw 0;
  text-align: center;
}
@media (min-width: 1024px) {
  #gft .first {
    padding: 16px 0;
  }
}
#gft .first .unav {
  width: 100%;
  font-size: 2.4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
  border-top: 1px solid #999;
}
@media (min-width: 1024px) {
  #gft .first .unav {
    font-size: 1.4rem;
    border-top: none;
  }
}
#gft .first .unav > li {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
  line-height: 1;
  border-bottom: 1px solid #999;
}
@media (min-width: 1024px) {
  #gft .first .unav > li {
    width: auto;
    border-bottom: none;
  }
}
#gft .first .unav > li {
  /*
  &:after{
  	content: "｜";
  	display: inline-block;
  	vertical-align: middle;
  	margin-left: 8px;
  	@include mq-down(sp) {
  		margin-left: 0px;
  	}
  }

  &:first-child{
  	&:before{
  		content: "｜";
  		display: inline-block;
  		vertical-align: middle;
  		margin-right: 8px;
  		@include mq-down(sp) {
  			margin-right: 0px;
  		}
  	}
  }				*/
}
#gft .first .unav > li a {
  display: inline-block;
  color: #fff;
  padding: 1.6em 0.8em;
}
@media (min-width: 1024px) {
  #gft .first .unav > li a {
    padding: 12px 12px;
  }
}
#gft .first .unav > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 2.4vw;
  height: 2.4vw;
  background: url(../img/common/ft_unav_arr.svg) center 0 no-repeat;
  background-size: contain;
  margin-right: 0.32em;
  line-height: 1;
}
@media (min-width: 1024px) {
  #gft .first .unav > li a:before {
    width: 13px;
    height: 15px;
  }
}
#gft .first .flogo {
  margin: 8% auto 5.6%;
}
@media (min-width: 1024px) {
  #gft .first .flogo {
    margin: 1.6% auto;
  }
}
#gft .first .flogo a {
  display: inline-block;
}
#gft .first .copyright {
  text-align: center;
  font-size: 2.4vw;
  line-height: 1;
  padding: 0.4em 0 0.8em;
}
@media (min-width: 1024px) {
  #gft .first .copyright {
    font-size: 1.4rem;
    padding: 0.4em 0;
  }
}

#gft {
  color: #fff;
  padding: 0;
  position: relative;
  margin: 0 0 0;
}
@media (max-width: 479px) {
  #gft {
    margin: 0 auto;
  }
}
#gft:before {
  display: none;
}
#gft a {
  color: #fff;
}
#gft .first {
  border-top: 4px solid #eb7b2c;
  background: #143377;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(20, 51, 119)), to(rgb(53, 139, 197)));
  background: linear-gradient(180deg, rgb(20, 51, 119) 0%, rgb(53, 139, 197) 100%);
}
/*404*/
#notfound #contents {
  min-height: 100vh;
}

.main_notfound {
  min-height: 600px;
}
.main_notfound .inner {
  padding: 80px 0;
}
@media (max-width: 479px) {
  .main_notfound .inner {
    padding: 40px 0;
  }
}
.main_notfound .inner p {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 479px) {
  .main_notfound .inner p {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}

/*----------------------- content --------------------------*/
#contents {
  width: 100%;
  margin: 0;
  position: relative;
  width: calc(100% - 258px);
  margin-left: 258px;
}
@media screen and (max-height: 680px) {
  #contents {
    width: calc(100% - 258px);
    margin-left: 258px;
  }
}
@media (min-width: 1024px) {
  #contents {
    margin: 0 0 0 258px;
    width: calc(100% - 258px);
  }
}
@media (min-width: 768px) {
  #contents {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 479px) {
  #contents {
    width: 100%;
    margin: 0 auto;
  }
}

main {
  overflow: hidden;
}

#contents .wp-pagenavi {
  clear: both;
  padding: 20px 0px 40px;
  text-align: center;
  line-height: 2;
  font-size: 20px;
  font-weight: bold;
}
#contents .wp-pagenavi a, #contents .wp-pagenavi .current {
  display: inline-block;
  width: 2em;
  height: 2em;
  border-radius: 4px;
  margin: 0px 5px;
  background: #fff;
  vertical-align: middle;
  text-align: center;
}
#contents .wp-pagenavi .current {
  background: #882539;
  color: #fff;
}
#contents .pagenavi {
  clear: both;
  padding: 20px 0px 40px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
#contents .pagenavi a {
  display: inline-block;
  margin: 0px 8px;
  line-height: 46px;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
#contents .pagenavi a[rel=next] {
  width: 46px;
  height: 46px;
  background: url(../img/news/pal.svg) right center no-repeat;
}
#contents .pagenavi a[rel=prev] {
  width: 46px;
  height: 46px;
  background: url(../img/news/par.svg) left center no-repeat;
}
#contents .bnr_conv {
  margin: 34px auto;
  text-align: center;
}
@media (max-width: 479px) {
  #contents .bnr_conv {
    margin: 34px 30px;
  }
}
#contents .bnr_conv .inner {
  text-align: left;
}
#contents .bnr_conv .title {
  margin-top: 1.5em;
  font-size: 2rem;
  font-weight: bold;
}

[data-pc],
[data-tb],
[data-sp] {
  display: none;
}

@media (min-width: 1024px) {
  [data-pc] {
    display: inline-block !important;
  }
}
@media (min-width: 768px) {
  [data-tb] {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  [data-sp] {
    display: inline-block !important;
  }
}
@media (max-width: 479px) {
  .u-sp-hidden {
    display: none;
  }
}
@media (min-width: 1024px) {
  .u-pc-hidden {
    display: none;
  }
}
.u-block {
  display: block;
}

.u-inline {
  display: inline;
}

.u-inline-block {
  display: inline-block;
}

.u-hidden {
  display: none;
}

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

.u-flex-center {
  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;
}

.u-flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ker {
  letter-spacing: -0.4em;
}

.ker_ten {
  letter-spacing: -0.2em;
  margin-left: -0.2em;
}

.u-w100 {
  width: 100%;
}

.u-w50 {
  width: 50%;
}

.u-w33 {
  width: 33.333%;
}

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

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

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

.u-bold {
  font-weight: bold;
}

.u-nowrap {
  white-space: nowrap;
}

.u-mt0 {
  margin-top: 0;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-mr10 {
  margin-right: 10px;
}

/* page */
body .dl_table > li {
  display: table;
}
body .dl_table > li dl {
  display: table-row;
}
body .dl_table > li dl dt, body .dl_table > li dl dd {
  display: table-cell;
}
body .pagetitle {
  position: relative;
  width: 100vw;
  height: 20vw;
  max-height: 280px;
  background: url(../img/common/mv.jpg) center center/cover no-repeat #882539;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 479px) {
  body .pagetitle {
    height: 40vw;
  }
}
@media (min-width: 1024px) {
  body .pagetitle .wrap {
    position: relative;
  }
}
@media (min-width: 768px) {
  body .pagetitle .wrap {
    width: 90%;
  }
}
body .pagetitle .heading {
  text-align: center;
  line-height: 1;
  color: #333;
  background-color: rgba(255, 255, 255, 0.88);
  padding: 0.4em 0;
}
@media (min-width: 1024px) {
  body .pagetitle .heading {
    padding: 3.2em 0;
  }
}
body .pagetitle .heading h1.tit {
  font-size: 3.2vw;
  letter-spacing: 0.04em;
  position: relative;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 1024px) {
  body .pagetitle .heading h1.tit {
    font-size: 1.6rem;
  }
}
body .pagetitle .heading h1.tit:before {
  text-transform: uppercase;
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-size: 5.6vw;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 600;
  margin-bottom: 0.12em;
}
@media (min-width: 1024px) {
  body .pagetitle .heading h1.tit:before {
    font-size: 3.2rem;
    margin-bottom: 0.16em;
  }
}
@media (max-width: 479px) {
  body .pagetitle .heading h1.tit:before {
    font-size: 8vw;
    right: -130px;
  }
}
body .pagetitle .pan {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.8em 0;
  position: absolute;
  top: -2.6em;
  left: 0;
}
body .pagetitle .pan a {
  color: #fff;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body .pagetitle .pan a:hover {
  opacity: 0.56;
}
body {
  /* 記事一覧 */
}
body .ul_topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2.4vw 0;
}
@media (min-width: 1024px) {
  body .ul_topics {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    gap: 3%;
  }
}
body .ul_topics > li {
  width: 100%;
  margin-bottom: 3.2%;
}
@media (min-width: 1024px) {
  body .ul_topics > li {
    width: 30%;
    margin: 0 0 4%;
  }
}
body .ul_topics > li a {
  display: block;
  position: relative;
  padding-bottom: 3.2%;
  border-bottom: solid 4px #ddd;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  body .ul_topics > li a {
    border-bottom: solid 2px #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
body .ul_topics > li a:hover {
  border-bottom: solid 4px #882539;
}
@media (max-width: 479px) {
  body .ul_topics > li a:hover {
    border-bottom: solid 2px #882539;
  }
}
body .ul_topics > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  background: url(../img/common/a_arr.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 8px;
  bottom: 8px;
}
@media (max-width: 479px) {
  body .ul_topics > li a:before {
    right: 4px;
    bottom: 4px;
  }
}
body .ul_topics > li a .tmb {
  width: 32%;
  height: 16vw;
  max-height: 240px;
  position: relative;
}
@media (min-width: 1024px) {
  body .ul_topics > li a .tmb {
    width: 100%;
    height: 26vw;
  }
}
body .ul_topics > li a .tmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body .ul_topics > li a .txt {
  width: 64%;
}
@media (min-width: 1024px) {
  body .ul_topics > li a .txt {
    width: 100%;
  }
}
body .ul_topics > li a .txt .heading > .tit {
  min-height: 3.4em;
  font-size: 2.6vw;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  body .ul_topics > li a .txt .heading > .tit {
    font-size: 1.6rem;
    font-weight: bold;
  }
}
body .ul_topics > li a .txt .date {
  padding: 0.64rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  body .ul_topics > li a .txt .date {
    padding: 1.2rem 0;
  }
}
body .ul_topics > li a .txt .date .cat {
  font-size: 2.4vw;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (min-width: 1024px) {
  body .ul_topics > li a .txt .date .cat {
    letter-spacing: 0.08em;
    font-size: 1.2rem;
  }
}
body .ul_topics > li a .txt .date .update {
  font-size: 2.2vw;
  line-height: 1;
  color: #666;
}
@media (min-width: 1024px) {
  body .ul_topics > li a .txt .date .update {
    font-size: 1.2rem;
  }
}

/*
全体の流れ デザインパターン
*/
/*-----------------------------------------------------------
   works
-----------------------------------------------------------*/
#works main .works {
  padding: 8% 0 0;
}
@media (min-width: 1024px) {
  #works main .works {
    padding: 4% 0;
  }
}
#works .works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 479px) {
  #works .works_list {
    display: block;
    margin: 0;
  }
}
#works .works_list > li {
  width: 100%;
  margin: 0 0 4% 0;
}
@media (min-width: 1024px) {
  #works .works_list > li {
    width: 30%;
    min-width: 320px;
    margin: 0;
  }
}
#works .works_list > li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1024px) {
  #works .works_list > li a {
    display: block;
  }
}
#works .works_list > li .tmb {
  width: 40%;
}
@media (min-width: 1024px) {
  #works .works_list > li .tmb {
    width: auto;
  }
}
#works .works_list > li .tmb img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works_list > li .date {
  width: 55%;
}
@media (min-width: 1024px) {
  #works .works_list > li .date {
    width: auto;
  }
}
#works .works_list > li .date .heading {
  padding: 2.4% 0;
  border-bottom: 1px solid #882539;
}
@media (min-width: 768px) {
  #works .works_list > li .date .heading {
    padding: 4% 0;
  }
}
@media (max-width: 479px) {
  #works .works_list > li .date .heading {
    padding: 0;
  }
}
#works .works_list > li .date .heading .gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#works .works_list > li .date .heading .cat {
  color: #be781b;
  font-size: 2.2vw;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  #works .works_list > li .date .heading .cat {
    font-size: 1.4rem;
  }
}
#works .works_list > li .date .heading .update {
  font-size: 2.2vw;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  #works .works_list > li .date .heading .update {
    font-size: 1rem;
  }
}
#works .works_list > li .date .heading .title {
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  #works .works_list > li .date .heading .title {
    font-size: 2rem;
  }
}
#works .works_list > li .desc {
  font-size: 2.4vw;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 2.4% 0;
}
@media (min-width: 1024px) {
  #works .works_list > li .desc {
    font-size: 1.4rem;
  }
}
#works .work_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4% 0;
  margin-bottom: 4%;
}
@media (min-width: 1024px) {
  #works .work_detail {
    margin-bottom: 8%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#works .work_detail .photo_blk {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 1024px) {
  #works .work_detail .photo_blk {
    width: 66%;
    max-width: 660px;
  }
}
@media (max-width: 479px) {
  #works .work_detail .photo_blk {
    width: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 4vw;
  }
}
#works .work_detail .photo_blk .mainimg img {
  width: 100%;
}
@media (min-width: 768px) {
  #works .work_detail .photo_blk .mainimg img {
    height: auto;
  }
}
#works .work_detail .photo_blk .photo_list {
  margin-top: 24px;
  margin-bottom: -4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1024px) {
  #works .work_detail .photo_blk .photo_list {
    min-height: 440px;
  }
}
@media (max-width: 479px) {
  #works .work_detail .photo_blk .photo_list {
    margin-top: 4%;
    margin-bottom: 4%;
  }
}
#works .work_detail .photo_blk .photo_list > li {
  width: 48%;
  margin-bottom: 4%;
}
@media (min-width: 1024px) {
  #works .work_detail .photo_blk .photo_list > li {
    min-width: 300px;
  }
}
@media (max-width: 479px) {
  #works .work_detail .photo_blk .photo_list > li {
    margin-bottom: 4%;
  }
}
#works .work_detail .photo_blk .photo_list > li a {
  display: block;
}
#works .work_detail .photo_blk .photo_list > li img {
  width: 100%;
}
@media (min-width: 768px) {
  #works .work_detail .photo_blk .photo_list > li img {
    height: auto;
  }
}
#works .work_detail .photo_blk .photo_list > li .cap {
  font-size: 3.2vw;
  padding: 4% 2%;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  #works .work_detail .photo_blk .photo_list > li .cap {
    font-size: 1.4rem;
    padding: 2% 2%;
  }
}
#works .work_detail .date_area {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
@media (min-width: 1024px) {
  #works .work_detail .date_area {
    width: 30%;
    max-width: 320px;
    margin-right: 4%;
  }
}
@media (max-width: 479px) {
  #works .work_detail .date_area {
    width: auto;
    margin-right: 0;
  }
}
#works .work_detail .date_area .date_blk .heading {
  padding: 2%;
  margin-bottom: 2%;
  border-bottom: 1px solid #882539;
}
#works .work_detail .date_area .date_blk .heading .area {
  font-size: 1.6rem;
  color: #be781b;
}
@media (min-width: 768px) {
  #works .work_detail .date_area .date_blk .heading .area {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #works .work_detail .date_area .date_blk .heading .area {
    font-size: 3.6vw;
  }
}
#works .work_detail .date_area .date_blk .heading .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #474647;
}
@media (min-width: 768px) {
  #works .work_detail .date_area .date_blk .heading .title {
    font-size: 2rem;
  }
}
@media (max-width: 479px) {
  #works .work_detail .date_area .date_blk .heading .title {
    font-size: 5.2vw;
  }
}
#works .work_detail .date_area .date_blk .desc_area {
  padding: 2%;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  #works .work_detail .date_area .date_blk .desc_area {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #works .work_detail .date_area .date_blk .desc_area {
    font-size: 3.6vw;
  }
}
#works .work_detail .date_area .date_blk .spec {
  font-size: 1.6rem;
  padding: 2%;
}
@media (min-width: 768px) {
  #works .work_detail .date_area .date_blk .spec {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #works .work_detail .date_area .date_blk .spec {
    font-size: 3.6vw;
  }
}
#works .work_detail .date_area .date_blk .spec > li {
  padding: 0.4em 0;
}
#works .work_detail .date_area .date_blk .spec > li dl dt {
  width: 5em;
}
.dl_table > li {
  display: table;
}
.dl_table > li dl {
  display: table-row;
}
.dl_table > li dl dt, .dl_table > li dl dd {
  display: table-cell;
}

/*-----------------------------------------------------------
   asct 特定商取引法
-----------------------------------------------------------*/
#asct .pagetitle .heading h1.tit:before {
  font-size: 5.6vw;
}
@media (min-width: 1024px) {
  #asct .pagetitle .heading h1.tit:before {
    font-size: 3.2rem;
  }
}
@media (max-width: 479px) {
  #asct .pagetitle .heading h1.tit:before {
    font-size: 6.4vw;
  }
}
#asct #lead {
  padding: 4% 0;
}
@media (min-width: 1024px) {
  #asct #lead {
    padding: 8% 0;
  }
}
#asct table.table_std {
  width: 100%;
  font-size: 1.6rem;
}
@media (max-width: 479px) {
  #asct table.table_std {
    font-size: 2.8vw;
  }
}
#asct table.table_std th, #asct table.table_std td {
  padding: 1.25em 1em;
  border: 1px solid #999;
  font-weight: 400;
}
@media (min-width: 768px) {
  #asct table.table_std th, #asct table.table_std td {
    padding: 0.8em 0em;
  }
}
#asct table.table_std th {
  width: 16em;
  border-left: none;
  border-right: none;
  vertical-align: top;
}
@media (min-width: 1024px) {
  #asct table.table_std th {
    padding-left: 0.8em;
  }
}
@media (min-width: 768px) {
  #asct table.table_std th {
    width: 10em;
  }
}
#asct table.table_std td {
  border-left: none;
  border-right: none;
}
#asct table.table_std td .ul_officer > li {
  position: relative;
  margin-bottom: 1em;
}
#asct table.table_std td .ul_officer > li:last-child {
  margin-bottom: 0em;
}
#asct table.table_std td .ul_officer > li b {
  font-weight: 400;
  color: #882539;
}
#asct table.table_std td .ul_officer > li span {
  position: absolute;
  left: 10em;
}
#asct table.table_std td .ul_group > li {
  margin-bottom: 0.8em;
}
#asct table.table_std td .ul_group > li a {
  color: #08f;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
#asct table.table_std td .ul_group > li a:hover {
  color: #333;
}
#asct table.table_std td .ul_group > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 8px;
  background: url(../img/company/icn_linkarr.svg) center center no-repeat;
  background-size: contain;
  margin-right: 6px;
}
@media (min-width: 768px) {
  #asct table.table_std td .ul_group > li a:before {
    width: 10px;
    height: 12px;
    margin-right: 8px;
  }
}
#asct table.table_std td .ul_group > li:last-child {
  margin-bottom: 0;
}

/*-----------------------------------------------------------
   faq
-----------------------------------------------------------*/
#faq .intro {
  text-align: center;
  line-height: 1.8;
  padding-top: 1.8em;
  margin-bottom: 1.8em;
}
@media (min-width: 1024px) {
  #faq .intro {
    font-size: 1.8rem;
  }
}
#faq summary::-webkit-details-marker {
  display: none;
}
#faq .li_faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0;
}
#faq .li_faq > li {
  padding: 0;
  margin-bottom: 4%;
  border-radius: 2.4em;
  -webkit-box-shadow: 0 1px 2px rgba(42, 57, 122, 0.05), 0 4px 8px rgba(42, 57, 122, 0.1);
          box-shadow: 0 1px 2px rgba(42, 57, 122, 0.05), 0 4px 8px rgba(42, 57, 122, 0.1);
}
@media (max-width: 479px) {
  #faq .li_faq > li {
    width: 100%;
    min-height: inherit;
    margin-bottom: 8%;
  }
}
#faq .li_faq > li > .q {
  padding: 0;
}
@media (max-width: 479px) {
  #faq .li_faq > li > .q {
    padding: 0;
  }
}
#faq .li_faq > li > .q .tit_q {
  font-size: 2.4rem;
  line-height: 1;
  padding: 12px 32px 12px 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  color: #be781b;
}
@media (min-width: 768px) {
  #faq .li_faq > li > .q .tit_q {
    font-size: 2.2rem;
    padding: 12px 32px 12px 88px;
    line-height: 1.2;
  }
}
#faq .li_faq > li > .q .tit_q:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 35px;
  height: 32px;
  background-image: url(../img/faq/icn_q.svg);
  background-repeat: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 479px) {
  #faq .li_faq > li > .q .tit_q:before {
    width: 24px;
    height: 40px;
    left: 0px;
    top: -4px;
    margin-right: 0;
  }
}
#faq .li_faq > li > .q .tit_q:after {
  content: "-";
  display: inline-block;
  vertical-align: bottom;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
#faq .li_faq > li .close .tit_q:after {
  content: "+";
}
#faq .li_faq > li > .a .box_a {
  padding: 0 0 0 48px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#faq .li_faq > li > .a ul, #faq .li_faq > li > .a ol {
  font-size: 2.3rem;
  line-height: 1.8;
}
#faq .li_faq > li > .a ul.att li, #faq .li_faq > li > .a ol.att li {
  text-indent: -1em;
  padding-left: 1em;
}
#faq .li_faq > li > .a p {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #faq .li_faq > li > .a p {
    font-size: 2rem;
  }
}
#faq .txt_conv {
  text-align: center;
  font-size: 2.4rem;
  color: #be781b;
  padding: 8% 0;
}
#faq .li_faq2 {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0;
}
#faq .li_faq2 > li {
  padding: 0;
  margin-bottom: 4%;
  border-radius: 16px;
  -webkit-box-shadow: 0 1px 2px rgba(42, 57, 122, 0.05), 0 4px 8px rgba(42, 57, 122, 0.1);
          box-shadow: 0 1px 2px rgba(42, 57, 122, 0.05), 0 4px 8px rgba(42, 57, 122, 0.1);
}
@media (max-width: 479px) {
  #faq .li_faq2 > li {
    width: 100%;
    min-height: inherit;
    margin-bottom: 8%;
  }
}
#faq .li_faq2 > li details[open] .q {
  background: rgba(42, 53, 80, 0.04);
  border-radius: 16px 16px 0 0;
}
#faq .li_faq2 > li details > .q {
  cursor: pointer;
  padding: 0;
  list-style: none;
  position: relative;
}
@media (max-width: 479px) {
  #faq .li_faq2 > li details > .q {
    padding: 0;
  }
}
#faq .li_faq2 > li details > .q:after {
  color: #000;
  content: "-";
  display: inline-block;
  vertical-align: bottom;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
#faq .li_faq2 > li details > .q .tit_q {
  font-size: 2rem;
  line-height: 1;
  padding: 0.8em 2em 0.8em 3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  #faq .li_faq2 > li details > .q .tit_q {
    font-size: 2.2rem;
    padding: 0.8em 4rem 0.8em 7.4rem;
    line-height: 1.2;
  }
}
#faq .li_faq2 > li details > .q .tit_q:before {
  content: "Q";
  font-family: "Oswald", sans-serif;
  display: inline-block;
  position: absolute;
  font-size: 3.2rem;
  left: 28px;
  top: 0.4em;
  line-height: 1;
  text-align: center;
}
@media (max-width: 479px) {
  #faq .li_faq2 > li details > .q .tit_q:before {
    width: 24px;
    height: 40px;
    left: 0px;
    top: -4px;
    margin-right: 0;
  }
}
#faq .li_faq2 > li details[open] .q:after {
  content: "+";
}
#faq .li_faq2 > li details[open] > .a .box_a {
  padding: 0.8em 2em 0.8em 7.4rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#faq .li_faq2 > li details[open] > .a .box_a:before {
  content: "A";
  color: #be781b;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  font-size: 3.2rem;
  left: 28px;
  top: 0.4em;
  line-height: 1;
  text-align: center;
}
@media (max-width: 479px) {
  #faq .li_faq2 > li details[open] > .a .box_a:before {
    width: 24px;
    height: 40px;
    left: 0px;
    top: -4px;
    margin-right: 0;
  }
}
#faq .li_faq2 > li details[open] > .a ul, #faq .li_faq2 > li details[open] > .a ol {
  font-size: 2.3rem;
  line-height: 1.8;
}
#faq .li_faq2 > li details[open] > .a ul.att li, #faq .li_faq2 > li details[open] > .a ol.att li {
  text-indent: -1em;
  padding-left: 1em;
}
#faq .li_faq2 > li details[open] > .a p {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #faq .li_faq2 > li details[open] > .a p {
    font-size: 2rem;
  }
}

/*-----------------------------------------------------------
	 flow
-----------------------------------------------------------*/
.flow {
  padding-top: 8%;
  margin-bottom: 8.4%;
}
@media (min-width: 1024px) {
  .flow {
    padding-top: 4%;
    margin-bottom: 8%;
  }
}
.flow .tit_sec {
  font-size: 4.4vw;
  line-height: 1.4;
  margin-bottom: 4%;
  position: relative;
  padding: 0.08em 0.16em 0.16em 0.64em;
  color: #882539;
  border: 0 solid #fff;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .flow .tit_sec {
    line-height: 1;
    font-size: 3.2rem;
    padding: 0.2em 0.2em 0.32em 0.8em;
    margin-bottom: 1.6%;
  }
}
.flow .tit_sec:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#882539), color-stop(50%, #882539), color-stop(50%, #ddd), to(#ddd));
  background-image: linear-gradient(-180deg, #882539, #882539 50%, #ddd 50%, #ddd);
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .flow .tit_sec:before {
    width: 8px;
  }
}
.main_flow .intro {
  text-align: center;
  line-height: 1.8;
  padding-top: 1.8em;
  margin-bottom: 1.8em;
}
@media (min-width: 1024px) {
  .main_flow .intro {
    font-size: 1.8rem;
  }
}

/*
全体の流れ 構造
*/
.ol_flow_std01 {
  counter-reset: number 0;
}
.ol_flow_std01 > li {
  margin-bottom: 8%;
}
@media (min-width: 1024px) {
  .ol_flow_std01 > li {
    margin-bottom: 4%;
  }
}
.ol_flow_std01 > li .lo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ol_flow_std01 > li .lo .txt {
  width: 64%;
  font-size: 2.6vw;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .ol_flow_std01 > li .lo .txt {
    width: 60%;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.ol_flow_std01 > li .lo .txt .tit {
  padding: 0.4em 0.4em 0.4em 4em;
  border: solid 2px #882539;
  position: relative;
  overflow: hidden;
  font-size: 2.8vw;
  margin-bottom: 1.6vw;
}
@media (min-width: 1024px) {
  .ol_flow_std01 > li .lo .txt .tit {
    padding: 1rem 2rem 1rem 100px;
    font-size: 2.4rem;
    margin-bottom: 0.64em;
  }
}
.ol_flow_std01 > li .lo .txt .tit:before {
  font-family: "Oswald", sans-serif;
  counter-increment: number 1;
  content: "0" counter(number);
  color: #fff;
  position: absolute;
  left: 0.24em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  font-size: 4.6vw;
  line-height: 1;
}
@media (min-width: 1024px) {
  .ol_flow_std01 > li .lo .txt .tit:before {
    font-size: 4rem;
  }
}
.ol_flow_std01 > li .lo .txt .tit:after {
  position: absolute;
  content: "";
  top: -100%;
  left: -36px;
  width: 84px;
  height: 240%;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  background: #882539;
}
@media (min-width: 1024px) {
  .ol_flow_std01 > li .lo .txt .tit:after {
    top: -150%;
    left: -56px;
    width: 140px;
    height: 300%;
  }
}
.ol_flow_std01 > li .lo .tmb {
  width: 34%;
}
@media (min-width: 1024px) {
  .ol_flow_std01 > li .lo .tmb {
    width: 36%;
  }
}
.ol_flow_std01 > li .lo .tmb img {
  width: 100%;
}
/*-----------------------------------------------------------
   profile
-----------------------------------------------------------*/
/*-----------------------------------------------------------
   process
-----------------------------------------------------------*/
/*-----------------------------------------------------------
   service
-----------------------------------------------------------*/
/*-----------------------------------------------------------
   shop
-----------------------------------------------------------*/
#shop #lead {
  margin: -1.6% auto 4%;
}
#shop #lead .txt_line {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #shop #lead .txt_line {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #shop #lead .txt_line {
    font-size: 3.6vw;
  }
}
#shop #lead .lo1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 4% auto 8%;
}
@media (max-width: 479px) {
  #shop #lead .lo1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#shop #lead .lo1 .tmb {
  width: 38%;
}
@media (max-width: 479px) {
  #shop #lead .lo1 .tmb {
    width: auto;
    margin-bottom: 8%;
  }
}
#shop #lead .lo1 .tmb img {
  width: 100%;
}
#shop #lead .lo1 .txt {
  width: 58%;
}
@media (max-width: 479px) {
  #shop #lead .lo1 .txt {
    width: auto;
  }
}
#shop #lead .lo1 .txt .tit {
  font-size: 2.1rem;
  color: #be781b;
  line-height: 1.2;
  border-bottom: 1px solid #882539;
  padding: 0.8% 0.2% 1.6%;
  margin-bottom: 1.6%;
}
@media (min-width: 768px) {
  #shop #lead .lo1 .txt .tit {
    font-size: 1.8rem;
  }
}
@media (max-width: 479px) {
  #shop #lead .lo1 .txt .tit {
    font-size: 4.2vw;
  }
}
#shop #lead .lo1 .txt .txt_line {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  #shop #lead .lo1 .txt .txt_line {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #shop #lead .lo1 .txt .txt_line {
    font-size: 3.6vw;
  }
}
#shop #lead .lo1 .txt .txt_line p {
  margin-bottom: 1.2em;
}
#shop #lead .lo1 .txt .txt_line p:last-child {
  margin-bottom: 0;
}
@media (max-width: 479px) {
  #shop .anker {
    width: 100%;
    overflow: scroll;
  }
}
#shop .anker .ul_anker {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
}
@media (min-width: 768px) {
  #shop .anker .ul_anker {
    height: 42px;
  }
}
@media (max-width: 479px) {
  #shop .anker .ul_anker {
    width: 1080px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#shop .anker .ul_anker > li {
  width: 24%;
  max-width: 240px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #000;
  text-align: center;
  margin-right: 3.2%;
}
@media (min-width: 768px) {
  #shop .anker .ul_anker > li {
    width: 28%;
    font-size: 1.32rem;
    letter-spacing: 0em;
  }
}
@media (max-width: 479px) {
  #shop .anker .ul_anker > li {
    width: 32%;
    font-size: 3.6vw;
    font-weight: 400;
    margin-right: 2%;
  }
}
#shop .anker .ul_anker > li:last-child {
  margin-right: 0;
}
#shop .anker .ul_anker > li a {
  width: 100%;
  height: 48px;
  color: #882539;
  background-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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  #shop .anker .ul_anker > li a {
    height: 40px;
  }
}
#shop .anker .ul_anker > li a:hover {
  background-color: #882539;
  color: #fff;
}
#shop .anker .ul_anker > li a.is-active {
  background-color: #882539;
  color: #fff;
}
#shop .anker .ul_anker > li.active a {
  color: #882539;
}
#shop .is-active {
  display: block; /*表示*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#shop .tab-container .ssec_data {
  display: none;
  opacity: 0;
}
#shop .tab-container .ssec_data.is-active {
  opacity: 1;
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.shop_list {
  margin: 0 auto;
  padding: 8% 0;
}
@media (min-width: 1024px) {
  .shop_list {
    padding: 4% 0;
  }
}
.shop_list .ul_shoplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.shop_list .ul_shoplist > li {
  width: 32.2%;
  background-color: #F8F8F8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.4%;
  margin-bottom: 1.2%;
}
@media (max-width: 479px) {
  .shop_list .ul_shoplist > li {
    width: 49%;
    padding: 4%;
    margin-bottom: 2%;
  }
}
.shop_list .ul_shoplist > li a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop_list .ul_shoplist > li a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop_list .ul_shoplist > li a:hover img {
  opacity: 0.56;
}
.shop_list .ul_shoplist > li .thum {
  width: 100%;
  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;
}
.shop_list .ul_shoplist > li .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop_list .ul_shoplist > li .cap {
  padding: 4% 0 0;
}
.shop_list .ul_shoplist > li .cap .tit {
  font-size: 1.6rem;
  margin-bottom: 2.4%;
}
@media (max-width: 479px) {
  .shop_list .ul_shoplist > li .cap .tit {
    font-size: 3.4vw;
  }
}
.shop_list .ul_shoplist > li .cap .gr_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop_list .ul_shoplist > li .cap .txt_sale {
  color: #900;
  font-weight: 600;
  font-size: 1.4rem;
}
@media (max-width: 479px) {
  .shop_list .ul_shoplist > li .cap .txt_sale {
    font-size: 3.4vw;
  }
}
.shop_list .ul_shoplist > li .cap .txt_price {
  font-size: 1.4rem;
}
@media (max-width: 479px) {
  .shop_list .ul_shoplist > li .cap .txt_price {
    font-size: 3.4vw;
  }
}
.shop_list .ul_shoplist > li .cap .txt_price b {
  font-family: arial;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (max-width: 479px) {
  .shop_list .ul_shoplist > li .cap .txt_price b {
    font-size: 3.8vw;
  }
}

.shop_detail {
  margin: 0 auto;
  padding: 8% 0;
}
@media (min-width: 1024px) {
  .shop_detail {
    padding: 4% 0;
  }
}
.shop_detail a.btn01 {
  width: 100%;
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  background-color: #882539;
  border-radius: 50px;
  padding: 0.8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .shop_detail a.btn01 {
    font-size: 1.6rem;
    padding: 0.6em;
  }
}
@media (max-width: 479px) {
  .shop_detail a.btn01 {
    font-size: 4vw;
    padding: 0.4em;
  }
}
.shop_detail a.btn01:hover {
  background-color: #be781b;
}
.shop_detail .btn_off {
  width: 100%;
  display: block;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  background-color: #999;
  border-radius: 50px;
  padding: 0.8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .shop_detail .btn_off {
    font-size: 1.6rem;
    padding: 0.6em;
  }
}
@media (max-width: 479px) {
  .shop_detail .btn_off {
    width: 72%;
    font-size: 4vw;
  }
}
.shop_detail > .first {
  max-width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto 4%;
}
@media (min-width: 768px) {
  .shop_detail > .first {
    margin: 0 50px 4%;
    max-width: inherit;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 479px) {
  .shop_detail > .first {
    margin: 0 5vw 8vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.shop_detail > .first > .gr_thum {
  width: 54%;
  max-width: 583px;
}
@media (max-width: 479px) {
  .shop_detail > .first > .gr_thum {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.shop_detail > .first > .gr_thum .carousel {
  margin-top: 2.5%;
}
.shop_detail > .first > .gr_thum .carousel .slides {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shop_detail > .first > .gr_thum .carousel .slides > li {
  width: 10%;
  margin-right: 2%;
}
.shop_detail > .first > .gr_thum .carousel .slides > li:last-child {
  margin-right: 0;
}
.shop_detail > .first > .gr_thum .carousel .slides > li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop_detail > .first > .gr_txt {
  width: 44%;
  max-width: 440px;
}
@media (max-width: 479px) {
  .shop_detail > .first > .gr_txt {
    width: 100%;
  }
}
.shop_detail > .first > .gr_txt .heading {
  text-align: center;
  margin-bottom: 0.8em;
}
@media (min-width: 768px) {
  .shop_detail > .first > .gr_txt .heading {
    margin-bottom: 0.4em;
  }
}
.shop_detail > .first > .gr_txt .heading .title {
  letter-spacing: 0.08em;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 2.8em;
}
@media (min-width: 768px) {
  .shop_detail > .first > .gr_txt .heading .title {
    min-height: 2.4em;
    font-size: 2rem;
  }
}
.shop_detail > .first > .gr_txt .txt_size {
  letter-spacing: 0.04em;
  font-size: 1.8rem;
  text-align: center;
}
@media (min-width: 768px) {
  .shop_detail > .first > .gr_txt .txt_size {
    font-size: 1.4rem;
  }
}
.shop_detail > .first > .gr_txt .txt_price {
  font-size: 1.6rem;
  color: #888;
  line-height: 1.8;
  margin: 0.8em auto;
  text-align: center;
}
@media (min-width: 768px) {
  .shop_detail > .first > .gr_txt .txt_price {
    font-size: 1.2rem;
  }
}
.shop_detail > .first > .gr_txt .txt_price b {
  color: #333;
  font-size: 2.8rem;
  font-family: arial;
  margin-left: 0.4em;
}
@media (min-width: 768px) {
  .shop_detail > .first > .gr_txt .txt_price b {
    font-size: 2.4rem;
  }
}
.shop_detail > .first > .gr_txt .gr_btn .txt_etc {
  margin-top: 0.4em;
  font-size: 1.4rem;
  text-align: center;
}
.shop_detail > .first > .gr_txt .gr_btn .txt_etc a {
  color: #882539;
  text-decoration: underline;
}
.shop_detail > .first > .gr_txt .box_date {
  margin-top: 6.4%;
  min-height: 300px;
  border: 4px solid #f2f2f2;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8em 1.2em;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .shop_detail > .first > .gr_txt .box_date {
    font-size: 1.32rem;
    min-height: 200px;
    padding: 0.6em 0.8em;
  }
}
.shop_detail > .first > .gr_txt .box_date .ul_spec > li > dl {
  display: table;
  margin: 0.4em 0;
}
.shop_detail > .first > .gr_txt .box_date .ul_spec > li > dl > dt, .shop_detail > .first > .gr_txt .box_date .ul_spec > li > dl > dd {
  display: table-cell;
  color: #555;
}
.shop_detail > .first > .gr_txt .box_date .ul_spec > li > dl > dt {
  width: 8em;
  color: #000;
  font-weight: 600;
}
.shop_detail > .first > .gr_txt .box_date .ul_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.shop_detail > .first > .gr_txt .box_date .ul_tags > li {
  margin-right: 0.4em;
}
.shop_detail > .first > .gr_txt .box_date .ul_tags > li a {
  color: #882539;
  text-decoration: underline;
}
.shop_detail > .first > .gr_txt .box_date .ul_tags > li a:hover {
  text-decoration: none;
}
.shop_detail > .first > .gr_txt .ul_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4% -2.4% 0;
}
.shop_detail > .first > .gr_txt .ul_sns > li {
  margin: 0 2.4%;
  width: 40px;
}
.shop_detail > .first > .gr_txt .ul_sns > li img {
  width: 100%;
  height: 100%;
}
.shop_detail > .second {
  background-color: #f2f2f2;
  padding: 4% 0;
}
.shop_detail > .second .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 479px) {
  .shop_detail > .second .wrap {
    margin: 0 5vw 8vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.shop_detail > .second .gr_desc {
  width: 62%;
  max-width: 720px;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc {
    width: 64%;
  }
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_desc {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.shop_detail > .second .gr_desc .tab-contens {
  background-color: #fff;
  height: 630px;
  padding: 1.6em;
  overflow: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .tab-contens {
    padding: 1.2em;
    height: 420px;
  }
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_desc .tab-contens {
    padding: 0.4em 0.8em;
    height: auto;
  }
}
.shop_detail > .second .gr_desc .tab-contens .tab_desc p {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .tab-contens .tab_desc p {
    font-size: 1.32rem;
  }
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_method {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_method {
    font-size: 1.32rem;
  }
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment table.table_method {
  width: 100%;
  border: 1px solid #f2f2f2;
  margin: 0.8em auto;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment table.table_method th, .shop_detail > .second .gr_desc .tab-contens .tab_payment table.table_method td {
  width: 33%;
  padding: 0.4em;
  text-align: center;
  border: 1px solid #f2f2f2;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment table.table_method th {
  font-weight: 400;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .txt_merit {
  color: #f48047;
  font-weight: 600;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .box_att {
  border: 1px solid #f2f2f2;
  padding: 0.8em;
  margin: 0.8em auto;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_payment {
  border-bottom: 2px solid #f2f2f2;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_payment > .tit {
  font-weight: 600;
  margin-bottom: 1.6%;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_payment .ul_method {
  margin: 0 auto 1.6%;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_ship {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #f2f2f2;
  padding: 2.4% 0;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_ship .blk {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_ship .blk .tit {
  width: 8em;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_delivery {
  padding: 2.4% 0;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_estimated {
  padding: 0 0 2.4%;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_estimated .blk {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shop_detail > .second .gr_desc .tab-contens .tab_payment .gr_estimated .blk .tit {
  width: 8em;
}
.shop_detail > .second .gr_desc .tab-contens .tab_option p {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .tab-contens .tab_option p {
    font-size: 1.32rem;
  }
}
.shop_detail > .second .gr_desc .blk_buy {
  min-height: 100px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 2px;
  padding: 0.8em 1.6em;
  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;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .blk_buy {
    padding: 0.6em 1.2em;
    min-height: 68px;
  }
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_desc .blk_buy {
    padding: 0.4em 0.6em;
  }
}
.shop_detail > .second .gr_desc .blk_buy .txt_price {
  font-size: 1.6rem;
  color: #888;
  line-height: 1;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .blk_buy .txt_price {
    font-size: 1.32rem;
  }
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_desc .blk_buy .txt_price {
    font-size: 3.4vw;
  }
}
.shop_detail > .second .gr_desc .blk_buy .txt_price b {
  color: #333;
  font-size: 2.8rem;
  font-family: arial;
  margin-left: 0.4em;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .blk_buy .txt_price b {
    font-size: 2.2rem;
    margin-left: 0.2em;
  }
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_desc .blk_buy .txt_price b {
    font-size: 5.6vw;
  }
}
.shop_detail > .second .gr_desc .blk_buy .txt_zaiko {
  font-size: 1.8rem;
  color: #888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .blk_buy .txt_zaiko {
    font-size: 1.32rem;
  }
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_desc .blk_buy .txt_zaiko {
    font-size: 3.4vw;
  }
}
.shop_detail > .second .gr_desc .blk_buy a.btn,
.shop_detail > .second .gr_desc .blk_buy .btn_off {
  margin-left: 0.4em;
  width: 240px;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_desc .blk_buy a.btn,
  .shop_detail > .second .gr_desc .blk_buy .btn_off {
    width: 140px;
    letter-spacing: 0;
  }
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_desc .blk_buy a.btn,
  .shop_detail > .second .gr_desc .blk_buy .btn_off {
    width: 100px;
    letter-spacing: 0;
  }
}
.shop_detail > .second .gr_etc {
  width: 32%;
  max-width: 320px;
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_etc {
    width: 100%;
    max-width: inherit;
  }
}
.shop_detail > .second .gr_etc .etc_thum .heading,
.shop_detail > .second .gr_etc .etc_thum .conts {
  background-color: #fff;
}
.shop_detail > .second .gr_etc .etc_thum .heading {
  height: 48px;
  border-radius: 8px 8px 0 0;
  padding: 0 1.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.8rem;
  line-height: 1;
  color: #797a7a;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .shop_detail > .second .gr_etc .etc_thum .heading {
    height: 40px;
    padding: 0 1.2em;
  }
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_etc .etc_thum .heading {
    font-size: 3.6vw;
  }
}
.shop_detail > .second .gr_etc .etc_thum .conts .ul_etc_tmb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 10px 0;
}
.shop_detail > .second .gr_etc .etc_thum .conts .ul_etc_tmb > li {
  width: calc(50% - 5px);
  margin-bottom: 10px;
}
@media (max-width: 479px) {
  .shop_detail > .second .gr_etc .etc_thum .conts .ul_etc_tmb > li {
    width: calc(25% - 5px);
  }
}
.shop_detail > .second .gr_etc .etc_thum .conts .ul_etc_tmb > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop_detail > .second .gr_etc .etc_thum .conts .ul_etc_tmb > li a:hover {
  opacity: 0.56;
}
.shop_detail > .second .gr_etc .etc_thum .conts .ul_etc_tmb > li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop_detail > .second .gr_etc .bnr {
  margin-top: 2px;
}
.shop_detail > .second .gr_etc .bnr img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop_detail > .second .gr_etc .bnr a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop_detail > .second .gr_etc .bnr a:hover {
  opacity: 0.56;
}
.shop_detail .swiper #slider {
  margin-bottom: 16px;
}
.shop_detail .swiper #slider .swiper-slide img {
  width: 100%;
}
.shop_detail .swiper #thumbs .swiper-slide {
  opacity: 0.4;
  border: 2px solid #eee;
  width: 10%;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.shop_detail .swiper #thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop_detail .swiper #thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #333;
}

/*-----------------------------------------------------------
   share
-----------------------------------------------------------*/
.share_access01,
#access {
  padding: 80px 0 0;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .share_access01,
  #access {
    padding: 24px 0 0;
    margin-bottom: 24px;
  }
}
.share_access01 .hd_std1,
#access .hd_std1 {
  color: #882539;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .share_access01 .hd_std1,
  #access .hd_std1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.share_access01 .hd_std1 > .tit_en,
#access .hd_std1 > .tit_en {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .share_access01 .hd_std1 > .tit_en,
  #access .hd_std1 > .tit_en {
    font-size: 2.4rem;
    margin-bottom: 0;
    margin-right: 0.6em;
  }
}
.share_access01 .hd_std1 > .tit,
#access .hd_std1 > .tit {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .share_access01 .hd_std1 > .tit,
  #access .hd_std1 > .tit {
    font-size: 1.4rem;
  }
}
.share_access01 iframe,
#access iframe {
  width: 100%;
}
.share_access01 .maparea,
#access .maparea {
  position: relative;
}
@media (min-width: 1280px) {
  .share_access01 .maparea,
  #access .maparea {
    width: 100%;
  }
  .share_access01 .maparea iframe,
  #access .maparea iframe {
    width: 100%;
    height: 400px;
  }
}
@media (min-width: 768px) {
  .share_access01 .maparea iframe,
  #access .maparea iframe {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .share_access01 .maparea iframe,
  #access .maparea iframe {
    height: 320px;
  }
}
.share_access01 .dl_date,
#access .dl_date {
  padding: 16px;
  text-align: center;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .share_access01 .dl_date,
  #access .dl_date {
    padding: 12px 0;
    text-align: center;
  }
}
.share_access01 .dl_date dt,
#access .dl_date dt {
  font-size: 2rem;
  margin-bottom: 0.2em;
}
/*-----------------------------------------------------------
   company
-----------------------------------------------------------*/
#company #key {
  background: url(../img/company/key_bg.jpg) center top no-repeat;
  background-size: cover;
}
#company #key .heading .tit {
  font-size: 4rem;
}
#company #key .heading .tit:before {
  content: "Company";
}
#company #contents main.main_company .tit_std1 {
  height: 96px;
  background: url(../img/company/h_bg1.jpg) 0 center no-repeat #D9E0E4;
  position: relative;
  margin-bottom: 56px;
}
#company #contents main.main_company .tit_std1 .tit {
  font-size: 2.8rem;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 auto;
}
#company #contents main.main_company .ul_std1 {
  font-size: 2rem;
  margin-bottom: 56px;
}
@media (max-width: 479px) {
  #company #contents main.main_company .ul_std1 {
    font-size: 2.2rem;
  }
}
#company #contents main.main_company .ul_std1 > li {
  margin: 0;
  border-bottom: 1px solid #231815;
}
#company #contents main.main_company .ul_std1 > li:first-child {
  border-top: 1px solid #231815;
}
#company #contents main.main_company .ul_std1 > li > dl > dt, #company #contents main.main_company .ul_std1 > li > dl > dd {
  padding: 8px 16px;
}
#company #contents main.main_company .ul_std1 > li > dl > dt {
  width: 10em;
  background: #F4F4F4;
  vertical-align: top;
}
@media (max-width: 479px) {
  #company #contents main.main_company .ul_std1 > li > dl > dt {
    width: 8em;
  }
}
#company #contents main.main_company .dl_box {
  background: #F4F4F4;
  padding: 24px;
}
#company #contents main.main_company .dl_box > dt {
  font-size: 2.4rem;
  margin-bottom: 4px;
}
@media (max-width: 479px) {
  #company #contents main.main_company .dl_box > dt {
    font-size: 2.7rem;
  }
}
#company #contents main.main_company .dl_box > dd {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
#company #contents main.main_company .dl_box > dd:last-child {
  margin-bottom: 0;
}
@media (max-width: 479px) {
  #company #contents main.main_company .dl_box > dd {
    font-size: 2.4rem;
  }
}
#company #contents main.main_company .blk_access {
  padding-top: 40px;
  margin-bottom: 56px;
}
#company #contents main.main_company .blk_access .tit {
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 479px) {
  #company #contents main.main_company .blk_access .tit {
    font-size: 2.8rem;
  }
}
#company #contents main.main_company .blk_access .ul_access {
  text-align: center;
  letter-spacing: -0.4em;
  margin-left: -60px;
  margin-bottom: 16px;
}
@media (max-width: 479px) {
  #company #contents main.main_company .blk_access .ul_access {
    margin-left: 0px;
  }
}
#company #contents main.main_company .blk_access .ul_access > li {
  width: 450px;
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 60px;
}
@media (max-width: 479px) {
  #company #contents main.main_company .blk_access .ul_access > li {
    margin-left: 0;
    margin-bottom: 24px;
  }
}
#company #contents main.main_company .blk_access .ul_access > li img {
  border: 1px solid #333;
}
#company #contents main.main_company .blk_access .ul_access > li.googlemap iframe {
  border: 1px solid #333;
}
#company #contents main.main_company .blk_access .gr_corse .subtit {
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 479px) {
  #company #contents main.main_company .blk_access .gr_corse .subtit {
    font-size: 2.4rem;
  }
}
#company #contents main.main_company .blk_access .gr_corse .desc {
  font-size: 2rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  #company #contents main.main_company .blk_access .gr_corse .desc {
    font-size: 2.4rem;
  }
}
#company #contents main.main_company #mesagge {
  padding-top: 56px;
  margin-bottom: 56px;
}
#company #contents main.main_company #mesagge .inner {
  width: 880px;
  margin: 0 auto;
}
@media (max-width: 479px) {
  #company #contents main.main_company #mesagge .inner {
    width: auto;
    padding: 0 30px;
  }
}
#company #contents main.main_company #mesagge .heading {
  width: 960px;
  height: 300px;
  margin: 0 auto;
  position: relative;
  background: url(../img/company/mesagge_bg1.jpg) center top no-repeat;
  color: #000;
}
@media (max-width: 479px) {
  #company #contents main.main_company #mesagge .heading {
    width: 100%;
  }
}
#company #contents main.main_company #mesagge .heading > .tit {
  font-size: 2.8rem;
  line-height: 1.4;
  position: absolute;
  top: 40px;
  left: 24px;
}
#company #contents main.main_company #mesagge .heading .gr_name {
  position: absolute;
  bottom: 40px;
  left: 24px;
}
#company #contents main.main_company #mesagge .heading .gr_name .job {
  font-size: 1.6rem;
  font-weight: normal;
}
@media (max-width: 479px) {
  #company #contents main.main_company #mesagge .heading .gr_name .job {
    font-size: 2.4rem;
  }
}
#company #contents main.main_company #mesagge .heading .gr_name .name {
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 479px) {
  #company #contents main.main_company #mesagge .heading .gr_name .name {
    font-size: 2.8rem;
  }
}
#company #contents main.main_company #mesagge .post .tit_lead {
  padding: 32px 20%;
}
@media (max-width: 479px) {
  #company #contents main.main_company #mesagge .post .tit_lead {
    padding: 16px 2%;
  }
}
#company #contents main.main_company #mesagge .post .tit_lead p {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 2.8rem;
  line-height: 1.8;
  color: #004F99;
  white-space: nowrap;
}
@media (max-width: 479px) {
  #company #contents main.main_company #mesagge .post .tit_lead p {
    font-size: 2.6rem;
    white-space: normal;
  }
}
#company #contents main.main_company #mesagge .post .tit_lead p.mini {
  font-size: 2.4rem;
}
@media (max-width: 479px) {
  #company #contents main.main_company #mesagge .post .tit_lead p.mini {
    font-size: 2.2rem;
  }
}
#company #contents main.main_company #mesagge .post .txt_blk {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  #company #contents main.main_company #mesagge .post .txt_blk {
    font-size: 2.4rem;
  }
}

main.main_company .hd_sec01 {
  position: relative;
  text-align: center;
  padding: 88px 0 0;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  main.main_company .hd_sec01 {
    margin-bottom: 8px;
    padding: 140px 0 32px;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec01 {
    padding: 120px 0 32px;
  }
}
main.main_company .hd_sec01:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 64px;
  height: 64px;
  background: url(../img/common/hd_icn_logo.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media (min-width: 768px) {
  main.main_company .hd_sec01:before {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec01:before {
    width: 100px;
    height: 100px;
  }
}
main.main_company .hd_sec01 .txt_en {
  font-size: 4rem;
  font-weight: 600;
  color: #882539;
  line-height: 1;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  main.main_company .hd_sec01 .txt_en {
    font-size: 3.2rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec01 .txt_en {
    font-size: 7.2vw;
    margin-bottom: 8px;
  }
}
main.main_company .hd_sec01 .tit {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: #be781b;
  line-height: 1;
}
@media (max-width: 479px) {
  main.main_company .hd_sec01 .tit {
    font-size: 4vw;
  }
}
main.main_company .hd_sec02 {
  position: relative;
  padding: 2.4vw 0;
}
@media (min-width: 1024px) {
  main.main_company .hd_sec02 {
    padding: 4% 0;
  }
}
@media (min-width: 768px) {
  main.main_company .hd_sec02 {
    padding: 4% 0;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec02 {
    padding: 4vw 0;
    text-align: center;
  }
}
main.main_company .hd_sec02 .tit {
  font-size: 1vw;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1;
}
@media (min-width: 1024px) {
  main.main_company .hd_sec02 .tit {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  main.main_company .hd_sec02 .tit {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec02 .tit {
    font-size: 3.2vw;
    letter-spacing: 0.04em;
  }
}
main.main_company .hd_sec02 .tit:before {
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-size: 3.2vw;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 600;
  margin-bottom: 0.64vw;
}
@media (min-width: 1024px) {
  main.main_company .hd_sec02 .tit:before {
    font-size: 6rem;
    margin-bottom: 0.16em;
  }
}
@media (min-width: 768px) {
  main.main_company .hd_sec02 .tit:before {
    font-size: 4.8rem;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec02 .tit:before {
    font-size: 6.4vw;
    margin-bottom: 1.6vw;
  }
}
main.main_company .hd_sec03 {
  position: relative;
  padding: 2.4vw 0;
  text-align: center;
}
@media (min-width: 1024px) {
  main.main_company .hd_sec03 {
    padding: 4% 0;
  }
}
@media (min-width: 768px) {
  main.main_company .hd_sec03 {
    padding: 4% 0;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec03 {
    padding: 4vw 0;
    text-align: center;
  }
}
main.main_company .hd_sec03 .tit {
  font-size: 1vw;
  font-weight: 500;
  letter-spacing: 0.4em;
  line-height: 1;
  color: #fff;
  background: #882539;
  padding: 0.32em 2.4em 0.4em;
  display: inline-block;
}
@media (min-width: 1024px) {
  main.main_company .hd_sec03 .tit {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  main.main_company .hd_sec03 .tit {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec03 .tit {
    font-size: 3.2vw;
    letter-spacing: 0.04em;
  }
}
main.main_company .hd_sec03 .tit:before {
  content: attr(data-title);
  color: #231815;
  font-family: "Oswald", sans-serif;
  font-size: 3.2vw;
  letter-spacing: 0;
  display: block;
  font-weight: 600;
  position: absolute;
  top: -0.64vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1024px) {
  main.main_company .hd_sec03 .tit:before {
    font-size: 4rem;
    margin-bottom: 0.16em;
  }
}
@media (min-width: 768px) {
  main.main_company .hd_sec03 .tit:before {
    font-size: 4.4rem;
  }
}
@media (max-width: 479px) {
  main.main_company .hd_sec03 .tit:before {
    font-size: 6.4vw;
    margin-bottom: 1.6vw;
  }
}

main.main_company .sec_mv01 .inner .mv {
  height: 44vw;
}
@media (min-width: 1024px) {
  main.main_company .sec_mv01 .inner .mv {
    height: 100%;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_mv01 .inner .mv {
    height: 36vw;
  }
}
main.main_company .sec_mv01 .inner .mv img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 479px) {
  main.main_company .sec_mv01 .inner .mv img {
    width: 100%;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_mv01:nth-child(odd) .inner .mv {
    margin-right: -5vw;
  }
}
main.main_company .sec_mv01:nth-child(even) .inner .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 479px) {
  main.main_company .sec_mv01:nth-child(even) .inner .mv {
    display: block;
    margin-left: -5vw;
  }
}
main.main_company .sec_greeting01 .inner .pic {
  width: 46%;
  position: absolute;
  right: 0;
  top: -3.2vw;
}
@media (max-width: 479px) {
  main.main_company .sec_greeting01 .inner .pic {
    width: 80%;
    position: static;
    margin: 0 auto;
  }
}
main.main_company .sec_greeting01 .inner .pic img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main.main_company .sec_greeting01 .inner .txt_line {
  width: 52%;
  max-width: 580px;
  font-size: 1.4vw;
  line-height: 2.2vw;
}
@media (min-width: 1024px) {
  main.main_company .sec_greeting01 .inner .txt_line {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_greeting01 .inner .txt_line {
    width: 100%;
    margin: 4vw auto 0;
    font-size: 3.6vw;
    line-height: 1.6;
  }
}
main.main_company .sec_greeting01 .inner .txt_line p {
  margin-bottom: 1vw;
}
@media (min-width: 1024px) {
  main.main_company .sec_greeting01 .inner .txt_line p {
    margin-bottom: 1.6em;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_greeting01 .inner .txt_line p {
    margin-bottom: 4vw;
  }
}
main.main_company .sec_greeting01 .inner .txt_line .tit {
  font-size: 1.6vw;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.64em;
}
@media (min-width: 1024px) {
  main.main_company .sec_greeting01 .inner .txt_line .tit {
    font-size: 1.8vw;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_greeting01 .inner .txt_line .tit {
    font-size: 4vw;
  }
}
main.main_company .sec_greeting01 .inner .txt_line .txt_name {
  margin-top: 0.8em;
  margin-bottom: 0;
  text-align: right;
}
main.main_company .sec_greeting01 .inner .txt_line .txt_name span {
  margin-left: 0.4em;
}
@media (max-width: 479px) {
  main.main_company .sec_greeting01 .inner .txt_line .txt_name span img {
    width: 32vw;
  }
}
main.main_company .sec_outline01 {
  background-color: #f7f7f8;
}
main.main_company .sec_outline01 .ssec_blk {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  padding: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1024px) {
  main.main_company .sec_outline01 .ssec_blk {
    max-width: 900px;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ssec_blk {
    width: auto;
    padding: 6.4vw 4vw;
  }
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li {
  font-size: 1.4vw;
  line-height: 2.2vw;
  padding: 1.2em 0.6em;
  border-bottom: 1px solid #ccc;
  position: relative;
}
@media (min-width: 1024px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li {
    font-size: 3.6vw;
    line-height: 1.6;
    padding: 0.8em 0.4em;
  }
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li:before {
  content: "";
  width: 16em;
  height: 1px;
  background-color: #333;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media (min-width: 768px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li:before {
    width: 12em;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li:before {
    width: 6em;
  }
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li:first-child {
  border-top: 4px solid #333;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li:nth-child(odd) {
  background: #fff;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl {
  width: 100%;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dt {
  width: 16em;
  vertical-align: top;
}
@media (min-width: 1024px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dt {
    width: 16em;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dt {
    width: 12em;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dt {
    width: 6em;
  }
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_officer > li {
  position: relative;
  margin-bottom: 1em;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_officer > li:last-child {
  margin-bottom: 0em;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_officer > li b {
  font-weight: 400;
  color: #882539;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_officer > li span {
  position: absolute;
  left: 10em;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li {
  margin-bottom: 0.8em;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li a {
  color: #08f;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li a:hover {
  color: #333;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 8px;
  background: url(../img/company/icn_linkarr.svg) center center no-repeat;
  background-size: contain;
  margin-right: 6px;
}
@media (min-width: 768px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li a:before {
    width: 10px;
    height: 12px;
    margin-right: 8px;
  }
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li:last-child {
  margin-bottom: 0;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_officer > li {
  position: relative;
  margin-bottom: 1em;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_officer > li:last-child {
  margin-bottom: 0em;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_officer > li b {
  font-weight: 400;
  color: #882539;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_officer > li span {
  position: absolute;
  left: 10em;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li {
  margin-bottom: 0.8em;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li a {
  color: #08f;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li a:hover {
  color: #333;
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 8px;
  background: url(../img/company/icn_linkarr.svg) center center no-repeat;
  background-size: contain;
  margin-right: 6px;
}
@media (min-width: 768px) {
  main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li a:before {
    width: 10px;
    height: 12px;
    margin-right: 8px;
  }
}
main.main_company .sec_outline01 .ssec_blk .ul_outline > li > dl > dd .ul_group > li:last-child {
  margin-bottom: 0;
}
main.main_company .sec_access01 {
  background-color: #f7f7f8;
  padding: 0% 0 4%;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  main.main_company .sec_access01 {
    padding: 0% 0 4%;
    margin-bottom: 24px;
  }
}
main.main_company .sec_access01 iframe {
  width: 100%;
}
main.main_company .sec_access01 .maparea {
  width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media (min-width: 1024px) {
  main.main_company .sec_access01 .maparea {
    max-width: 900px;
  }
  main.main_company .sec_access01 .maparea iframe {
    width: 100%;
    height: 400px;
  }
}
@media (min-width: 768px) {
  main.main_company .sec_access01 .maparea iframe {
    width: 100%;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_access01 .maparea {
    width: auto;
    padding: 6.4vw 4vw;
  }
  main.main_company .sec_access01 .maparea iframe {
    height: 320px;
  }
}
main.main_company .sec_access01 .dl_date {
  padding: 16px;
  text-align: center;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  main.main_company .sec_access01 .dl_date {
    padding: 12px 0;
    text-align: center;
  }
}
main.main_company .sec_access01 .dl_date dt {
  font-size: 2rem;
  margin-bottom: 0.2em;
}
main.main_company .sec_concept01 {
  text-align: center;
}
main.main_company .sec_concept01 .inner .heading {
  margin-bottom: 0;
}
main.main_company .sec_concept01 .txt_line {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 479px) {
  main.main_company .sec_concept01 .txt_line {
    font-size: 2.2rem;
  }
}
main.main_company .sec_concept01 .txt_line > .tit {
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-top: 40px;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
main.main_company .sec_logo01 {
  background-color: #e7e7e7;
  padding: 40px 0;
  margin-bottom: 80px;
}
main.main_company .sec_logo01 .inner {
  width: 800px;
  padding: 88px 72px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 479px) {
  main.main_company .sec_logo01 .inner {
    width: auto;
    padding: 40px 24px;
  }
}
main.main_company .sec_logo01 .inner .txt_line {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  main.main_company .sec_logo01 .inner .txt_line {
    font-size: 2.2rem;
  }
}
main.main_company .sec_outline01 .ul_outline > li {
  font-size: 1.6rem;
  line-height: 1.7;
  padding: 1.2em 0.6em;
  border-bottom: 1px solid #999;
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ul_outline > li {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
main.main_company .sec_outline01 .ul_outline > li:first-child {
  border-top: 1px solid #999;
}
main.main_company .sec_outline01 .ul_outline > li:nth-child(odd) {
  background: #fff;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dt {
  width: 16em;
  vertical-align: top;
}
@media (min-width: 1024px) {
  main.main_company .sec_outline01 .ul_outline > li > dl > dt {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  main.main_company .sec_outline01 .ul_outline > li > dl > dt {
    width: auto;
    padding-bottom: 0.6em;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ul_outline > li > dl > dt {
    display: block;
  }
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ul_outline > li > dl > dd {
    display: block;
  }
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_officer > li {
  position: relative;
  margin-bottom: 1em;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_officer > li:last-child {
  margin-bottom: 0em;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_officer > li b {
  font-weight: 400;
  color: #882539;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_officer > li span {
  position: absolute;
  left: 10em;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_group > li {
  margin-bottom: 0.8em;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_group > li a {
  color: #08f;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_group > li a:hover {
  color: #333;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_group > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 8px;
  background: url(../img/company/icn_linkarr.svg) center center no-repeat;
  background-size: contain;
  margin-right: 6px;
}
@media (min-width: 768px) {
  main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_group > li a:before {
    width: 10px;
    height: 12px;
    margin-right: 8px;
  }
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_group > li:last-child {
  margin-bottom: 0;
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_column2 > li {
  width: 48%;
  margin-bottom: 0.8em;
}
@media (max-width: 479px) {
  main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_column2 > li {
    width: 100%;
    margin-bottom: 0.4em;
  }
}
main.main_company .sec_outline01 .ul_outline > li > dl > dd .ul_column2 > li:last-child {
  margin-bottom: 0;
}
main.main_company .sec_history01 ul.ul_history > li {
  border-bottom: 1px dashed #181c35;
  padding: 16px 0;
}
main.main_company .sec_history01 ul.ul_history > li:first-child {
  border-top: 1px dashed #181c35;
}
main.main_company .sec_history01 ul.ul_history > li > dl > dt, main.main_company .sec_history01 ul.ul_history > li > dl > dd {
  padding: 8px 16px;
  font-size: 1.6rem;
}
@media (max-width: 479px) {
  main.main_company .sec_history01 ul.ul_history > li > dl > dt, main.main_company .sec_history01 ul.ul_history > li > dl > dd {
    font-size: 2.2rem;
  }
}
main.main_company .sec_history01 ul.ul_history dt {
  width: 14em;
}
@media (max-width: 479px) {
  main.main_company .sec_history01 ul.ul_history dt {
    width: 8em;
  }
}
main.main_company .sec_history01 ul.ul_history dd {
  border-left: 4px solid #882539;
}
main.main_company .sec_history00 .ul_history {
  font-size: 2rem;
  margin-bottom: 56px;
}
@media (max-width: 479px) {
  main.main_company .sec_history00 .ul_history {
    font-size: 2.4rem;
  }
}
main.main_company .sec_history00 .ul_history > li {
  margin: 0;
  border-bottom: 1px solid #231815;
}
main.main_company .sec_history00 .ul_history > li:first-child {
  border-top: 1px solid #231815;
}
main.main_company .sec_history00 .ul_history > li > dl > dt, main.main_company .sec_history00 .ul_history > li > dl > dd {
  padding: 8px 16px;
}
main.main_company .sec_history00 .ul_history > li > dl > dt {
  width: 10em;
  background: #F4F4F4;
  vertical-align: top;
}
@media (max-width: 479px) {
  main.main_company .sec_history00 .ul_history > li > dl > dt {
    width: 8em;
  }
}
#about_profile .inner .heading {
  margin-bottom: 32px;
}
#about_profile .date {
  margin: 0 auto 16px;
}
@media (max-width: 479px) {
  #about_profile .date {
    margin: 0 auto 32px;
  }
}
#about_profile .date .position {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4em;
}
@media (max-width: 479px) {
  #about_profile .date .position {
    font-size: 2.2rem;
  }
}
#about_profile .date .name {
  font-size: 2rem;
  letter-spacing: 0.08em;
}
@media (max-width: 479px) {
  #about_profile .date .name {
    font-size: 3.2rem;
  }
}
#about_profile .txt_line {
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
@media (max-width: 479px) {
  #about_profile .txt_line {
    font-size: 2.2rem;
  }
}
#about_profile .txt_line p {
  margin-bottom: 1.2em;
}
#about_profile .txt_line p:last-child {
  margin-bottom: 0;
}
#about_profile .txt_line > .tit {
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-top: 40px;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.hd_ssec01 {
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.6vw;
  font-size: 1.8vw;
}
@media (min-width: 1024px) {
  .hd_ssec01 {
    font-size: 2.4rem;
    margin-bottom: 1.4vw;
  }
}
@media (min-width: 768px) {
  .hd_ssec01 {
    font-size: 2rem;
  }
}
@media (max-width: 479px) {
  .hd_ssec01 {
    font-size: 5.6vw;
    margin-bottom: 4vw;
  }
}

@media (min-width: 1024px) {
  #rentalspace .inner {
    max-width: 88%;
  }
}
@media (min-width: 768px) {
  #rentalspace .inner {
    max-width: inherit;
  }
}

#rentalspace_read .swiper #slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#rentalspace_read .swiper #thumbs {
  position: relative;
}
#rentalspace_read .swiper #thumbs .swiper-wrapper {
  margin: 0 -1%;
}
#rentalspace_read .swiper #thumbs .swiper-slide {
  opacity: 0.4;
  width: 10.75%;
  margin: 0 1% 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#rentalspace_read .swiper #thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#rentalspace_read .swiper #thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
#rentalspace_read .swiper .swiper-container .swiper-button-prev2,
#rentalspace_read .swiper .swiper-container .swiper-button-next2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 80%;
  margin-top: 0%;
  z-index: 100;
  cursor: pointer;
  background-color: #fff;
  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 (max-width: 479px) {
  #rentalspace_read .swiper .swiper-container .swiper-button-prev2,
  #rentalspace_read .swiper .swiper-container .swiper-button-next2 {
    width: 6vw;
    background-color: #e9e9e9;
  }
}
#rentalspace_read .swiper .swiper-container .swiper-button-prev2.swiper-button-disabled,
#rentalspace_read .swiper .swiper-container .swiper-button-next2.swiper-button-disabled {
  opacity: 0.4;
  cursor: auto;
  pointer-events: none;
}
#rentalspace_read .swiper .swiper-container .swiper-button-prev2,
#rentalspace_read .swiper .swiper-container .swiper-container-rtl .swiper-button-next {
  left: 0px;
  right: auto;
  border-right: 1px solid #999;
}
#rentalspace_read .swiper .swiper-container .swiper-button-next2,
#rentalspace_read .swiper .swiper-container .swiper-container-rtl .swiper-button-prev2 {
  right: 0px;
  left: auto;
  border-left: 1px solid #999;
}
#rentalspace_read .sec_intro {
  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;
  margin-bottom: 3.2%;
}
@media (max-width: 479px) {
  #rentalspace_read .sec_intro {
    display: block;
  }
}
#rentalspace_read .sec_intro .one, #rentalspace_read .sec_intro .two {
  width: 50%;
}
@media (max-width: 479px) {
  #rentalspace_read .sec_intro .one, #rentalspace_read .sec_intro .two {
    width: 100%;
  }
}
#rentalspace_read .sec_intro .blk_txt {
  margin-right: 3.2%;
  padding: 4% 2% 4% 4%;
}
@media (min-width: 1024px) {
  #rentalspace_read .sec_intro .blk_txt {
    margin-right: 3.2%;
    padding: 4% 2% 4% 4%;
  }
}
@media (min-width: 768px) {
  #rentalspace_read .sec_intro .blk_txt {
    margin-right: 0;
    padding: 0 2% 0 4%;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .sec_intro .blk_txt {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 5vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .sec_intro .blk_txt .heading {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 0.8em;
  }
}
#rentalspace_read .sec_intro .blk_txt .heading .tit {
  font-size: 1.6vw;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.64em;
}
@media (min-width: 1024px) {
  #rentalspace_read .sec_intro .blk_txt .heading .tit {
    font-size: 1.6vw;
  }
}
@media (min-width: 768px) {
  #rentalspace_read .sec_intro .blk_txt .heading .tit {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .sec_intro .blk_txt .heading .tit {
    font-size: 4.8vw;
    margin-bottom: 0.8em;
  }
}
#rentalspace_read .sec_intro .blk_txt .txt_line {
  font-size: 1.4vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 4%;
}
@media (min-width: 1024px) {
  #rentalspace_read .sec_intro .blk_txt .txt_line {
    font-size: 1vw;
  }
}
@media (min-width: 768px) {
  #rentalspace_read .sec_intro .blk_txt .txt_line {
    font-size: 1.24rem;
    line-height: 1.4;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .sec_intro .blk_txt .txt_line {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 3.2vw;
  }
}
#rentalspace_read .sec_intro .blk_txt .txt_line p {
  margin-bottom: 1.4em;
}
@media (min-width: 768px) {
  #rentalspace_read .sec_intro .blk_txt .txt_line p {
    margin-bottom: 0.64em;
  }
}
#rentalspace_read .sec_intro .blk_txt .txt_line p:last-child {
  margin-bottom: 0;
}
#rentalspace_read .sec_intro .blk_txt .txt_line p.att {
  text-indent: -1em;
  padding-left: 1em;
}
#rentalspace_read .sec_intro .blk_txt .thum {
  border-bottom: 1px solid #999;
  border-top: 1px solid #999;
  padding: 4% 0;
}
@media (max-width: 479px) {
  #rentalspace_read .sec_intro .blk_txt .thum {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border: none;
    margin: 0 -5vw;
    background-color: #e9e9e9;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.64vw;
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1%;
  }
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility {
    width: 100%;
    margin: 0 -0.6vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility {
    width: auto;
    margin: 0 -1.66% 0;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility > li {
  min-width: 110px;
  margin: 0 0.64vw;
}
@media (min-width: 1024px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li {
    width: 10%;
  }
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li {
    min-width: 12vw;
    margin: 0 0.6vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li {
    width: 30%;
    margin: 0 1.66% 3.2%;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility > li .icn {
  min-height: 110px;
  border: 1px solid #333;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 1.16vw;
}
@media (min-width: 1024px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn {
    min-height: 12vw;
    font-size: 1.1rem;
    letter-spacing: -0.04em;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn {
    font-size: 2.4vw;
    min-height: 20vw;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility > li .icn:before {
  content: "";
  display: block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 32%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#rentalspace_read .blk_mark .ul_mark_facility > li .icn_01:before {
  width: 37px;
  height: 67px;
  background-image: url(../img/rentalspace/facility_icn01.svg);
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_01:before {
    width: 4vw;
    height: 7vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_01:before {
    width: 6vw;
    height: 12vw;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility > li .icn_02:before {
  width: 59px;
  height: 60px;
  background-image: url(../img/rentalspace/facility_icn02.svg);
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_02:before {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_02:before {
    width: 12vw;
    height: 12vw;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility > li .icn_03:before {
  width: 53px;
  height: 56px;
  background-image: url(../img/rentalspace/facility_icn03.svg);
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_03:before {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_03:before {
    width: 12vw;
    height: 12vw;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility > li .icn_04:before {
  width: 78px;
  height: 43px;
  background-image: url(../img/rentalspace/facility_icn04.svg);
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_04:before {
    width: 8vw;
    height: 5vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_04:before {
    width: 13vw;
    height: 10vw;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility > li .icn_05:before {
  width: 43px;
  height: 64px;
  background-image: url(../img/rentalspace/facility_icn05.svg);
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_05:before {
    width: 5vw;
    height: 7vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_05:before {
    width: 10vw;
    height: 12vw;
  }
}
#rentalspace_read .blk_mark .ul_mark_facility > li .icn_06:before {
  width: 61px;
  height: 53px;
  background-image: url(../img/rentalspace/facility_icn06.svg);
}
@media (min-width: 768px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_06:before {
    width: 7vw;
    height: 6vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_mark .ul_mark_facility > li .icn_06:before {
    width: 13vw;
    height: 10vw;
  }
}
#rentalspace_read .blk_data {
  border: 2px solid #adadad;
  border-radius: 16px 16px 0 0;
  padding: 0.8% 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 3.2%;
  overflow-x: scroll;
}
@media (min-width: 768px) {
  #rentalspace_read .blk_data {
    padding: 1.6% 0 0;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_data {
    padding: 2.4% 0 0;
    margin-top: 6.4%;
  }
}
#rentalspace_read .blk_data .gr_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2040px;
}
@media (max-width: 479px) {
  #rentalspace_read .blk_data .gr_scroll {
    width: 480%;
  }
}
#rentalspace_read .blk_data .gr_data {
  width: 340px;
  margin-left: 1.6vw;
}
@media (max-width: 479px) {
  #rentalspace_read .blk_data .gr_data {
    width: 80%;
    margin-left: 3.2vw;
  }
}
#rentalspace_read .blk_data .gr_data:first-child {
  margin-left: 0;
}
#rentalspace_read .blk_data .gr_data .heading {
  padding: 0.64em 0.4vw 0.64em 4%;
  background-color: #333333;
  color: #fff;
  line-height: 1;
  position: relative;
  font-size: 1.4vw;
}
@media (min-width: 1024px) {
  #rentalspace_read .blk_data .gr_data .heading {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  #rentalspace_read .blk_data .gr_data .heading {
    font-size: 1.6rem;
    padding: 0.72em 0.4vw 0.72em 1.6vw;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_data .gr_data .heading {
    font-size: 3.6vw;
    padding: 0.72em 0.4vw 0.72em 2.4vw;
  }
}
#rentalspace_read .blk_data .gr_data .heading:after {
  content: "";
  border: 24px solid #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#rentalspace_read .blk_data .gr_data .cont .ul_grid2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 4%;
  font-size: 1.4vw;
}
@media (min-width: 1024px) {
  #rentalspace_read .blk_data .gr_data .cont .ul_grid2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_data .gr_data .cont .ul_grid2 {
    font-size: 3.2vw;
    margin: 4%;
  }
}
#rentalspace_read .blk_data .gr_data .cont .ul_grid2 > li {
  width: 48%;
  margin-bottom: 4%;
}
@media (max-width: 479px) {
  #rentalspace_read .blk_data .gr_data .cont .ul_grid2 > li {
    margin-bottom: 2.4%;
  }
}
#rentalspace_read .blk_data::-webkit-scrollbar-thumb {
  background: #882539; /* ツマミの色 */
  border-radius: 0; /* ツマミ両端の丸み */
}
#rentalspace_read .blk_data::-webkit-scrollbar {
  height: 0.4vw; /* スクロールバーの高さ */
}
#rentalspace_read .blk_data::-webkit-scrollbar-track {
  background: #fff; /* トラックの色 */
  border-radius: 0; /* トラック両端の丸み */
}
#rentalspace_read .blk_det {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.2%;
}
@media (max-width: 479px) {
  #rentalspace_read .blk_det {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 6.4%;
  }
}
#rentalspace_read .blk_det .one {
  margin-right: 4%;
}
#rentalspace_read .blk_det .tit {
  width: 16em;
  padding: 0.64em 0.8em 0.64em 1.6vw;
  border-radius: 0 40vw 40vw 0;
  background-color: #333333;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.64em;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #rentalspace_read .blk_det .tit {
    width: 14em;
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_det .tit {
    font-size: 3.2vw;
    padding: 0.8em 0.8em 0.8em 3.2vw;
    margin-bottom: 0.4em;
  }
}
#rentalspace_read .blk_det .txt_line {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) {
  #rentalspace_read .blk_det .txt_line {
    max-width: 40vw;
  }
}
@media (min-width: 768px) {
  #rentalspace_read .blk_det .txt_line {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
@media (max-width: 479px) {
  #rentalspace_read .blk_det .txt_line {
    padding: 0em 0.8em 0em 3.2vw;
    font-size: 3.2vw;
    letter-spacing: 0.04em;
  }
}
#rentalspace_read .blk_det .txt_line p {
  margin-bottom: 1.2em;
}
#rentalspace_read .blk_det .txt_line p:last-child {
  margin-bottom: 0;
}

#rentalspace_access .inner {
  padding: 4vw 0;
}
#rentalspace_access .ssec_blk {
  width: 46%;
  font-size: 1.6rem;
}
@media (max-width: 479px) {
  #rentalspace_access .ssec_blk {
    width: 100%;
    font-size: 3.2vw;
  }
}
#rentalspace_access .ssec_blk .box {
  background-color: #e9e9e9;
  padding: 0.8vw 1.6vw;
  font-size: 1.6rem;
  margin-top: 2vw;
}
@media (min-width: 768px) {
  #rentalspace_access .ssec_blk .box {
    padding: 1.6vw 1.6vw;
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #rentalspace_access .ssec_blk .box {
    margin-top: 4vw;
    padding: 3.2vw 3.2vw;
    font-size: 3.6vw;
  }
}
#rentalspace_access .ssec_blk .box .tit {
  width: 16em;
  padding: 0.64em 0.8em 0.64em 1.6vw;
  border-radius: 0 40vw 40vw 0;
  background-color: #333333;
  color: #fff;
  line-height: 1;
  margin-left: -1.6vw;
  margin-bottom: 0.64em;
}
@media (min-width: 768px) {
  #rentalspace_access .ssec_blk .box .tit {
    width: 14em;
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #rentalspace_access .ssec_blk .box .tit {
    font-size: 3.6vw;
    margin-left: -3.2vw;
    padding-left: 3.2vw;
  }
}
#rentalspace_access .ssec_blk .box .txt_line {
  line-height: 1.6;
}
@media (max-width: 479px) {
  #rentalspace_access .ul_access {
    margin-top: 3.2vw;
  }
}
#rentalspace_access .ul_access > li {
  margin-bottom: 1.6vw;
}
@media (max-width: 479px) {
  #rentalspace_access .ul_access > li {
    margin-bottom: 3.2vw;
  }
}
#rentalspace_access .ul_access > li:last-child {
  margin-bottom: 0;
}
#rentalspace_access .ul_access > li a {
  text-decoration: underline;
  color: #882539;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#rentalspace_access .ul_access > li a:hover {
  opacity: 0.64;
}
#rentalspace_access .ul_access > li dl {
  line-height: 1.8;
}
@media (min-width: 768px) {
  #rentalspace_access .ul_access > li dl {
    line-height: 1.6;
  }
}
@media (max-width: 479px) {
  #rentalspace_access .ul_access > li dl {
    line-height: 1.6;
  }
}
#rentalspace_access .ul_access > li dt {
  font-weight: 600;
  vertical-align: top;
}
@media (min-width: 768px) {
  #rentalspace_access .ul_access > li dt {
    width: 6em;
  }
}
#rentalspace_access .googlemap {
  width: 54%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 479px) {
  #rentalspace_access .googlemap {
    width: 100vw;
    height: 40vw;
    position: static;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    margin: 0 -5vw;
  }
}
#rentalspace_access .googlemap iframe {
  width: 100%;
  height: 100%;
}

.sec_reserve {
  position: relative;
  padding: 4% 0;
}
@media (max-width: 479px) {
  .sec_reserve {
    padding: 6.4% 0;
  }
}
.sec_reserve:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 92%;
  height: 100%;
  background-color: #e4e4e4;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sec_reserve .inner {
  max-width: 88%;
}
.sec_reserve .hd_ssec01 {
  margin-bottom: 1.6vw;
}
@media (max-width: 479px) {
  .sec_reserve .hd_ssec01 {
    margin-bottom: 3.2vw;
  }
}
.sec_reserve .ul_bnr {
  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 (max-width: 479px) {
  .sec_reserve .ul_bnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_reserve .ul_bnr > li {
  width: 40%;
  max-width: 420px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 2%;
}
@media (min-width: 1024px) {
  .sec_reserve .ul_bnr > li {
    width: 46%;
  }
}
@media (min-width: 768px) {
  .sec_reserve .ul_bnr > li {
    width: 40%;
    font-size: 1.6rem;
  }
}
@media (max-width: 479px) {
  .sec_reserve .ul_bnr > li {
    width: 80%;
    margin: 0 0 2.4%;
    font-size: 4vw;
  }
  .sec_reserve .ul_bnr > li:last-child {
    margin-bottom: 0;
  }
}
.sec_reserve .ul_bnr > li .icn01:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 4%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.sec_reserve .ul_bnr > li .icn_sm:before {
  width: 55px;
  height: 55px;
  background-image: url(../img/common/icn_sm.png);
}
@media (min-width: 768px) {
  .sec_reserve .ul_bnr > li .icn_sm:before {
    width: 5vw;
    height: 5vw;
  }
}
@media (max-width: 479px) {
  .sec_reserve .ul_bnr > li .icn_sm:before {
    width: 8vw;
    height: 8vw;
  }
}
.sec_reserve .ul_bnr > li .icn_ib:before {
  width: 56px;
  height: 41px;
  background-image: url(../img/common/icn_ib.svg);
}
@media (min-width: 768px) {
  .sec_reserve .ul_bnr > li .icn_ib:before {
    width: 5vw;
    height: 4vw;
  }
}
@media (max-width: 479px) {
  .sec_reserve .ul_bnr > li .icn_ib:before {
    width: 8vw;
    height: 6vw;
  }
}
.sec_reserve .ul_bnr > li a {
  height: 6.4vw;
  background-color: #fff;
  border: 1px solid #999;
  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;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .sec_reserve .ul_bnr > li a {
    height: 8vw;
  }
}
@media (max-width: 479px) {
  .sec_reserve .ul_bnr > li a {
    height: 14vw;
  }
}
.sec_reserve .ul_bnr > li a:hover {
  color: #882539;
}

@media (min-width: 1024px) {
  #stay .inner {
    max-width: 88%;
  }
}
@media (min-width: 768px) {
  #stay .inner {
    max-width: inherit;
  }
}

#stay_read .swiper #slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#stay_read .swiper #thumbs {
  position: relative;
}
#stay_read .swiper #thumbs .swiper-wrapper {
  margin: 0 -1%;
}
#stay_read .swiper #thumbs .swiper-slide {
  opacity: 0.4;
  width: 10.75%;
  margin: 0 1% 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#stay_read .swiper #thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#stay_read .swiper #thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
#stay_read .swiper .swiper-container .swiper-button-prev2,
#stay_read .swiper .swiper-container .swiper-button-next2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 80%;
  margin-top: 0%;
  z-index: 100;
  cursor: pointer;
  background-color: #fff;
  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 (max-width: 479px) {
  #stay_read .swiper .swiper-container .swiper-button-prev2,
  #stay_read .swiper .swiper-container .swiper-button-next2 {
    width: 6vw;
    background-color: #e9e9e9;
  }
}
#stay_read .swiper .swiper-container .swiper-button-prev2.swiper-button-disabled,
#stay_read .swiper .swiper-container .swiper-button-next2.swiper-button-disabled {
  opacity: 0.4;
  cursor: auto;
  pointer-events: none;
}
#stay_read .swiper .swiper-container .swiper-button-prev2,
#stay_read .swiper .swiper-container .swiper-container-rtl .swiper-button-next {
  left: 0px;
  right: auto;
  border-right: 1px solid #999;
}
#stay_read .swiper .swiper-container .swiper-button-next2,
#stay_read .swiper .swiper-container .swiper-container-rtl .swiper-button-prev2 {
  right: 0px;
  left: auto;
  border-left: 1px solid #999;
}
#stay_read .sec_intro {
  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;
  margin-bottom: 3.2%;
}
@media (max-width: 479px) {
  #stay_read .sec_intro {
    display: block;
  }
}
#stay_read .sec_intro .one, #stay_read .sec_intro .two {
  width: 50%;
}
@media (max-width: 479px) {
  #stay_read .sec_intro .one, #stay_read .sec_intro .two {
    width: 100%;
  }
}
#stay_read .sec_intro .blk_txt {
  margin-right: 3.2%;
  padding: 4% 2% 4% 4%;
}
@media (min-width: 1024px) {
  #stay_read .sec_intro .blk_txt {
    margin-right: 3.2%;
    padding: 4% 2% 4% 4%;
  }
}
@media (min-width: 768px) {
  #stay_read .sec_intro .blk_txt {
    margin-right: 0;
    padding: 0 2% 0 4%;
  }
}
@media (max-width: 479px) {
  #stay_read .sec_intro .blk_txt {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 5vw;
  }
}
@media (max-width: 479px) {
  #stay_read .sec_intro .blk_txt .heading {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 0.8em;
  }
}
#stay_read .sec_intro .blk_txt .heading .tit {
  font-size: 1.6vw;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.64em;
}
@media (min-width: 1024px) {
  #stay_read .sec_intro .blk_txt .heading .tit {
    font-size: 1.6vw;
  }
}
@media (min-width: 768px) {
  #stay_read .sec_intro .blk_txt .heading .tit {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media (max-width: 479px) {
  #stay_read .sec_intro .blk_txt .heading .tit {
    font-size: 4.8vw;
    margin-bottom: 0.8em;
  }
}
#stay_read .sec_intro .blk_txt .txt_line {
  font-size: 1.4vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 4%;
}
@media (min-width: 1024px) {
  #stay_read .sec_intro .blk_txt .txt_line {
    font-size: 1vw;
  }
}
@media (min-width: 768px) {
  #stay_read .sec_intro .blk_txt .txt_line {
    font-size: 1.24rem;
    line-height: 1.4;
  }
}
@media (max-width: 479px) {
  #stay_read .sec_intro .blk_txt .txt_line {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 3.2vw;
  }
}
#stay_read .sec_intro .blk_txt .txt_line p {
  margin-bottom: 1.4em;
}
@media (min-width: 768px) {
  #stay_read .sec_intro .blk_txt .txt_line p {
    margin-bottom: 0.64em;
  }
}
#stay_read .sec_intro .blk_txt .txt_line p:last-child {
  margin-bottom: 0;
}
#stay_read .sec_intro .blk_txt .txt_line p.att {
  text-indent: -1em;
  padding-left: 1em;
}
#stay_read .sec_intro .blk_txt .thum {
  border-bottom: 1px solid #999;
  border-top: 1px solid #999;
  padding: 4% 0;
}
@media (max-width: 479px) {
  #stay_read .sec_intro .blk_txt .thum {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border: none;
    margin: 0 -5vw;
    background-color: #e9e9e9;
  }
}
#stay_read .blk_mark .ul_mark_facility {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.64vw;
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1%;
  }
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility {
    width: 100%;
    margin: 0 -0.6vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility {
    width: auto;
    margin: 0 -1.66% 0;
  }
}
#stay_read .blk_mark .ul_mark_facility > li {
  min-width: 110px;
  margin: 0 0.64vw;
}
@media (min-width: 1024px) {
  #stay_read .blk_mark .ul_mark_facility > li {
    width: 10%;
  }
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility > li {
    min-width: 12vw;
    margin: 0 0.6vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility > li {
    width: 30%;
    margin: 0 1.66% 3.2%;
  }
}
#stay_read .blk_mark .ul_mark_facility > li .icn {
  min-height: 110px;
  border: 1px solid #333;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 1.16vw;
}
@media (min-width: 1024px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn {
    min-height: 12vw;
    font-size: 1.1rem;
    letter-spacing: -0.04em;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn {
    font-size: 2.4vw;
    min-height: 20vw;
  }
}
#stay_read .blk_mark .ul_mark_facility > li .icn:before {
  content: "";
  display: block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 32%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#stay_read .blk_mark .ul_mark_facility > li .icn_01:before {
  width: 37px;
  height: 67px;
  background-image: url(../img/rentalspace/facility_icn01.svg);
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_01:before {
    width: 4vw;
    height: 7vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_01:before {
    width: 6vw;
    height: 12vw;
  }
}
#stay_read .blk_mark .ul_mark_facility > li .icn_02:before {
  width: 59px;
  height: 60px;
  background-image: url(../img/rentalspace/facility_icn02.svg);
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_02:before {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_02:before {
    width: 12vw;
    height: 12vw;
  }
}
#stay_read .blk_mark .ul_mark_facility > li .icn_03:before {
  width: 53px;
  height: 56px;
  background-image: url(../img/rentalspace/facility_icn03.svg);
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_03:before {
    width: 7vw;
    height: 7vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_03:before {
    width: 12vw;
    height: 12vw;
  }
}
#stay_read .blk_mark .ul_mark_facility > li .icn_04:before {
  width: 78px;
  height: 43px;
  background-image: url(../img/rentalspace/facility_icn04.svg);
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_04:before {
    width: 8vw;
    height: 5vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_04:before {
    width: 13vw;
    height: 10vw;
  }
}
#stay_read .blk_mark .ul_mark_facility > li .icn_05:before {
  width: 43px;
  height: 64px;
  background-image: url(../img/rentalspace/facility_icn05.svg);
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_05:before {
    width: 5vw;
    height: 7vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_05:before {
    width: 10vw;
    height: 12vw;
  }
}
#stay_read .blk_mark .ul_mark_facility > li .icn_06:before {
  width: 61px;
  height: 53px;
  background-image: url(../img/rentalspace/facility_icn06.svg);
}
@media (min-width: 768px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_06:before {
    width: 7vw;
    height: 6vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_mark .ul_mark_facility > li .icn_06:before {
    width: 13vw;
    height: 10vw;
  }
}
#stay_read .blk_data {
  border: 2px solid #adadad;
  border-radius: 16px 16px 0 0;
  padding: 0.8% 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 3.2%;
  overflow-x: scroll;
}
@media (min-width: 768px) {
  #stay_read .blk_data {
    padding: 1.6% 0 0;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_data {
    padding: 2.4% 0 0;
    margin-top: 6.4%;
  }
}
#stay_read .blk_data .gr_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2040px;
}
@media (max-width: 479px) {
  #stay_read .blk_data .gr_scroll {
    width: 480%;
  }
}
#stay_read .blk_data .gr_data {
  width: 340px;
  margin-left: 1.6vw;
}
@media (max-width: 479px) {
  #stay_read .blk_data .gr_data {
    width: 80%;
    margin-left: 3.2vw;
  }
}
#stay_read .blk_data .gr_data:first-child {
  margin-left: 0;
}
#stay_read .blk_data .gr_data .heading {
  padding: 0.64em 0.4vw 0.64em 4%;
  background-color: #333333;
  color: #fff;
  line-height: 1;
  position: relative;
  font-size: 1.4vw;
}
@media (min-width: 1024px) {
  #stay_read .blk_data .gr_data .heading {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  #stay_read .blk_data .gr_data .heading {
    font-size: 1.6rem;
    padding: 0.72em 0.4vw 0.72em 1.6vw;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_data .gr_data .heading {
    font-size: 3.6vw;
    padding: 0.72em 0.4vw 0.72em 2.4vw;
  }
}
#stay_read .blk_data .gr_data .heading:after {
  content: "";
  border: 24px solid #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#stay_read .blk_data .gr_data .cont .ul_grid2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 4%;
  font-size: 1.4vw;
}
@media (min-width: 1024px) {
  #stay_read .blk_data .gr_data .cont .ul_grid2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_data .gr_data .cont .ul_grid2 {
    font-size: 3.2vw;
    margin: 4%;
  }
}
#stay_read .blk_data .gr_data .cont .ul_grid2 > li {
  width: 48%;
  margin-bottom: 4%;
}
@media (max-width: 479px) {
  #stay_read .blk_data .gr_data .cont .ul_grid2 > li {
    margin-bottom: 2.4%;
  }
}
#stay_read .blk_data::-webkit-scrollbar-thumb {
  background: #882539; /* ツマミの色 */
  border-radius: 0; /* ツマミ両端の丸み */
}
#stay_read .blk_data::-webkit-scrollbar {
  height: 0.4vw; /* スクロールバーの高さ */
}
#stay_read .blk_data::-webkit-scrollbar-track {
  background: #fff; /* トラックの色 */
  border-radius: 0; /* トラック両端の丸み */
}
#stay_read .blk_det {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.2%;
}
@media (max-width: 479px) {
  #stay_read .blk_det {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 6.4%;
  }
}
#stay_read .blk_det .one {
  margin-right: 4%;
}
#stay_read .blk_det .tit {
  width: 16em;
  padding: 0.64em 0.8em 0.64em 1.6vw;
  border-radius: 0 40vw 40vw 0;
  background-color: #333333;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.64em;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #stay_read .blk_det .tit {
    width: 14em;
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_det .tit {
    font-size: 3.2vw;
    padding: 0.8em 0.8em 0.8em 3.2vw;
    margin-bottom: 0.4em;
  }
}
#stay_read .blk_det .txt_line {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) {
  #stay_read .blk_det .txt_line {
    max-width: 40vw;
  }
}
@media (min-width: 768px) {
  #stay_read .blk_det .txt_line {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
@media (max-width: 479px) {
  #stay_read .blk_det .txt_line {
    padding: 0em 0.8em 0em 3.2vw;
    font-size: 3.2vw;
    letter-spacing: 0.04em;
  }
}
#stay_read .blk_det .txt_line p {
  margin-bottom: 1.2em;
}
#stay_read .blk_det .txt_line p:last-child {
  margin-bottom: 0;
}

#stay_access .inner {
  padding: 4vw 0;
}
#stay_access .ssec_blk {
  width: 46%;
  font-size: 1.6rem;
}
@media (max-width: 479px) {
  #stay_access .ssec_blk {
    width: 100%;
    font-size: 3.2vw;
  }
}
#stay_access .ssec_blk .box {
  background-color: #e9e9e9;
  padding: 0.8vw 1.6vw;
  font-size: 1.6rem;
  margin-top: 2vw;
}
@media (min-width: 768px) {
  #stay_access .ssec_blk .box {
    padding: 1.6vw 1.6vw;
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #stay_access .ssec_blk .box {
    margin-top: 4vw;
    padding: 3.2vw 3.2vw;
    font-size: 3.6vw;
  }
}
#stay_access .ssec_blk .box .tit {
  width: 16em;
  padding: 0.64em 0.8em 0.64em 1.6vw;
  border-radius: 0 40vw 40vw 0;
  background-color: #333333;
  color: #fff;
  line-height: 1;
  margin-left: -1.6vw;
  margin-bottom: 0.64em;
}
@media (min-width: 768px) {
  #stay_access .ssec_blk .box .tit {
    width: 14em;
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  #stay_access .ssec_blk .box .tit {
    font-size: 3.6vw;
    margin-left: -3.2vw;
    padding-left: 3.2vw;
  }
}
#stay_access .ssec_blk .box .txt_line {
  line-height: 1.6;
}
@media (max-width: 479px) {
  #stay_access .ul_access {
    margin-top: 3.2vw;
  }
}
#stay_access .ul_access > li {
  margin-bottom: 1.6vw;
}
@media (max-width: 479px) {
  #stay_access .ul_access > li {
    margin-bottom: 3.2vw;
  }
}
#stay_access .ul_access > li:last-child {
  margin-bottom: 0;
}
#stay_access .ul_access > li a {
  text-decoration: underline;
  color: #882539;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#stay_access .ul_access > li a:hover {
  opacity: 0.64;
}
#stay_access .ul_access > li dl {
  line-height: 1.8;
}
@media (min-width: 768px) {
  #stay_access .ul_access > li dl {
    line-height: 1.6;
  }
}
@media (max-width: 479px) {
  #stay_access .ul_access > li dl {
    line-height: 1.6;
  }
}
#stay_access .ul_access > li dt {
  font-weight: 600;
  vertical-align: top;
}
@media (min-width: 768px) {
  #stay_access .ul_access > li dt {
    width: 6em;
  }
}
#stay_access .googlemap {
  width: 54%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 479px) {
  #stay_access .googlemap {
    width: 100vw;
    height: 40vw;
    position: static;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    margin: 0 -5vw;
  }
}
#stay_access .googlemap iframe {
  width: 100%;
  height: 100%;
}

.sec_reserve {
  position: relative;
  padding: 4% 0;
}
@media (max-width: 479px) {
  .sec_reserve {
    padding: 6.4% 0;
  }
}
.sec_reserve:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 92%;
  height: 100%;
  background-color: #e4e4e4;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sec_reserve .inner {
  max-width: 88%;
}
.sec_reserve .hd_ssec01 {
  margin-bottom: 1.6vw;
}
@media (max-width: 479px) {
  .sec_reserve .hd_ssec01 {
    margin-bottom: 3.2vw;
  }
}
.sec_reserve .ul_bnr {
  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 (max-width: 479px) {
  .sec_reserve .ul_bnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_reserve .ul_bnr > li {
  width: 40%;
  max-width: 420px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 2%;
}
@media (min-width: 1024px) {
  .sec_reserve .ul_bnr > li {
    width: 46%;
  }
}
@media (min-width: 768px) {
  .sec_reserve .ul_bnr > li {
    width: 40%;
    font-size: 1.6rem;
  }
}
@media (max-width: 479px) {
  .sec_reserve .ul_bnr > li {
    width: 80%;
    margin: 0 0 2.4%;
    font-size: 4vw;
  }
  .sec_reserve .ul_bnr > li:last-child {
    margin-bottom: 0;
  }
}
.sec_reserve .ul_bnr > li .icn01:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 4%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.sec_reserve .ul_bnr > li .icn_sm:before {
  width: 55px;
  height: 55px;
  background-image: url(../img/common/icn_sm.png);
}
@media (min-width: 768px) {
  .sec_reserve .ul_bnr > li .icn_sm:before {
    width: 5vw;
    height: 5vw;
  }
}
@media (max-width: 479px) {
  .sec_reserve .ul_bnr > li .icn_sm:before {
    width: 8vw;
    height: 8vw;
  }
}
.sec_reserve .ul_bnr > li .icn_ib:before {
  width: 56px;
  height: 41px;
  background-image: url(../img/common/icn_ib.svg);
}
@media (min-width: 768px) {
  .sec_reserve .ul_bnr > li .icn_ib:before {
    width: 5vw;
    height: 4vw;
  }
}
@media (max-width: 479px) {
  .sec_reserve .ul_bnr > li .icn_ib:before {
    width: 8vw;
    height: 6vw;
  }
}
.sec_reserve .ul_bnr > li a {
  height: 6.4vw;
  background-color: #fff;
  border: 1px solid #999;
  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;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .sec_reserve .ul_bnr > li a {
    height: 8vw;
  }
}
@media (max-width: 479px) {
  .sec_reserve .ul_bnr > li a {
    height: 14vw;
  }
}
.sec_reserve .ul_bnr > li a:hover {
  color: #882539;
}

/*-----------------------------------------------------------
   privacy
-----------------------------------------------------------*/
@media (max-width: 479px) {
  #privacy #contents .poli_sec1 {
    width: auto;
  }
}
#privacy #contents .poli_sec1 .read {
  margin-bottom: 40px;
}
#privacy #contents .poli_sec1 .read p {
  font-size: 1.8rem;
}
@media (max-width: 479px) {
  #privacy #contents .poli_sec1 .read p {
    font-size: 2.2rem;
  }
}
#privacy #contents .poli_sec1 ul.policy > li > dl > dt {
  font-size: 1.8rem;
  padding-bottom: 4px;
  margin-bottom: 0;
  color: #882539;
}
@media (max-width: 479px) {
  #privacy #contents .poli_sec1 ul.policy > li > dl > dt {
    font-size: 2.2rem;
  }
}
#privacy #contents .poli_sec1 ul.policy > li > dl > dd {
  font-size: 1.6rem;
  margin-bottom: 32px;
}
@media (max-width: 479px) {
  #privacy #contents .poli_sec1 ul.policy > li > dl > dd {
    font-size: 2.2rem;
  }
}
#privacy #contents .poli_sec1 .box_contact {
  margin-top: 24px;
  padding: 8px 0px;
  border-top: 1px solid #000;
  line-height: 1.8;
}
/*-----------------------------------------------------------
   sitemap
-----------------------------------------------------------*/
#sitemaps #sitemap_ul {
  border-top: 1px solid #dee2ec;
}
#sitemaps #sitemap_ul > li {
  border-bottom: 1px solid #dee2ec;
}
#sitemaps #sitemap_ul > li > a {
  display: block;
  padding: 16px 16px 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > a {
    padding: 1em 1em 1em 1em;
    font-size: 2.2rem;
    background-size: 15px;
  }
}
#sitemaps #sitemap_ul > li > a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  background: url(../img/common/a_arr.svg) center center no-repeat;
  background-size: contain;
  margin-bottom: 2px;
  margin-right: 6px;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > a:before {
    width: 20px;
    height: 21px;
  }
}
#sitemaps #sitemap_ul > li > #sitemap_list {
  border-top: none;
}
#sitemaps #sitemap_ul > li > #sitemap_list > li {
  border-bottom: 1px solid #dee2ec;
}
#sitemaps #sitemap_ul > li > #sitemap_list > li > a {
  display: block;
  padding: 16px 16px 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > #sitemap_list > li > a {
    padding: 1em 1em 1em 1em;
    font-size: 2.2rem;
    background-size: 15px;
  }
}
#sitemaps #sitemap_ul > li > #sitemap_list > li > a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  background: url(../img/common/a_arr.svg) center center no-repeat;
  background-size: contain;
  margin-bottom: 2px;
  margin-right: 6px;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > #sitemap_list > li > a:before {
    width: 20px;
    height: 21px;
  }
}
#sitemaps #sitemap_ul > li > ul > li a {
  display: block;
  padding: 16px 16px 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > ul > li a {
    font-size: 2.2rem;
  }
}
#sitemaps #sitemap_ul > li > ul > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  opacity: 1;
  background: url(../img/common/hd_arr.svg) 94% center no-repeat;
  background-size: 7px auto;
  margin-bottom: 2px;
  margin-right: 6px;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > ul > li a:before {
    width: 20px;
    height: 21px;
  }
}

/*-----------------------------------------------------------
   price
-----------------------------------------------------------*/
#price .main_price > .tit {
  text-align: center;
  line-height: 1.2;
  font-size: 5.2vw;
  padding: 1.2em 0;
}
@media (min-width: 1024px) {
  #price .main_price > .tit {
    font-size: 3.2rem;
    padding: 1.6em 0;
    line-height: 1.4;
  }
}
#price .sec_price01 {
  background-color: #333;
  padding: 8% 0;
}
@media (min-width: 1024px) {
  #price .sec_price01 {
    padding: 4% 0;
  }
}
@media (min-width: 1024px) {
  #price .sec_price01 .inner {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #price .sec_price01 .inner {
    width: 94%;
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  #price .sec_price01 .inner {
    width: auto;
    margin: 0 8vw;
  }
}
#price .sec_price01 .ssec01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ssec01 {
    display: block;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
  }
}
#price .sec_price01 .ssec01 .blk,
#price .sec_price01 .ssec01 .pic {
  height: auto;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ssec01 .blk,
  #price .sec_price01 .ssec01 .pic {
    margin-bottom: 8%;
  }
}
#price .sec_price01 .ssec01 .blk {
  background-color: #fff;
  padding: 4%;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ssec01 .blk {
    padding: 5.6%;
  }
}
#price .sec_price01 .ssec01 .blk .gr01 {
  position: relative;
  padding: 0% 0 0 6.4%;
}
#price .sec_price01 .ssec01 .blk .gr01:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  height: 4px;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 0;
}
#price .sec_price01 .ssec01 .blk .gr01:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 100%;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 0;
}
#price .sec_price01 .ssec01 .blk .heading .tit {
  font-size: 7.2vw;
  line-height: 1;
  padding: 1.2em 0;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ssec01 .blk .heading .tit {
    font-size: 4rem;
    padding: 6.4% 0;
  }
}
#price .sec_price01 .ssec01 .pic img {
  width: 100%;
}
#price .sec_price01 .ssec01 .pic1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#price .sec_price01 .ssec01 .blk1 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#price .sec_price01 .ssec01 .pic2 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 8%;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ssec01 .pic2 {
    margin-top: 0;
  }
}
#price .sec_price01 .ssec01 .blk2 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
#price .sec_price01 .ul_menu {
  border-top: 1px solid #333;
}
#price .sec_price01 .ul_menu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.2% 0.4%;
  border-bottom: 1px dotted #333;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ul_menu > li {
    padding: 2.4% 0.8%;
  }
}
#price .sec_price01 .ul_menu > li .thead .tit {
  font-size: 3.6vw;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ul_menu > li .thead .tit {
    font-size: 2rem;
  }
}
#price .sec_price01 .ul_menu > li .thead .cap {
  font-size: 2vw;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ul_menu > li .thead .cap {
    font-size: 1.4rem;
  }
}
#price .sec_price01 .ul_menu > li .tdata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
#price .sec_price01 .ul_menu > li .tdata .att {
  line-height: 2;
  margin-right: 0.6em;
  font-size: 2vw;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ul_menu > li .tdata .att {
    font-size: 1.4rem;
    margin-right: 0.4em;
  }
}
#price .sec_price01 .ul_menu > li .tdata .money {
  min-width: 4em;
  font-family: "Oswald", sans-serif;
  font-size: 4vw;
  line-height: 1;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ul_menu > li .tdata .money {
    font-size: 2rem;
  }
}
#price .sec_price01 .ul_menu > li .tdata .money .unit {
  margin-right: 0.24em;
  font-size: 3.2vw;
  line-height: 1;
}
@media (min-width: 1024px) {
  #price .sec_price01 .ul_menu > li .tdata .money .unit {
    margin-right: 0.4em;
    font-size: 1.6rem;
  }
}
#price .sec_price01 .box {
  border: 2px solid #a2a2a5;
  padding: 4% 2.8%;
  margin-top: 8%;
}
@media (min-width: 1024px) {
  #price .sec_price01 .box {
    border: 4px solid #a2a2a5;
    padding: 2% 4%;
    margin-top: 4%;
  }
}
#price .sec_price01 .box .tit {
  font-size: 4vw;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
@media (min-width: 1024px) {
  #price .sec_price01 .box .tit {
    font-size: 2rem;
  }
}
#price .sec_price01 .box p {
  font-size: 2.8vw;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  #price .sec_price01 .box p {
    font-size: 1.6rem;
  }
}
#price .btn_area {
  margin: 4% auto;
  text-align: center;
}
@media (min-width: 1024px) {
  #price .btn_area {
    margin: 4% auto;
  }
}
#price a.btn_conv01 {
  background-color: #000;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-size: 3.2vw;
  line-height: 1.4;
  text-align: center;
  padding: 2.4% 8%;
}
@media (min-width: 1024px) {
  #price a.btn_conv01 {
    font-size: 2rem;
    border-radius: 56px;
    padding: 1.6% 5.6%;
  }
}

/*-----------------------------------------------------------
   services
-----------------------------------------------------------*/
#services .main_services > .tit {
  text-align: center;
  line-height: 1.2;
  font-size: 5.2vw;
  padding: 1.2em 0;
}
@media (min-width: 1024px) {
  #services .main_services > .tit {
    font-size: 3.2rem;
    padding: 1.6em 0;
    line-height: 1.4;
  }
}
#services .sec_services {
  position: relative;
  padding: 3.2% 0;
}
#services .sec_services:before {
  width: 64%;
  height: 60vw;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-color: #eaf0f4;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1024px) {
  #services .sec_services:before {
    height: 600px;
  }
}
#services .sec_services .ssec01 .heading {
  position: relative;
  padding: 8% 4%;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .heading {
    min-height: 240px;
    padding: 1.6% 3.2%;
  }
}
#services .sec_services .ssec01 .heading:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24%;
  height: 4px;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 0;
}
#services .sec_services .ssec01 .heading:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 200%;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 0;
}
#services .sec_services .ssec01 .heading .tit {
  font-size: 5.6vw;
  line-height: 1.4;
  font-weight: 200;
  margin-bottom: 0.64em;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .heading .tit {
    font-size: 4rem;
    padding: 0.4em 0;
  }
}
#services .sec_services .ssec01 .heading .desc {
  font-size: 3.2vw;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .heading .desc {
    font-size: 1.6rem;
  }
}
#services .sec_services .ssec01 .gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 5vw;
}
#services .sec_services .ssec01 .gr .blk_cont {
  width: 100%;
  margin-bottom: 5.6%;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .blk_cont {
    max-width: 850px;
  }
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .blk_cont .pic_gr1 {
    width: 850px;
    height: 470px;
  }
}
#services .sec_services .ssec01 .gr .blk_cont .pic_gr1 iframe {
  width: 100%;
  height: 100%;
  max-width: 850px;
  min-height: 48vw;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .blk_cont .pic_gr1 iframe {
    min-height: 30vw;
  }
}
#services .sec_services .ssec01 .gr .blk_cont .gr_ctl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4em 0;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .blk_cont .gr_ctl {
    padding: 2.4em 0;
  }
}
#services .sec_services .ssec01 .gr .blk_cont .gr_ctl .tit {
  font-weight: 200;
  line-height: 1;
  font-size: 5.2vw;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .blk_cont .gr_ctl .tit {
    font-size: 4rem;
  }
}
#services .sec_services .ssec01 .gr .blk_cont .gr_ctl .slide_ctl1 {
  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;
}
#services .sec_services .ssec01 .gr .blk_cont .gr_ctl .slide_ctl1 .txt_count {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  line-height: 1;
  font-size: 6.4vw;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .blk_cont .gr_ctl .slide_ctl1 .txt_count {
    font-size: 4rem;
  }
}
#services .sec_services .ssec01 .gr .blk_cont .gr_ctl .desc {
  font-size: 4vw;
  line-height: 1;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .blk_cont .gr_ctl .desc {
    font-size: 2.4rem;
  }
}
#services .sec_services .ssec01 .gr .blk_cont .desc {
  font-size: 2.8vw;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .blk_cont .desc {
    font-size: 1.6rem;
  }
}
#services .sec_services .ssec01 .gr .swiper {
  width: 100%;
  height: 100%;
  margin-right: 0;
}
#services .sec_services .ssec01 .gr .swiper .swiper-wrapper {
  width: 100%;
  max-width: 850px;
  height: auto;
}
#services .sec_services .ssec01 .gr .swiper-slide {
  width: 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;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
#services .sec_services .ssec01 .gr .tab-menu {
  width: 140px;
  height: 4px;
  margin: 0;
}
#services .sec_services .ssec01 .gr .tab-menu .swiper-slide {
  width: 20px;
  height: 2px;
  background-color: #d9d9d9;
}
#services .sec_services .ssec01 .gr .tab-menu .swiper-slide-thumb-active {
  background: #1f1715;
}
#services .sec_services .ssec01 .gr .swiper-pagination_zero {
  width: 2em;
  margin: 0 0.24em;
}
#services .sec_services .ssec01 .gr .swiper-button-next_zero {
  width: 20%;
}
@media (min-width: 1024px) {
  #services .sec_services .ssec01 .gr .swiper-button-next_zero {
    max-width: 50px;
  }
}
/*-----------------------------------------------------------
   form thanks
-----------------------------------------------------------*/
main.main_contact .sec_contact01 {
  padding: 4vw 0;
}
@media (min-width: 1024px) {
  main.main_contact .sec_contact01 {
    padding: 4% 0;
  }
}
main.main_contact .sec_contact01 .in > p {
  line-height: 1.6;
  font-size: 3.6vw;
}
@media (min-width: 1024px) {
  main.main_contact .sec_contact01 .in > p {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

#price_confirm .area_form {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#03304C), to(#0A5F95));
  background: linear-gradient(#03304C 0%, #0A5F95 100%);
  color: #fff;
  padding: 6% 0;
  margin-top: 0;
}
@media (min-width: 1024px) {
  #price_confirm .area_form {
    padding: 8% 0;
    margin-top: 0%;
  }
}
#price_confirm .area_form .tit {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 3.2%;
  font-size: 4.8vw;
}
@media (min-width: 1024px) {
  #price_confirm .area_form .tit {
    font-size: 4rem;
    font-size: 2.8rem;
  }
}
#price_confirm .area_form .ul_form > li {
  padding-bottom: 1.6%;
}

.page-contact-privacy {
  overflow: auto;
  height: 300px;
  background-color: #fff;
  color: #333;
  padding: 30px;
  font-size: 15px;
  margin-bottom: 0.4em;
}
@media (min-width: 768px) {
  .page-contact-privacy {
    padding: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .page-contact-privacy {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.page-contact-privacy h2 {
  margin-bottom: 10px;
  font-weight: bold;
}
.page-contact-privacy h3 {
  margin-bottom: 10px;
}
.page-contact-privacy p {
  margin-bottom: 30px;
}

.page-contact-txt {
  text-align: center;
  margin-bottom: 1.6em;
}

input[type=checkbox] {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=checkbox] ~ span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 0 0 0 57px;
  font-size: 28px;
}
@media (min-width: 768px) {
  input[type=checkbox] ~ span {
    font-size: 18px;
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  input[type=checkbox] ~ span {
    margin-bottom: 15px;
    padding: 0 0 0 30px;
    font-size: 16px;
  }
}
input[type=checkbox] ~ span::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #fff;
  display: block;
  background: transparent;
}
@media (min-width: 768px) {
  input[type=checkbox] ~ span::before {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 479px) {
  input[type=checkbox] ~ span::before {
    width: 14px;
    height: 14px;
  }
}

input[type=checkbox] ~ span::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  height: 7px;
  width: 16px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
  left: 7px;
  opacity: 0;
}
@media (min-width: 768px) {
  input[type=checkbox] ~ span::after {
    height: 5px;
    width: 14px;
    top: 11px;
    left: 5px;
  }
}
@media (max-width: 479px) {
  input[type=checkbox] ~ span::after {
    width: 10px;
    height: 5px;
    top: 9px;
    left: 3px;
  }
}

input[type=checkbox]:checked ~ span::after {
  opacity: 1;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-align: center;
}

div.wpcf7-response-output {
  margin: 2em 0 0 0;
  padding: 0;
  border: none;
  font-weight: bold;
  text-align: center;
}

div.wpcf7-mail-sent-ok {
  border: none;
  color: #000;
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 2em;
}

h4.member_txt_sent {
  margin: 2em 0;
  text-align: center;
}

.member_txt_sent {
  text-align: center;
}

div.wpcf7-mail-sent-ng, div.wpcf7-aborted {
  border: none;
  color: #dc0003;
  font-weight: bold;
}

div.wpcf7-spam-blocked {
  border: none;
  color: #dc0003;
  font-weight: bold;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  border: none;
  color: #dc0003;
  font-weight: bold;
}

span.wpcf7-not-valid-tip {
  color: #dc0003;
  font-size: 0.8em;
  font-weight: bold;
  display: block;
  margin: 0.4em 0 1em 0;
}
@media (min-width: 1024px) {
  span.wpcf7-not-valid-tip {
    font-size: 1.6rem;
  }
}

.wpcf7-not-valid {
  background: #ffd0d1;
}

#wrap_contact table .post {
  margin: 0;
  padding: 0;
}

.member_txt {
  padding: 0 0 5px 0;
}

.sent table {
  display: none !important;
}

div.wpcf7 .ajax-loader {
  background-image: none;
  vertical-align: baseline;
}

div.wpcf7 .ajax-loader::after {
  content: "\f110";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
  display: inline-block;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.back-top {
  background: #882539;
  color: #fff;
  padding: 15px 30px;
  margin: 50px auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
  background: transparent !important;
}

.wpcf7c-conf {
  background: transparent;
}

main.main_thanks .cont {
  text-align: center;
  padding: 4vw 0;
}
@media (min-width: 1024px) {
  main.main_thanks .cont {
    padding: 4% 0;
  }
}
main.main_thanks .cont .in > p {
  line-height: 1.6;
  font-size: 3.6vw;
}
@media (min-width: 1024px) {
  main.main_thanks .cont .in > p {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}
main.main_thanks .cont .gr_txt {
  margin-bottom: 16vw;
}
@media (min-width: 1024px) {
  main.main_thanks .cont .gr_txt {
    margin-bottom: 0;
  }
}
main.main_thanks .cont .gr_txt .hd_gr .tit {
  color: #882539;
  line-height: 1.4;
  margin-bottom: 4%;
  font-size: 5.05vw;
}
@media (min-width: 1024px) {
  main.main_thanks .cont .gr_txt .hd_gr .tit {
    font-size: 3.4rem;
    margin-bottom: 2%;
  }
}
@media (max-width: 479px) {
  main.main_thanks .cont .gr_txt .hd_gr .tit:after {
    display: none;
  }
}
main.main_thanks .cont .gr_txt p {
  line-height: 1.6;
  font-size: 4.2vw;
}
@media (min-width: 1024px) {
  main.main_thanks .cont .gr_txt p {
    font-size: 2.4rem;
  }
}

.sec_price02 .area_form {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#316ea9), to(#52b3f6));
  background: linear-gradient(#316ea9 0%, #52b3f6 100%);
  color: #fff;
  padding: 4% 0;
}
@media (min-width: 1024px) {
  .sec_price02 .area_form {
    padding: 8% 0;
    margin-top: 8%;
  }
}
.sec_price02 .area_form > .in .tip {
  position: absolute;
  top: -24%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #0D0D0D;
  line-height: 1;
}
@media (min-width: 1024px) {
  .sec_price02 .area_form > .in .tip {
    font-size: 2.4rem;
  }
}
.sec_price02 .area_form > .in .tip:before {
  margin-right: 0.4em;
  font-size: 1.6rem;
  content: "＼";
}
.sec_price02 .area_form > .in .tip:after {
  margin-left: 0.4em;
  font-size: 1.6rem;
  content: "／";
}
.sec_price02 .area_form > .in > .tit {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 3.2%;
}
@media (min-width: 1024px) {
  .sec_price02 .area_form > .in > .tit {
    font-size: 3.4rem;
  }
}

.box_warnings {
  max-width: 874px;
  margin: 0 auto 8%;
  border: 1px solid #fff;
  padding: 2.4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box_warnings .txt_first {
  font-size: 1.6rem;
  line-height: 1;
}
.box_warnings .ol_warnings {
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 3.2% 0;
}
.box_warnings .ol_warnings > li {
  margin-bottom: 0.4em;
}
.box_warnings .ol_warnings > li:last-child {
  margin-bottom: 0;
}
.box_warnings .txt_end {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  padding: 1.6% 0 0;
  text-decoration: underline;
}

.blk_form_std {
  max-width: 874px;
  margin: 0 auto;
}

.ul_form > li {
  margin-bottom: 1.6%;
}
.ul_form > li:last-child {
  margin-bottom: 0;
}
.ul_form > li .fh {
  display: block;
  padding: 0.48em 0;
  line-height: 1;
  font-size: 3.4vw;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .ul_form > li .fh {
    font-size: 2.4rem;
  }
}
.ul_form > li .fh .req {
  background-color: #F5CE40;
  display: inline-block;
  vertical-align: middle;
  padding: 0.08em 0.24em;
  line-height: 1;
  margin-left: 0.64em;
  font-size: 3.4vw;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .ul_form > li .fh .req {
    font-size: 2.4rem;
  }
}
.ul_form > li .fd input, .ul_form > li .fd select, .ul_form > li .fd textarea {
  font-size: 4.2vw;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .ul_form > li .fd input, .ul_form > li .fd select, .ul_form > li .fd textarea {
    font-size: 2.4rem;
  }
}
.ul_form > li .fd input.wpcf7-text,
.ul_form > li .fd textarea.wpcf7-textarea {
  width: 100%;
  padding: 0.56em;
}
@media (min-width: 1024px) {
  .ul_form > li .fd input.wpcf7-text,
  .ul_form > li .fd textarea.wpcf7-textarea {
    padding: 0.74em;
  }
}
.ul_form > li .fd select.wpcf7-select {
  width: 50%;
  padding: 0.4em 0.74em;
}
@media (max-width: 479px) {
  .ul_form > li .fd select.wpcf7-select {
    width: 100%;
    padding: 0.24em 0.56em;
  }
}
.ul_form > li .fd .wpcf7-list-item {
  display: block;
  font-size: 3.4vw;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .ul_form > li .fd .wpcf7-list-item {
    font-size: 2.4rem;
  }
}
.ul_form > li .fd textarea.wpcf7-textarea {
  height: 40vw;
}
@media (min-width: 1024px) {
  .ul_form > li .fd textarea.wpcf7-textarea {
    height: 24vw;
  }
}

.gr_submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8% auto 4%;
}
.gr_submit input {
  margin: 0 1.6%;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-back {
  color: #882539;
  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;
  width: 80%;
  height: 30vw;
  margin: 0 auto;
  border-radius: 35px;
  border: 1px solid #882539;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 4.8vw;
}
@media (min-width: 1024px) {
  .wpcf7-back {
    font-size: 2.6rem;
    width: 372px;
    height: 70px;
  }
}
.wpcf7-back:hover {
  background-color: #882539;
  color: #fff;
}

.txt_agree {
  font-size: 4vw;
  line-height: 1.4;
  padding: 0.8em 0;
}
@media (min-width: 1024px) {
  .txt_agree {
    font-size: 2.4rem;
  }
}

.check_privacy {
  text-align: center;
  margin: 2.4% auto;
}
@media (min-width: 1024px) {
  .check_privacy {
    margin: 4% auto;
  }
}

.wpcf7-previous {
  color: #882539;
  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;
  width: 48%;
  height: 12vw;
  margin: 0 auto;
  font-size: 4.4vw;
  border-radius: 40px;
  background: #fff;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  position: relative;
}
@media (min-width: 1024px) {
  .wpcf7-previous {
    width: 380px;
    height: 78px;
    font-size: 2.6rem;
  }
}
.wpcf7-previous:after {
  width: 8vw;
  height: 8vw;
  content: "";
  background-image: url(../img/feature/arr_btn1.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0.8em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .wpcf7-previous:after {
    width: 44px;
    height: 44px;
  }
}
.wpcf7-confirm,
.wpcf7-submit {
  color: #be781b;
  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;
  width: 48%;
  height: 12vw;
  margin: 0 auto;
  font-size: 4.4vw;
  font-weight: 600;
  border-radius: 4px;
  background-color: #fff;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #be781b;
}
@media (min-width: 1024px) {
  .wpcf7-confirm,
  .wpcf7-submit {
    width: 64%;
    height: 78px;
    font-size: 2.6rem;
  }
}
.wpcf7-confirm:after,
.wpcf7-submit:after {
  width: 8vw;
  height: 8vw;
  content: "";
  background-image: url(../img/feature/arr_btn1.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0.8em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .wpcf7-confirm:after,
  .wpcf7-submit:after {
    width: 44px;
    height: 44px;
  }
}
.wpcf7-confirm:hover,
.wpcf7-submit:hover {
  background-color: #be781b;
  color: #fff;
  border: 1px solid #fff;
}

/*-----------------------------------------------------------
   biz
-----------------------------------------------------------*/
.tit_chap1 {
  font-size: 4.8vw;
  line-height: 1;
  color: #be781b;
}
@media (min-width: 1024px) {
  .tit_chap1 {
    font-size: 3.2rem;
  }
}
.tit_chap1:before {
  width: 2.4vw;
  height: 2.4vw;
  content: "";
  border: 8px solid #be781b;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.24em;
  margin-bottom: 0.16em;
}
@media (min-width: 1024px) {
  .tit_chap1:before {
    width: 34px;
    height: 34px;
  }
}

.tit_std1 {
  background-color: #be781b;
  color: #fff;
  line-height: 1;
  position: relative;
  padding: 0.64em 0.8em;
  border: 2px solid #03304C;
  overflow: hidden;
  z-index: 50;
}
@media (min-width: 1024px) {
  .tit_std1 {
    font-size: 3.2rem;
    font-size: 2.8rem;
  }
}
.tit_std1:before {
  position: absolute;
  top: -60%;
  right: -10%;
  width: 100px;
  height: 300%;
  content: "";
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  background: #882539;
  z-index: 10;
}
@media (min-width: 1024px) {
  .tit_std1:before {
    top: -60%;
    right: -10%;
    width: 300px;
    height: 300%;
  }
}

main.main_biz .sec_biz01 {
  padding: 8vw 0;
  font-size: 3.6vw;
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz01 {
    padding: 6.4vw 0 3.2vw;
    padding: 3.4vw 0 2.54vw;
    font-size: 2.4rem;
    font-size: 1.5rem;
  }
  main.main_biz .sec_biz01:last-child {
    padding-bottom: 6.4vw;
  }
}
main.main_biz .sec_biz01 .txt_line p {
  margin-bottom: 0.4em;
  line-height: 1.64;
}
main.main_biz .sec_biz01 .txt_line p:last-child {
  margin-bottom: 0;
}
main.main_biz .sec_biz02 .blk_cat {
  padding: 0 0 4%;
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat {
    padding: 4% 0;
    padding: 2.4% 0;
  }
}
main.main_biz .sec_biz02 .blk_cat .blk_subcat .txt_line {
  font-size: 4vw;
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .blk_subcat .txt_line {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
main.main_biz .sec_biz02 .blk_cat .lo {
  padding: 4% 0;
  margin-bottom: 4%;
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .lo {
    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;
    margin-bottom: 0;
  }
}
main.main_biz .sec_biz02 .blk_cat .lo .pic {
  margin-bottom: 4%;
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .lo .pic {
    width: 60%;
    max-width: 520px;
    margin-bottom: 0;
  }
}
main.main_biz .sec_biz02 .blk_cat .lo .pic img {
  width: 100%;
}
main.main_biz .sec_biz02 .blk_cat .lo .txt {
  font-size: 4vw;
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .lo .txt {
    width: 60%;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
main.main_biz .sec_biz02 .blk_cat .lo .txt > .tit {
  line-height: 1.4;
  color: #882539;
  font-size: 5.2vw;
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .lo .txt > .tit {
    font-size: 2.4rem;
  }
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .lo:nth-child(odd) .pic {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .lo:nth-child(odd) .txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 4% 0 4% 3.2%;
  }
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .lo:nth-child(even) .pic {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 1024px) {
  main.main_biz .sec_biz02 .blk_cat .lo:nth-child(even) .txt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 4% 3.2% 4% 0;
  }
}

/*-----------------------------------------------------------
   share
-----------------------------------------------------------*/
/* 色変更のみ */
a.btn_std2 {
  color: #fff;
  background-color: #882539;
}
a.btn_std2:hover {
  opacity: 1;
  background-color: #eaf1f6;
}

/* 色変更のみ */
a.btn_std1 {
  color: #fff;
  background-color: #882539;
  border-radius: 50px;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
@media (max-width: 479px) {
  a.btn_std1 {
    font-size: 2.2rem;
  }
}
a.btn_std1:hover {
  opacity: 1;
  background-color: #eaf1f6;
}

/*-----------------------------------------------------------
   index
-----------------------------------------------------------*/
body#index #key {
  height: 64vh;
  position: relative;
  z-index: 10;
  background: #000;
}
@media (min-width: 1024px) {
  body#index #key {
    height: 100vh;
  }
}
body#index #key .heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1000;
  text-align: center;
  white-space: nowrap;
}
body#index #key .heading .tit {
  font-size: 5.6vw;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  body#index #key .heading .tit {
    font-size: 3.2rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
}
body#index #key .heading .desc {
  font-size: 2.8vw;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: 0.4em;
}
@media (min-width: 1024px) {
  body#index #key .heading .desc {
    font-size: 2rem;
  }
}
body#index #key .slide {
  width: 100%;
  height: 64vh;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  body#index #key .slide {
    width: 1500px;
    height: 100vh;
  }
}
body#index #key .slide .phrase {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4.4rem;
  line-height: 1;
  z-index: 1;
  text-align: center;
}
@media (max-width: 479px) {
  body#index #key .slide .phrase {
    width: 80%;
    font-size: 3.2rem;
    letter-spacing: 0.24em;
  }
}
body#index #key .slide01 {
  background: url(../img/index/key_slide1_bg.jpg) center no-repeat;
  background-size: cover;
}
@media (max-width: 479px) {
  body#index #key .slide01 {
    background-size: cover;
  }
}
body#index #key .slide02 {
  background: url(../img/index/key_slide2_bg.jpg) center no-repeat;
}
body#index #key .slide03 {
  background: url(../img/index/key_slide3_bg.jpg) center no-repeat;
}
body#index #key.none {
  background: none;
}
body#index #key .flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 479px) {
  body#index #key .flickity-prev-next-button {
    top: auto;
    bottom: 0;
    border-radius: 0%;
  }
}
body#index #key .flickity-page-dots {
  bottom: 16px;
}
@media (min-width: 1024px) {
  body#index #key .flickity-page-dots {
    bottom: -16px;
  }
}
body#index #key .flickity-page-dots .dot {
  background: #fff;
}
@media (min-width: 1024px) {
  body#index #key .flickity-page-dots .dot {
    background: #333;
  }
}
body#index #key .flickity-prev-next-button.previous {
  left: 0px;
}
body#index #key .flickity-prev-next-button.next {
  right: 0px;
}
body#index #home_lead .intro {
  padding: 64px 0;
  text-align: center;
}
body#index #home_lead .intro > .tit {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
@media (max-width: 479px) {
  body#index #home_lead .intro > .tit {
    font-size: 3.2rem;
  }
}
body#index #home_lead .intro .tit + p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media (max-width: 479px) {
  body#index #home_lead .intro .tit + p {
    font-size: 2.2rem;
  }
}
body#index #home_lead .point_blk {
  margin-bottom: 56px;
}
body#index #home_lead .point_blk > .tit {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 16px 0;
}
@media (max-width: 479px) {
  body#index #home_lead .point_blk > .tit {
    font-size: 3.2rem;
  }
}
body#index #home_lead .point_blk > .tit span.b {
  font-size: 4.2rem;
  color: #882539;
}
@media (max-width: 479px) {
  body#index #home_lead .point_blk > .tit span.b {
    font-size: 4.6rem;
  }
}
body#index #home_lead .point_blk .ul_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 479px) {
  body#index #home_lead .point_blk .ul_point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body#index #home_lead .point_blk .ul_point > li {
  width: 300px;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  body#index #home_lead .point_blk .ul_point > li {
    width: 100%;
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 64px;
  }
}
body#index #home_lead .point_blk .ul_point > li > .tit {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  body#index #home_lead .point_blk .ul_point > li > .tit {
    font-size: 2.4rem;
  }
}
body#index #home_lead .point_blk .ul_point > li > .tit span.b {
  font-size: 2.8rem;
  color: #882539;
}
@media (max-width: 479px) {
  body#index #home_lead .point_blk .ul_point > li > .tit span.b {
    font-size: 3.2rem;
  }
}
body#index #home_lead .point_blk .ul_point > li > .tmb {
  margin: 0 auto;
  text-align: center;
}
body#index #home_lead .point_blk .ul_point > li > .tmb img {
  border-radius: 8px;
}
@media (max-width: 479px) {
  body#index #home_lead .point_blk .ul_point > li > .tmb img {
    width: 100%;
  }
}
body#index #home_lead .point_blk .ul_point > li > .cap {
  padding: 8px 4px;
  min-height: 160px;
}
@media (max-width: 479px) {
  body#index #home_lead .point_blk .ul_point > li > .cap {
    padding: 16px 8px;
  }
}
body#index #home_lead .video_area {
  background: #882539;
  color: #fff;
  padding-top: 40px;
}
body#index #home_lead .video_area .video_blk > .tit {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 16px 0;
}
@media (max-width: 479px) {
  body#index #home_lead .video_area .video_blk > .tit {
    font-size: 3.2rem;
  }
}
body#index #home_lead .video_area .video_blk > .tit span.b {
  font-size: 4.2rem;
  color: #882539;
}
@media (max-width: 479px) {
  body#index #home_lead .video_area .video_blk > .tit span.b {
    font-size: 4.2rem;
  }
}
body#index #home_lead .video_area .video_blk .ul_video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 16px 0 40px;
}
@media (max-width: 479px) {
  body#index #home_lead .video_area .video_blk .ul_video {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body#index #home_lead .video_area .video_blk .ul_video > li {
  width: 30%;
  margin: 0 20px;
}
@media (max-width: 479px) {
  body#index #home_lead .video_area .video_blk .ul_video > li {
    width: 100%;
    margin: 0 auto 32px;
    text-align: center;
  }
  body#index #home_lead .video_area .video_blk .ul_video > li video {
    width: 100%;
  }
}
body#index #home_topics .btn_area {
  width: 320px;
  margin: 0 auto;
}
body#index #home_msg .lo1 {
  position: relative;
}
@media (max-width: 479px) {
  body#index #home_msg .lo1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body#index #home_msg .lo1 .tmb_profile {
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
@media (max-width: 479px) {
  body#index #home_msg .lo1 .tmb_profile {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: static;
    margin: 40px auto;
    text-align: center;
  }
}
body#index #home_msg .lo1 .tmb_profile img.thum {
  display: block;
  margin: 0 auto;
}
body#index #home_msg .lo1 .tmb_profile .date {
  padding: 16px 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
body#index #home_msg .lo1 .tmb_profile .date .org {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 479px) {
  body#index #home_msg .lo1 .tmb_profile .date .org {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
}
body#index #home_msg .lo1 .tmb_profile .date .name {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 479px) {
  body#index #home_msg .lo1 .tmb_profile .date .name {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}
body#index #home_msg .lo1 .tmb_profile .date .name b {
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 479px) {
  body#index #home_msg .lo1 .tmb_profile .date .name b {
    font-size: 2.6rem;
  }
}
body#index #home_msg .lo1 .tmb_profile .date a.btn_std1 {
  color: #fff;
  background-color: #ffcc33;
  font-size: 1.6rem;
  -webkit-box-shadow: 0px 3px 0px rgb(206, 137, 0);
          box-shadow: 0px 3px 0px rgb(206, 137, 0);
}
@media (max-width: 479px) {
  body#index #home_msg .lo1 .tmb_profile .date a.btn_std1 {
    font-size: 2.2rem;
  }
}
body#index #home_msg .lo1 .tmb_profile .date a.btn_std1:active {
  position: relative;
  top: 3px;
  -webkit-box-shadow: 0 0 0 rgb(206, 137, 0);
          box-shadow: 0 0 0 rgb(206, 137, 0);
}
body#index #home_msg .lo1 .txt_profile {
  margin-right: 240px;
}
@media (max-width: 479px) {
  body#index #home_msg .lo1 .txt_profile {
    margin-right: 0;
  }
}
body#index #home_msg .btn_area {
  width: 320px;
  margin: 16px auto 16px;
}
body#index .sec_home_pickup01 {
  padding: 80px 0 40px;
}
body#index .sec_home_pickup01 .lo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  z-index: -100;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body#index .sec_home_pickup01 .lo .tmb {
  width: 50%;
  z-index: -50;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo .tmb {
    width: auto;
  }
}
body#index .sec_home_pickup01 .lo .date {
  width: 480px;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  z-index: 0;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo .date {
    width: auto;
  }
}
body#index .sec_home_pickup01 .lo .date .tit {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 2.6rem;
  line-height: 1.4;
  color: #882539;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo .date .tit {
    font-size: 3.2rem;
  }
}
body#index .sec_home_pickup01 .lo .date .tit:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  z-index: -1;
}
body#index .sec_home_pickup01 .lo .date .txt_line {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo .date .txt_line {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
body#index .sec_home_pickup01 .lo .date .bnr_area {
  margin: 16px auto 0;
}
body#index .sec_home_pickup01 .lo .date a.btn_std {
  max-width: 240px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.68);
          box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.68);
  display: block;
  text-align: center;
  border-radius: 4px;
  padding: 0.8em 0.8em 0.74em;
  font-size: 1.8rem;
  line-height: 1;
  vertical-align: bottom;
  background: url(../img/common/arr_w.svg) 96% center no-repeat #882539;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo .date a.btn_std {
    max-width: 400px;
    font-size: 2.2rem;
    margin: 0 auto;
  }
}
body#index .sec_home_pickup01 .lo .date a.btn_std:hover {
  background-position: 98% center;
}
body#index .sec_home_pickup01 .lo:nth-child(odd) .tmb {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: left;
  margin-left: 2%;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(odd) .tmb {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 auto;
    text-align: center;
  }
}
body#index .sec_home_pickup01 .lo:nth-child(odd) .tmb img {
  border-radius: 24px 0 0 24px;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(odd) .tmb img {
    border-radius: 0;
  }
}
body#index .sec_home_pickup01 .lo:nth-child(odd) .date {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 0 0 auto;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(odd) .date {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 auto;
  }
}
body#index .sec_home_pickup01 .lo:nth-child(odd) .date:before {
  width: 160px;
  height: 240px;
  content: "";
  border-top: 1px solid #882539;
  border-right: 1px solid #882539;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -10;
}
body#index .sec_home_pickup01 .lo:nth-child(odd) .date:after {
  width: 240px;
  height: 80px;
  content: "";
  border-bottom: 1px solid #882539;
  border-left: 1px solid #882539;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -10;
}
body#index .sec_home_pickup01 .lo:nth-child(even) .tmb {
  text-align: right;
  margin-right: 2%;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(even) .tmb {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
body#index .sec_home_pickup01 .lo:nth-child(even) .tmb img {
  border-radius: 0 24px 24px 0;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(even) .tmb img {
    border-radius: 0;
  }
}
body#index .sec_home_pickup01 .lo:nth-child(even) .date {
  padding-right: 2%;
  margin: 0 auto 0 0;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(even) .date {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
body#index .sec_home_pickup01 .lo:nth-child(even) .date:before {
  width: 160px;
  height: 240px;
  content: "";
  border-top: 1px solid #882539;
  border-left: 1px solid #882539;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -10;
}
body#index .sec_home_pickup01 .lo:nth-child(even) .date:after {
  width: 240px;
  height: 80px;
  content: "";
  border-bottom: 1px solid #882539;
  border-right: 1px solid #882539;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -10;
}
body#index .sec_home_pickup01 .lo:nth-child(1) .tit:before {
  width: 218px;
  height: 270px;
  background: url(../img/index/point_icn1.svg) center center no-repeat;
  background-size: contain;
  left: -40px;
  top: -100px;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(1) .tit:before {
    width: 138px;
    height: 270px;
    left: auto;
    top: auto;
    right: 0;
    bottom: -190px;
  }
}
body#index .sec_home_pickup01 .lo:nth-child(2) .tit:before {
  width: 263px;
  height: 257px;
  background: url(../img/index/point_icn2.svg) center center no-repeat;
  background-size: contain;
  right: -170px;
  top: -60px;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(2) .tit:before {
    width: 168px;
    height: 150px;
    left: auto;
    top: auto;
    right: 0;
    bottom: -120px;
  }
}
body#index .sec_home_pickup01 .lo:nth-child(3) .tit:before {
  width: 258px;
  height: 249px;
  background: url(../img/index/point_icn3.svg) center center no-repeat;
  background-size: contain;
  left: -80px;
  top: -60px;
}
@media (max-width: 479px) {
  body#index .sec_home_pickup01 .lo:nth-child(3) .tit:before {
    width: 158px;
    height: 140px;
    left: auto;
    top: auto;
    right: 0;
    bottom: -110px;
  }
}
body#index .sec_home_newspickup01 {
  font-size: 2.8vw;
}
@media (min-width: 1024px) {
  body#index .sec_home_newspickup01 {
    font-size: 1.4rem;
  }
}
body#index .sec_home_newspickup01 .ul_news .blknew {
  height: 56px;
  line-height: 56px;
}
body#index .sec_home_newspickup01 .ul_news .blknew a {
  width: 100%;
  padding: 0 1.6em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  body#index .sec_home_newspickup01 .ul_news .blknew a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
body#index .sec_home_newspickup01 .ul_news .blknew__date {
  width: 10em;
  margin-right: 1em;
}
body#index .sec_home_newspickup01 .ul_news .blknew__title {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body#index .sec_home_newspickup01 .btn_blk {
  position: absolute;
  right: 2vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body#index .sec_home_newspickup01 .btn_blk a.btn {
  width: 16em;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 24px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 0.6em 2.8em;
  line-height: 1;
}
body#index .sec_home_newspickup01 .btn_blk a.btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 15px;
  background: url(../img/common/a_arr2.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 479px) {
  body#index .sec_home_newspickup01 .btn_blk a.btn:after {
    width: 20px;
    height: 21px;
  }
}
body#index .sec_home_newspickup01 .btn_blk a.btn:hover {
  background-color: #882539;
}
body#index .hd_sec02 {
  position: relative;
  padding: 2.4vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  body#index .hd_sec02 {
    padding: 4% 0;
  }
}
@media (min-width: 768px) {
  body#index .hd_sec02 {
    padding: 4% 0;
  }
}
@media (max-width: 479px) {
  body#index .hd_sec02 {
    padding: 4vw 0;
    text-align: center;
  }
}
body#index .hd_sec02 .tit {
  font-size: 1vw;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1;
}
@media (min-width: 1024px) {
  body#index .hd_sec02 .tit {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  body#index .hd_sec02 .tit {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  body#index .hd_sec02 .tit {
    font-size: 3.2vw;
    letter-spacing: 0.04em;
  }
}
body#index .hd_sec02 .tit:before {
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-size: 3.2vw;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 600;
  margin-bottom: 0.64vw;
}
@media (min-width: 1024px) {
  body#index .hd_sec02 .tit:before {
    font-size: 6rem;
    margin-bottom: 0.16em;
  }
}
@media (min-width: 768px) {
  body#index .hd_sec02 .tit:before {
    font-size: 4.8rem;
  }
}
@media (max-width: 479px) {
  body#index .hd_sec02 .tit:before {
    font-size: 6.4vw;
    margin-bottom: 1.6vw;
  }
}
body#index .sec_home_works01 {
  margin: 0 auto 6.4%;
}
body#index .sec_home_works01 .mv {
  height: 44vw;
}
@media (min-width: 1024px) {
  body#index .sec_home_works01 .mv {
    height: 100%;
  }
}
@media (max-width: 479px) {
  body#index .sec_home_works01 .mv {
    height: 36vw;
  }
}
body#index .sec_home_works01 .mv img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 479px) {
  body#index .sec_home_works01 .mv img {
    width: 100%;
  }
}
body#index .sec_home_works01 .hd_sec03 {
  padding: 3.2vw 5vw 4.8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1080px;
  margin: 0 auto -8vw;
  position: relative;
  top: -8vw;
  z-index: 10;
}
@media (min-width: 1024px) {
  body#index .sec_home_works01 .hd_sec03 {
    padding: 3.2vw 0 4.8vw;
  }
}
body#index .sec_home_works01 .hd_sec03:before {
  width: 100vw;
  height: 100%;
  content: "";
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
body#index .sec_home_works01 .hd_sec03 .tit {
  font-size: 4vw;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1;
}
@media (min-width: 1024px) {
  body#index .sec_home_works01 .hd_sec03 .tit {
    font-size: 1.6rem;
  }
}
@media (max-width: 479px) {
  body#index .sec_home_works01 .hd_sec03 .tit {
    letter-spacing: 0.04em;
  }
}
body#index .sec_home_works01 .hd_sec03 .tit:before {
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-size: 10vw;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 600;
  margin-bottom: 0.64vw;
}
@media (min-width: 1024px) {
  body#index .sec_home_works01 .hd_sec03 .tit:before {
    font-size: 6rem;
    margin-bottom: 0.16em;
  }
}
@media (min-width: 768px) {
  body#index .sec_home_works01 .hd_sec03 .tit:before {
    font-size: 4.8rem;
  }
}
@media (max-width: 479px) {
  body#index .sec_home_works01 .hd_sec03 .tit:before {
    margin-bottom: 1.6vw;
  }
}
@media (min-width: 1024px) {
  body#index .sec_home_works01 .hd_sec03 .btn_area {
    margin-right: 2.4vw;
  }
}
body#index .sec_home_works01 .hd_sec03 .btn_area a.btn01 {
  min-width: 140px;
  margin-top: 0;
}
body#index .ul_works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body#index .ul_works > li img {
  width: 100%;
}
@media (min-width: 1024px) {
  body#index .ul_works > li {
    width: calc(50% - 6px);
    max-width: 534px;
  }
  body#index .ul_works > li img {
    width: 100%;
  }
}
body#index .ul_works > li.three {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  body#index .ul_works > li.three {
    max-width: inherit;
  }
}
body#index .ul_works > li .ul_pazl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body#index .ul_works > li .ul_pazl > li {
  margin-bottom: 12px;
  width: calc(50% - 6px);
}
body#index .ul_works > li .ul_pazl > li.large {
  width: 100%;
}
body#index .ul_works > li .ul_pazl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1024px) {
  body#index .ul_works > li .ul_pazl2 {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
body#index .ul_works > li .ul_pazl2 > li {
  margin-bottom: 12px;
  width: calc(50% - 6px);
}
@media (min-width: 1024px) {
  body#index .ul_works > li .ul_pazl2 > li {
    width: calc(25% - 6px);
  }
}
body#index .ul_works > li .ul_pazl2 > li.large {
  width: 100%;
}
@media (min-width: 1024px) {
  body#index .ul_works > li .ul_pazl2 > li.large {
    width: calc(50% - 12px);
    max-width: 534px;
  }
}

body#index .btn_area a.btn01 {
  width: 48%;
  font-size: 4vw;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  background-color: #333;
  border-radius: 40px;
  color: #fff;
  text-align: center;
  padding: 0.72em 4%;
  letter-spacing: 0.04em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4% auto 0;
  position: relative;
}
@media (min-width: 1024px) {
  body#index .btn_area a.btn01 {
    min-width: 200px;
    width: 38%;
    font-size: 2rem;
  }
}
body#index .btn_area a.btn01:after {
  width: 8px;
  height: 14px;
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/common/arr_w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
body#index .sec_home00 {
  padding: 8% 0;
}
@media (min-width: 1024px) {
  body#index .sec_home00 {
    padding: 4% 0;
  }
}
body#index .sec_home00 .tit {
  font-size: 4vw;
  margin-bottom: 2.4vw;
}
@media (min-width: 1024px) {
  body#index .sec_home00 .tit {
    font-size: 1.4rem;
    margin-bottom: 0.8em;
  }
}
body#index .sec_home00 .tit:before {
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-size: 10vw;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 600;
  margin-bottom: 0.56vw;
  line-height: 1;
}
@media (min-width: 1024px) {
  body#index .sec_home00 .tit:before {
    font-size: 4.8rem;
    margin-bottom: 0.08em;
  }
}
body#index .sec_home01 {
  background-color: #eaeaeb;
}
body#index .sec_home01 .lo1 {
  padding: 12% 0;
}
@media (min-width: 1024px) {
  body#index .sec_home01 .lo1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6.4% 0;
  }
}
body#index .sec_home01 .lo1 .tmb {
  text-align: center;
}
@media (min-width: 1024px) {
  body#index .sec_home01 .lo1 .tmb {
    width: 60%;
  }
}
body#index .sec_home01 .lo1 .tmb img {
  width: 100%;
}
@media (min-width: 1024px) {
  body#index .sec_home01 .lo1 .tmb img {
    max-width: 100%;
  }
}
body#index .sec_home01 .lo1 .txt {
  background-color: #fff;
  padding: 5.6% 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1024px) {
  body#index .sec_home01 .lo1 .txt {
    width: 58%;
    margin-left: -8%;
    padding: 4% 5.6%;
  }
}
body#index .sec_home01 .lo1 .txt .tit {
  font-size: 4vw;
  margin-bottom: 2.4vw;
}
@media (min-width: 1024px) {
  body#index .sec_home01 .lo1 .txt .tit {
    font-size: 1.4rem;
    margin-bottom: 0.8em;
  }
}
body#index .sec_home01 .lo1 .txt .tit:before {
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-size: 10vw;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 600;
  margin-bottom: 0.56vw;
  line-height: 1;
}
@media (min-width: 1024px) {
  body#index .sec_home01 .lo1 .txt .tit:before {
    font-size: 4.8rem;
    margin-bottom: 0.08em;
  }
}
body#index .sec_home01 .lo1 .txt .txt_line {
  font-size: 3.4vw;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  body#index .sec_home01 .lo1 .txt .txt_line {
    font-size: 1.5rem;
    min-height: 14em;
  }
}
body#index .sec_home01 .lo1 .txt .txt_line p {
  margin-bottom: 0.64em;
}
body#index .sec_home01 .lo1 .txt .txt_line p:last-child {
  margin-bottom: 0;
}
body#index .sec_home02 .lo1 {
  padding: 8.8% 0;
}
@media (min-width: 1024px) {
  body#index .sec_home02 .lo1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6.4% 0;
  }
}
body#index .sec_home02 .lo1 .tmb {
  margin: 8% auto 0;
}
@media (min-width: 1024px) {
  body#index .sec_home02 .lo1 .tmb {
    width: 68%;
    margin: 0 auto;
  }
}
body#index .sec_home02 .lo1 .tmb .ul_thum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 4%;
}
@media (min-width: 1024px) {
  body#index .sec_home02 .lo1 .tmb .ul_thum {
    width: 1230px;
    margin-bottom: -0.8%;
  }
}
body#index .sec_home02 .lo1 .tmb .ul_thum > li {
  width: 24%;
  margin-bottom: 2%;
}
@media (min-width: 1024px) {
  body#index .sec_home02 .lo1 .tmb .ul_thum > li {
    width: auto;
    margin-bottom: 0.8%;
  }
}
body#index .sec_home02 .lo1 .tmb .ul_thum > li img {
  width: 100%;
}
body#index .sec_home02 .lo1 .txt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1024px) {
  body#index .sec_home02 .lo1 .txt {
    width: 28%;
  }
}
body#index .sec_home02 .lo1 .txt .tit {
  font-size: 4vw;
  margin-bottom: 2.4vw;
}
@media (min-width: 1024px) {
  body#index .sec_home02 .lo1 .txt .tit {
    font-size: 1.4rem;
    margin-bottom: 0.8em;
  }
}
body#index .sec_home02 .lo1 .txt .tit:before {
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-size: 12vw;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 600;
  margin-bottom: 0.56vw;
  line-height: 1;
}
@media (min-width: 1024px) {
  body#index .sec_home02 .lo1 .txt .tit:before {
    font-size: 4.8rem;
    margin-bottom: 0.08em;
  }
}
body#index .sec_home02 .lo1 .txt .txt_line {
  font-size: 3.4vw;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  body#index .sec_home02 .lo1 .txt .txt_line {
    font-size: 1.5rem;
    min-height: 14em;
  }
}
body#index .sec_home02 .lo1 .txt .txt_line p {
  margin-bottom: 0.64em;
}
body#index .sec_home02 .lo1 .txt .txt_line p:last-child {
  margin-bottom: 0;
}

.blk_facebook {
  margin: 4% auto;
  text-align: center;
}

#home_topics .tit_chap {
  font-size: 1vw;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (min-width: 1024px) {
  #home_topics .tit_chap {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  #home_topics .tit_chap {
    font-size: 1.2rem;
  }
}
@media (max-width: 479px) {
  #home_topics .tit_chap {
    font-size: 3.2vw;
    letter-spacing: 0.04em;
  }
}
#home_topics .tit_chap:before {
  color: #882539;
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-size: 3.2vw;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 600;
  margin-bottom: 0.4vw;
}
@media (min-width: 1024px) {
  #home_topics .tit_chap:before {
    font-size: 4.8rem;
    margin-bottom: 0.16em;
  }
}
@media (min-width: 768px) {
  #home_topics .tit_chap:before {
    font-size: 4.8rem;
  }
}
@media (max-width: 479px) {
  #home_topics .tit_chap:before {
    font-size: 6.4vw;
    margin-bottom: 1.6vw;
  }
}
#home_topics > .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-bottom: 1px solid #e1e1e1;
  padding: 0.8vw 0;
}
#home_topics > .heading .desc {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
#home_topics .btn_area {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #home_topics .btn_area {
    width: 320px;
  }
}

.sec_about_home4 {
  background-color: rgb(245, 245, 245);
  padding: 8% 0;
}
@media (min-width: 1024px) {
  .sec_about_home4 {
    padding: 4% 0;
  }
}
.sec_about_home4 .inner > .heading {
  text-align: center;
  padding-bottom: 4vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1024px) {
  .sec_about_home4 .inner > .heading {
    padding-bottom: 4%;
  }
}
.sec_about_home4 .inner .btn_area .btn_std {
  width: 72%;
  height: 12vw;
  color: #fff;
  background-color: #882539;
  border-radius: 4px;
  font-size: 4.4vw;
  font-weight: 500;
  line-height: 1;
  margin: 0 auto;
  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 (min-width: 1024px) {
  .sec_about_home4 .inner .btn_area .btn_std {
    width: 100%;
    max-width: 240px;
    height: 56px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 8px;
  }
}

/*-----------------------------------------------------------
    blog page css
-----------------------------------------------------------*/
nav.nav_anker {
  margin: 0 auto 4%;
}
nav.nav_anker .ul_nav {
  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;
  border-bottom: 1px solid #A7AEB1;
}
nav.nav_anker .ul_nav > li {
  text-align: center;
  height: 56px;
  width: 120px;
  margin-right: 20px;
}
nav.nav_anker .ul_nav > li.current a {
  border-bottom: 2px solid #222;
  color: #222;
  margin-top: -1px;
}
nav.nav_anker .ul_nav > li a {
  font-size: 14px;
  display: block;
  color: #A7AEB1;
  line-height: 56px;
  text-decoration: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
  cursor: pointer;
}
nav.nav_anker .ul_nav > li a:hover {
  color: #882539;
}

.connection {
  background-color: #f4f4f4;
  padding: 8% 0;
}
@media (min-width: 1024px) {
  .connection {
    padding: 2.4% 0;
  }
}
.connection .tit {
  color: #666e7b;
  font-size: 2.8vw;
  font-weight: normal;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .connection .tit {
    font-size: 1.4rem;
  }
}
.connection .relatedposts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4%;
}
@media (min-width: 1024px) {
  .connection .relatedposts {
    gap: 3%;
  }
}
.connection .relatedposts > li {
  width: 48%;
}
@media (min-width: 1024px) {
  .connection .relatedposts > li {
    width: 22.75%;
  }
}
.connection .relatedposts > li img.wp-post-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.connection .relatedposts > li .tmb_no {
  width: 100%;
  height: 22vw;
  max-height: 160px;
}
.connection .relatedposts > li .post-title {
  font-size: 2.8vw;
  padding: 3.2% 0.8%;
}
@media (min-width: 1024px) {
  .connection .relatedposts > li .post-title {
    font-size: 1.4rem;
  }
}

.new_entry {
  min-height: 700px;
}
@media (max-width: 479px) {
  .new_entry {
    min-height: inherit;
  }
}
.new_entry .entry_head {
  width: 100%;
  display: table;
  border-top: 4px solid #882539;
  padding: 16px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 479px) {
  .new_entry .entry_head {
    padding: 24px 15px;
  }
}
.new_entry .entry_head .update, .new_entry .entry_head .cat {
  display: table-cell;
  vertical-align: middle;
}
.new_entry .entry_head .update {
  font-size: 1.4rem;
  white-space: nowrap;
  line-height: 1;
  margin-right: 1em;
}
@media (max-width: 479px) {
  .new_entry .entry_head .update {
    font-size: 2rem;
  }
}
.new_entry .entry_head .cat > p {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  background: #999;
  color: #fff;
  border-radius: 20px;
  padding: 6px 12px 6px;
  font-size: 1.4rem;
  float: right;
}
@media (max-width: 479px) {
  .new_entry .entry_head .cat > p {
    padding: 8px 16px;
    font-size: 2rem;
  }
}
.new_entry .title {
  font-size: 2.4rem;
  margin: 0 6px;
  margin-bottom: 16px;
}
@media (max-width: 479px) {
  .new_entry .title {
    font-size: 2.8rem;
    margin: 0 15px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
.new_entry .txt_area {
  padding: 8px;
}
@media (max-width: 479px) {
  .new_entry .txt_area {
    padding: 8px 15px;
  }
}
.new_entry .txt_area p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 0.8em;
}
@media (max-width: 479px) {
  .new_entry .txt_area p {
    font-size: 2rem;
  }
}
.new_entry .txt_area p:last-child {
  margin-bottom: 0;
}

/* side */
#side .widget h2 {
  color: #666e7b;
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  #side .widget h2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
#side .cat_postnews {
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 479px) {
  #side .cat_postnews {
    margin-bottom: 24px;
    padding-top: 24px;
  }
}
#side .cat_postnews ul {
  border: 1px solid #e5e5e5;
}
#side .cat_postnews ul li {
  border-bottom: 1px solid #e5e5e5;
  font-size: 2.8vw;
}
@media (min-width: 1024px) {
  #side .cat_postnews ul li {
    font-size: 1.4rem;
  }
}
#side .cat_postnews ul li:last-child {
  border-bottom: medium none;
}
#side .cat_postnews ul li a {
  background: #fff none repeat scroll 0 0;
  position: relative;
  padding: 0.64em 0.4em 0.64em 0.8em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#side .cat_postnews ul li a:hover {
  background-color: #f8f8f8;
  opacity: 1;
  color: #882539;
}
#side .cat_postnews ul li a:hover:before {
  color: #882539;
}
#side .cat_year {
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 479px) {
  #side .cat_year {
    margin-bottom: 24px;
    padding-top: 24px;
  }
}
#side .cat_year ul {
  border: 1px solid #e5e5e5;
}
#side .cat_year ul li {
  border-bottom: 1px solid #e5e5e5;
  line-height: 28px;
}
@media (max-width: 479px) {
  #side .cat_year ul li {
    line-height: 28px;
  }
}
#side .cat_year ul li:last-child {
  border-bottom: medium none;
}
#side .cat_year ul li a {
  background: #fff none repeat scroll 0 0;
  display: block;
  padding: 8px 8px 8px 38px;
  position: relative;
  font-size: 2.8vw;
}
@media (min-width: 1024px) {
  #side .cat_year ul li a {
    padding: 12px 12px 12px 48px;
    font-size: 1.4rem;
  }
}
#side .cat_year ul li a::before {
  background: #f8f8f8 none repeat scroll 0 0;
  color: #525e6c;
  content: "\f15c";
  font-family: FontAwesome;
  font-size: 20px;
  left: 0;
  padding: 12px;
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 479px) {
  #side .cat_year ul li a::before {
    padding: 8px;
  }
}
#side .cat_year ul li a:hover {
  background: #f8f8f8 none repeat scroll 0 0;
  color: #882539;
  opacity: 1;
}
#side .cat_year ul li a:hover::before {
  background: #882539 none repeat scroll 0 0;
  color: #fff;
}

.cont_blog {
  padding: 8% 0 0;
}
@media (min-width: 1024px) {
  .cont_blog {
    padding: 4% 0;
  }
}
.cont_blog .grid_flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .cont_blog .grid_flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4%;
  }
}
@media (max-width: 479px) {
  .cont_blog .grid_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .cont_blog .grid_flex .primary {
    width: 64%;
  }
}
@media (min-width: 1024px) {
  .cont_blog .grid_flex .secondary {
    width: 32%;
  }
}
/* no image */
.tmb_no {
  width: 40%;
  height: 26vw;
  max-width: 340px;
  background: #999;
  text-align: center;
  color: #fff;
  position: relative;
  display: block;
}
@media (min-width: 1024px) {
  .tmb_no {
    width: 100%;
    height: 26vw;
    max-height: 240px;
  }
}
.tmb_no .heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
.tmb_no .heading .logo_noimage {
  max-width: inherit;
  height: 16vw;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .tmb_no .heading .logo_noimage {
    height: 60px;
  }
}
.tmb_no .heading .cap_noimage {
  font-size: 3.2vw;
  margin-bottom: 0;
  line-height: 1;
}
@media (min-width: 1024px) {
  .tmb_no .heading .cap_noimage {
    font-size: 1.6rem;
  }
}

/* cms-pagination */
.cms-pagination {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.cms-pagination ul {
  position: relative;
  float: left;
  left: 50%;
  margin-bottom: 0.8em;
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .cms-pagination ul {
    font-size: 2.6vw;
  }
}
@media (min-width: 1024px) {
  .cms-pagination ul {
    font-size: 1.4rem;
  }
}
.cms-pagination ul li {
  position: relative;
  float: left;
  left: -50%;
  width: 34px;
  height: 2em;
  display: table;
  margin: 0 2px;
  display: none;
}
@media (min-width: 1024px) {
  .cms-pagination ul li {
    width: 34px;
    height: 38px;
  }
}
@media (max-width: 479px) {
  .cms-pagination ul li {
    width: 54px;
    height: 54px;
    margin: 0 3px;
  }
}
.cms-pagination ul li.pagination-no-num {
  width: 5em;
  display: table;
}
@media (min-width: 1024px) {
  .cms-pagination ul li.pagination-no-num {
    width: 50px;
  }
}
.cms-pagination ul li.pagination-no-num span {
  background: #eee;
  border: 1px solid #ddd;
  color: #ccc;
}
.cms-pagination ul li.pagination-sp {
  display: table;
}
.cms-pagination ul li a, .cms-pagination ul li span {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
  border: 1px solid #999;
  background: #fff;
}
@media (max-width: 479px) {
  .cms-pagination ul li a, .cms-pagination ul li span {
    padding: 8px 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 479px) {
  .cms-pagination ul li a {
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
}
@media (max-width: 479px) {
  .cms-pagination ul li a:hover {
    background: #ccc;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
}
.cms-pagination ul li a:before {
  position: absolute;
  display: block;
  content: "";
  width: 96%;
  height: 2px;
  background: #ccc;
  bottom: -3px;
  left: 2%;
}
.cms-pagination ul li span:before {
  position: absolute;
  display: block;
  content: "";
  width: 96%;
  height: 2px;
  background: #ccc;
  bottom: -3px;
  left: 2%;
}
.cms-pagination ul li span {
  background: #882539;
  border: 1px solid #555;
  color: #fff;
}

.pagination-txt {
  clear: both;
  text-align: center;
  margin: 0 auto 4em;
  font-size: 2.4vw;
}
@media (min-width: 1024px) {
  .pagination-txt {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}
.pagination-txt span {
  color: #999;
}

/* single-type */
.single-type {
  width: 100%;
  margin-bottom: 8%;
}
@media (min-width: 1024px) {
  .single-type {
    margin-bottom: 4%;
  }
}
@media (max-width: 479px) {
  .single-type {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
  }
}
.single-type h1.title {
  font-size: 4vw;
  padding-top: 0.32em;
  margin-bottom: 0.64em;
}
@media (min-width: 1024px) {
  .single-type h1.title {
    font-size: 2.4rem;
  }
}
.single-type .thumbnail {
  text-align: center;
  margin: 24px auto;
}
.single-type .post-thumbnail {
  float: right;
  height: auto;
  margin-bottom: 40px;
  margin-left: 16px;
  max-width: 285px;
}
.single-type .post-thumbnail img {
  border-radius: 8px;
}
.single-type .post-content {
  line-height: 1.8;
  padding: 0 8px;
}
@media (max-width: 479px) {
  .single-type .post-content {
    margin: 40px 0;
  }
}
.single-type .post-content h2 {
  background: #882539 none repeat scroll 0 0;
  border-radius: 8px;
  color: #fff;
  font-size: 2.8rem;
  margin: 16px 0;
  padding: 12px 12px;
}
.single-type .post-content h3 {
  border-bottom: 4px solid #882539;
  font-size: 2.4rem;
  margin: 16px 0;
  padding: 4px;
}
.single-type .post-content h4 {
  color: #882539;
  font-size: 2rem;
  margin: 16px 0;
  padding: 4px;
}
.single-type .post-content img {
  border-radius: 4px;
}
.single-type .post-content img.non {
  border-radius: 0;
}
.single-type .post-content a {
  color: #205a97;
  text-decoration: underline;
}
.single-type .post-content a:hover {
  color: #882539;
}
.single-type .post-content p {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 479px) {
  .single-type .post-content p {
    line-height: 1.6;
    font-size: 2.2rem;
  }
}
.single-type .post-content table {
  margin: 16px auto;
  font-size: 1.6rem;
}
@media (max-width: 479px) {
  .single-type .post-content table {
    font-size: 2rem;
  }
}
.single-type .post-content table th, .single-type .post-content table td {
  border: 1px solid #bbb;
  padding: 8px 10px;
}
.single-type .post-content table tr:nth-child(2n+1) th,
.single-type .post-content table tr:nth-child(2n+1) td {
  background: #f5f5f5 none repeat scroll 0 0;
}
.single-type .post-content pre {
  margin: 1.6em 0;
  padding: 1em 1.6em;
  font-size: 1.8rem;
  border: 1px solid #e5e5e5;
  background: #f9f9f9;
}
.single-type .post-content blockquote {
  border: 1px solid #e5e5e5;
  background: #f9f9f9;
  margin: 1.6em 0;
  padding: 24px 20px 24px 55px;
  position: relative;
}
.single-type .post-content blockquote:before {
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 120px;
  color: #e5e5e5;
  position: absolute;
  top: 24px;
  left: 12px;
  font-size: 32px;
  line-height: 1;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  background: #444;
  color: #fff;
  left: -20px;
  font-size: 16px;
  padding-top: 2px;
  text-align: center;
}
.single-type .post-content dl {
  font-size: 1.8rem;
}
@media (max-width: 479px) {
  .single-type .post-content dl {
    font-size: 2rem;
  }
}
.single-type .post-content ol {
  margin: 16px 0 16px 18px;
}
.single-type .post-content ol li {
  list-style-type: decimal;
  margin: 4px 0;
  font-size: 1.8rem;
}
@media (max-width: 479px) {
  .single-type .post-content ol li {
    font-size: 2.2rem;
  }
}
.single-type .post-content ul {
  margin: 16px 0 16px 18px;
}
.single-type .post-content ul li {
  list-style-type: disc;
  margin: 4px 0;
  font-size: 1.8rem;
}
@media (max-width: 479px) {
  .single-type .post-content ul li {
    font-size: 2.2rem;
  }
}
.single-type .post-content p {
  margin-bottom: 0.8em;
}
.single-type .post-content img {
  display: block;
  margin: 0.8em auto;
}
.single-type .post-content .wp-video {
  width: 100% !important;
  max-width: 100%;
  margin-bottom: 24px;
}
.single-type .post-content .wp-video .wp-video-shortcode {
  width: 100% !important;
  height: auto !important;
}
.single-type .post-content .related {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
}
.single-type .post-content .related:last-child {
  margin-top: 40px;
}
.single-type .post-content .related.title {
  font-size: 16px;
  line-height: 1;
  margin: 0 0 8px;
  padding: 0;
}
.single-type .post-content .related ul {
  margin: 0 0 0 14px;
}
.single-type .post-content .related ul li {
  margin: 0;
}

#side {
  width: 100%;
}
@media (min-width: 1024px) {
  #side {
    width: 32%;
    min-width: 300px;
  }
}

/* single nav */
.nav_page {
  width: 100%;
  margin: 12% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 60px;
}
@media (min-width: 1024px) {
  .nav_page {
    margin: 8% auto;
  }
}
.nav_page:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
  background-color: #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.nav_page .np {
  letter-spacing: normal;
  vertical-align: top;
  font-size: 2.4vw;
}
@media (min-width: 1024px) {
  .nav_page .np {
    font-size: 1.4rem;
  }
}
.nav_page .np a {
  width: 100%;
  height: 60px;
  color: #882539;
  display: table-cell;
  vertical-align: middle;
  padding: 2.4% 3.2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav_page .prev,
.nav_page .next {
  width: 50%;
  min-height: 60px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav_page .back {
  width: 34%;
  margin: 0 32%;
  text-align: center;
}
.nav_page .back a {
  width: 100%;
  display: block;
}
.nav_page .prev {
  vertical-align: middle;
}
.nav_page .prev:before {
  height: 100%;
  content: "◀︎";
  padding: 0 2px;
  font-size: 1.2rem;
  display: table-cell;
  vertical-align: middle;
  background: #bbb;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav_page .next {
  text-align: right;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.nav_page .next:after {
  content: "▶︎";
  padding: 0 2px;
  font-size: 1.2rem;
  display: table-cell;
  vertical-align: middle;
  background: #bbb;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.catback {
  text-align: center;
  margin-top: 6.4%;
  font-size: 2.4vw;
}
@media (min-width: 1024px) {
  .catback {
    font-size: 1.4rem;
    margin-top: 4%;
  }
}
.catback a {
  background: #882539;
  color: #fff;
  padding: 0.64em 1.2em;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  border: 2px solid #882539;
  position: relative;
}
.catback a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 2.4vw;
  height: 2.4vw;
  background: url(../img/common/ft_unav_arr.svg) center 0 no-repeat;
  background-size: contain;
  margin-right: 0.48em;
  line-height: 1;
}
@media (min-width: 1024px) {
  .catback a:before {
    width: 15px;
    height: 17px;
  }
}
.catback a:hover {
  color: #882539;
  background-color: #fff;
  border: 2px solid #882539;
}

#news #content,
#activity #content,
#blog #content {
  padding: 4% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#news #content #side,
#activity #content #side,
#blog #content #side {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-left: 1px solid #d5d5d5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 4%;
  width: 28%;
}
@media (max-width: 479px) {
  #news #content #side,
  #activity #content #side,
  #blog #content #side {
    width: auto;
    border-left: none;
    display: block;
    padding-left: 0;
    margin: 0;
  }
}
#news #content #side .widget h2,
#activity #content #side .widget h2,
#blog #content #side .widget h2 {
  color: #666e7b;
  font-weight: normal;
  font-size: 2.8vw;
  margin-bottom: 8px;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  #news #content #side .widget h2,
  #activity #content #side .widget h2,
  #blog #content #side .widget h2 {
    font-size: 1.4rem;
  }
}
#news #content #side .cat_postnews,
#activity #content #side .cat_postnews,
#blog #content #side .cat_postnews {
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 479px) {
  #news #content #side .cat_postnews,
  #activity #content #side .cat_postnews,
  #blog #content #side .cat_postnews {
    margin-bottom: 24px;
    padding-top: 24px;
  }
}
#news #content #side .cat_postnews ul,
#activity #content #side .cat_postnews ul,
#blog #content #side .cat_postnews ul {
  border: 1px solid #e5e5e5;
}
#news #content #side .cat_postnews ul li,
#activity #content #side .cat_postnews ul li,
#blog #content #side .cat_postnews ul li {
  border-bottom: 1px solid #e5e5e5;
  font-size: 2.8vw;
}
@media (min-width: 1024px) {
  #news #content #side .cat_postnews ul li,
  #activity #content #side .cat_postnews ul li,
  #blog #content #side .cat_postnews ul li {
    font-size: 1.4rem;
  }
}
#news #content #side .cat_postnews ul li:last-child,
#activity #content #side .cat_postnews ul li:last-child,
#blog #content #side .cat_postnews ul li:last-child {
  border-bottom: medium none;
}
#news #content #side .cat_postnews ul li a,
#activity #content #side .cat_postnews ul li a,
#blog #content #side .cat_postnews ul li a {
  background: #fff none repeat scroll 0 0;
  position: relative;
  padding: 0.64em 0.4em 0.64em 0.8em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#news #content #side .cat_postnews ul li a:hover,
#activity #content #side .cat_postnews ul li a:hover,
#blog #content #side .cat_postnews ul li a:hover {
  opacity: 1;
  color: #882539;
}
#news #content #side .cat_postnews ul li a:hover:before,
#activity #content #side .cat_postnews ul li a:hover:before,
#blog #content #side .cat_postnews ul li a:hover:before {
  color: #882539;
}
#news #content #side .cat_year,
#activity #content #side .cat_year,
#blog #content #side .cat_year {
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 479px) {
  #news #content #side .cat_year,
  #activity #content #side .cat_year,
  #blog #content #side .cat_year {
    margin-bottom: 24px;
    padding-top: 24px;
  }
}
#news #content #side .cat_year ul,
#activity #content #side .cat_year ul,
#blog #content #side .cat_year ul {
  border: 1px solid #e5e5e5;
}
#news #content #side .cat_year ul li,
#activity #content #side .cat_year ul li,
#blog #content #side .cat_year ul li {
  border-bottom: 1px solid #e5e5e5;
  font-size: 2.4vw;
}
@media (min-width: 1024px) {
  #news #content #side .cat_year ul li,
  #activity #content #side .cat_year ul li,
  #blog #content #side .cat_year ul li {
    font-size: 1.4rem;
  }
}
#news #content #side .cat_year ul li:last-child,
#activity #content #side .cat_year ul li:last-child,
#blog #content #side .cat_year ul li:last-child {
  border-bottom: medium none;
}
#news #content #side .cat_year ul li a,
#activity #content #side .cat_year ul li a,
#blog #content #side .cat_year ul li a {
  background: #fff none repeat scroll 0 0;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
  display: block;
}
@media (min-width: 1024px) {
  #news #content #side .cat_year ul li a,
  #activity #content #side .cat_year ul li a,
  #blog #content #side .cat_year ul li a {
    padding: 16px 8px 16px 38px;
  }
}
#news #content #side .cat_year ul li a:before,
#activity #content #side .cat_year ul li a:before,
#blog #content #side .cat_year ul li a:before {
  height: 100%;
  color: #525e6c;
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 900;
  padding: 12px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 479px) {
  #news #content #side .cat_year ul li a:before,
  #activity #content #side .cat_year ul li a:before,
  #blog #content #side .cat_year ul li a:before {
    padding: 12px;
    font-size: 28px;
  }
}
#news #content #side .cat_year ul li a:hover,
#activity #content #side .cat_year ul li a:hover,
#blog #content #side .cat_year ul li a:hover {
  opacity: 1;
  color: #882539;
}
#news #content #side .cat_year ul li a:hover:before,
#activity #content #side .cat_year ul li a:hover:before,
#blog #content #side .cat_year ul li a:hover:before {
  color: #882539;
}
#news #content main,
#activity #content main,
#blog #content main {
  width: 68%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 1024px) {
  #news #content main,
  #activity #content main,
  #blog #content main {
    max-width: 720px;
  }
}
#news #content main .new_entry .entry_head,
#activity #content main .new_entry .entry_head,
#blog #content main .new_entry .entry_head {
  width: 100%;
  display: table;
  border-top: 4px solid #882539;
  padding: 24px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#news #content main .new_entry .entry_head > p, #news #content main .new_entry .entry_head > div,
#activity #content main .new_entry .entry_head > p,
#activity #content main .new_entry .entry_head > div,
#blog #content main .new_entry .entry_head > p,
#blog #content main .new_entry .entry_head > div {
  display: table-cell;
  vertical-align: middle;
}
#news #content main .new_entry .entry_head .update,
#activity #content main .new_entry .entry_head .update,
#blog #content main .new_entry .entry_head .update {
  white-space: nowrap;
  line-height: 1;
  margin-right: 1em;
  font-size: 1.8rem;
}
#news #content main .new_entry .entry_head .update i,
#activity #content main .new_entry .entry_head .update i,
#blog #content main .new_entry .entry_head .update i {
  margin-right: 0.24em;
}
#news #content main .new_entry .entry_head .cat > p,
#activity #content main .new_entry .entry_head .cat > p,
#blog #content main .new_entry .entry_head .cat > p {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  background: #999;
  color: #fff;
  border-radius: 20px;
  padding: 8px 12px 8px;
  margin-bottom: 0;
  font-size: 1.6rem;
  float: right;
}

/*------------------- エントリーリセット ---------------------*/
.entry {
  line-height: 2;
}
.entry h1, .entry h2, .entry h3, .entry h4, .entry h5, .entry h6 {
  position: static;
  clear: both;
  float: none;
  color: #882539;
}
.entry h1 {
  font-size: 145.5%;
}
.entry h2 {
  font-size: 136.4%;
  border-bottom: 1px solid #882539;
}
.entry h3 {
  font-size: 127.3%;
}
.entry h4 {
  font-size: 127.3%;
}
.entry h5 {
  font-size: 118.2%;
}
.entry h6 {
  font-size: 100%;
}
.entry strong, .entry b {
  font-weight: bold;
}
.entry p {
  margin: 0em 0em 0.8em 0em;
}
.entry em {
  font-style: italic;
}
.entry ol {
  margin: 1em 2em 1em;
}
.entry ul {
  margin: 1em 0 1em;
}
.entry ul li {
  margin: 0em 0em 0.5em 1em;
}
.entry ol li {
  margin: 0em 0em 0.5em 0em;
}
.entry ul {
  list-style: disc;
}
.entry ol {
  list-style: decimal;
}
.entry dl {
  margin: 1em 0;
}
.entry dd {
  margin-left: 2em;
}
.entry table.wp-oembed,
.entry table.wp-oembed td {
  border: none;
}
.entry table caption {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}
.entry table {
  clear: both;
  width: 99%;
  border: 1px #ccc solid;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1em 0 1em 1px;
}
.entry table th {
  padding: 0.5em;
  border: #ccc solid;
  border-width: 0 0 1px 1px;
  background: #f5f5f5;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff;
}
.entry table td {
  padding: 0.5em;
  border: 1px #ccc solid;
  border-width: 0 0 1px 1px;
}
.entry img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.entry img.aligncenter {
  margin: auto;
}
.entry a {
  text-decoration: underline;
}

/*-----------------------------------------------------------
   news
-----------------------------------------------------------*/
#news #key .heading .tit {
  font-size: 4rem;
}
#news #key .heading .tit:before {
  content: "News";
}
#news #contents main.main_news .news_area {
  padding-top: 56px;
  margin-bottom: 56px;
}

#pagetitle .hl {
  text-align: center;
  padding: 72px 0 48px;
}
#pagetitle .hl__tit {
  font-size: 2.1rem;
  line-height: 1;
  position: relative;
  margin-bottom: 1em;
}
#pagetitle .hl__tit:after {
  content: attr(data-title);
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  font-weight: 600;
  color: #882539;
  margin-top: 0.4em;
}
@media (min-width: 768px) {
  #pagetitle .hl__tit:after {
    font-size: 3.2rem;
  }
}
@media (max-width: 479px) {
  #pagetitle .hl__tit:after {
    font-size: 6.4vw;
  }
}
#pagetitle .hl__desc {
  font-size: 1.6rem;
  line-height: 1.6;
}

#news {
  /* cms-pagination */
}
#news .cms-pagination {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
#news .cms-pagination ul {
  position: relative;
  float: left;
  left: 50%;
  margin-bottom: 12px;
  font-size: 1.6rem;
}
#news .cms-pagination ul li {
  position: relative;
  float: left;
  left: -50%;
  width: 40px;
  height: 44px;
  display: table;
  margin: 0 4px;
  display: none;
}
#news .cms-pagination ul li.pagination-no-num {
  width: 62px;
  display: table;
}
#news .cms-pagination ul li.pagination-no-num span {
  background: #eee;
  border: 1px solid #ddd;
  color: #ccc;
}
#news .cms-pagination ul li.pagination-sp {
  display: table;
}
#news .cms-pagination ul li a, #news .cms-pagination ul li span {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
  border: 1px solid #999;
  background: #fff;
}
#news .cms-pagination ul li a:before {
  position: absolute;
  display: block;
  content: "";
  width: 96%;
  height: 2px;
  background: #ccc;
  bottom: -3px;
  left: 2%;
}
#news .cms-pagination ul li span:before {
  position: absolute;
  display: block;
  content: "";
  width: 96%;
  height: 2px;
  background: #ccc;
  bottom: -3px;
  left: 2%;
}
#news .cms-pagination ul li span {
  background: #882539;
  border: 1px solid #555;
  color: #fff;
}
#news .pagination-txt {
  clear: both;
  text-align: center;
  margin-bottom: 40px;
}
#news .pagination-txt span {
  color: #999;
}
#news {
  /* side */
}
#news #side .widget h2 {
  color: #666e7b;
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 12px;
}
@media (max-width: 479px) {
  #news #side .widget h2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
#news #side .cat_year {
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 479px) {
  #news #side .cat_year {
    margin-bottom: 24px;
    padding-top: 24px;
  }
}
#news #side .cat_year ul {
  border: 1px solid #e5e5e5;
}
#news #side .cat_year ul li {
  border-bottom: 1px solid #e5e5e5;
  line-height: 28px;
}
@media (max-width: 479px) {
  #news #side .cat_year ul li {
    line-height: 28px;
  }
}
#news #side .cat_year ul li:last-child {
  border-bottom: medium none;
}
#news #side .cat_year ul li a {
  background: #fff none repeat scroll 0 0;
  display: block;
  padding: 12px 12px 12px 48px;
  position: relative;
  font-size: 1.6rem;
}
@media (max-width: 479px) {
  #news #side .cat_year ul li a {
    padding: 8px 8px 8px 38px;
  }
}
#news #side .cat_year ul li a::before {
  background: #f8f8f8 none repeat scroll 0 0;
  color: #525e6c;
  content: "\f15c";
  font-family: FontAwesome;
  font-size: 20px;
  left: 0;
  padding: 12px;
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 479px) {
  #news #side .cat_year ul li a::before {
    padding: 8px;
  }
}
#news #side .cat_year ul li a:hover {
  background: #f8f8f8 none repeat scroll 0 0;
  color: #882539;
  opacity: 1;
}
#news #side .cat_year ul li a:hover::before {
  background: #882539 none repeat scroll 0 0;
  color: #fff;
}
#news .newslist_sec {
  padding: 56px 0;
  position: relative;
}
@media (max-width: 479px) {
  #news .newslist_sec {
    padding: 56px 30px;
  }
}
@media (max-width: 479px) {
  #news .newslist_sec .inner {
    width: auto;
  }
}
#news .newslist_sec .heading .tit {
  margin: 56px auto 56px;
}
#news .newslist_sec ul {
  margin: 32px 0 26px -20px;
  letter-spacing: -0.4em;
  text-align: center;
}
@media (max-width: 479px) {
  #news .newslist_sec ul {
    margin: 32px 0 26px 0;
  }
}
#news .newslist_sec ul li {
  width: 300px;
  min-height: 320px;
  display: inline-block;
  letter-spacing: normal;
  margin-left: 20px;
  margin-bottom: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 479px) {
  #news .newslist_sec ul li {
    width: auto;
    max-width: 80%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}
#news .newslist_sec ul li .amore a:after {
  content: "＞";
}
#news .newslist_sec ul li a {
  text-decoration: none;
  color: #882539;
}
#news .newslist_sec ul li a:hover {
  opacity: 0.56;
}
@media (max-width: 479px) {
  #news .newslist_sec ul li .tmb img {
    width: 100%;
  }
}
#news .newslist_sec ul li p {
  font-size: 1.5rem;
  vertical-align: top;
}
@media (max-width: 479px) {
  #news .newslist_sec ul li p {
    font-size: 1.8rem;
  }
}
#news .newslist_sec ul li .date {
  padding: 8px 4px;
  text-align: left;
}
@media (max-width: 479px) {
  #news .newslist_sec ul li .date {
    padding: 8px 4px;
  }
}
#news .newslist_sec ul li p.postdate {
  font-size: 1.5rem;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 4px;
  color: #882539;
}
@media (max-width: 479px) {
  #news .newslist_sec ul li p.postdate {
    font-size: 1.8rem;
  }
}
@media (max-width: 479px) {
  #news .newsdetail_sec {
    padding: 0 30px;
  }
}
@media (max-width: 479px) {
  #news .newsdetail_sec .inner {
    width: auto;
  }
}
#news .newsdetail_sec .post .heading {
  border-bottom: 3px solid #882539;
  text-align: left;
  color: #882539;
  padding: 8px 4px;
}
@media (max-width: 479px) {
  #news .newsdetail_sec .post .heading {
    padding: 8px 4px;
  }
}
#news .newsdetail_sec .post .heading .postdate {
  font-size: 15px;
  font-weight: bold;
}
@media (max-width: 479px) {
  #news .newsdetail_sec .post .heading .postdate {
    font-size: 16px;
  }
}
#news .newsdetail_sec .post .heading .tit {
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 479px) {
  #news .newsdetail_sec .post .heading .tit {
    font-size: 22px;
    line-height: 1.4;
  }
}
#news .newsdetail_sec .post .entry {
  padding: 4px;
}
#news .newsdetail_sec .post .entry p {
  font-size: 15px;
}
@media (max-width: 479px) {
  #news .newsdetail_sec .post .entry p {
    font-size: 16px;
  }
}
#news .newsdetail_sec .post .entry img {
  display: block;
  margin: 40px 0;
}
@media (max-width: 479px) {
  #news .newsdetail_sec .post .entry img {
    max-width: 100%;
  }
}
#news .news_area {
  width: auto;
}
@media (max-width: 479px) {
  #news .news_area {
    width: auto;
  }
}
#news .news_area > .heading {
  position: relative;
  padding: 8px 0 8px;
  margin-top: 48px;
  margin-bottom: 56px;
}
@media (max-width: 479px) {
  #news .news_area > .heading {
    padding: 8px 0 8px;
    margin-top: 48px;
    margin-bottom: 56px;
  }
}
#news .news_area ul.new_list {
  border-top: 1px solid #d5d5d5;
  margin-bottom: 26px;
}
@media (max-width: 479px) {
  #news .news_area ul.new_list {
    margin: 24px 15px 24px;
  }
}
#news .news_area ul.new_list li {
  border-bottom: 1px solid #d5d5d5;
  padding: 20px 8px 20px 12px;
}
@media (max-width: 479px) {
  #news .news_area ul.new_list li {
    padding: 24px 8px 24px 8px;
  }
}
#news .news_area ul.new_list li a {
  text-decoration: none;
  color: #333;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#news .news_area ul.new_list li a:hover {
  opacity: 0.8;
}
#news .news_area ul.new_list li a:hover .tit {
  color: #882539;
}
#news .news_area ul.new_list li a:hover p {
  opacity: 0.56;
}
#news .news_area ul.new_list li .update {
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  margin-right: 1em;
}
@media (max-width: 479px) {
  #news .news_area ul.new_list li .update {
    font-size: 1.8rem;
  }
}
#news .news_area ul.new_list li .cat {
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  background: #882539;
  color: #fff;
  border-radius: 20px;
  padding: 6px 12px 6px;
  font-size: 1.4rem;
}
@media (max-width: 479px) {
  #news .news_area ul.new_list li .cat {
    font-size: 1.8rem;
    padding: 8px 16px;
  }
}
#news .news_area ul.new_list li .cont {
  margin-top: 4px;
}
@media (max-width: 479px) {
  #news .news_area ul.new_list li .cont {
    margin-top: 8px;
  }
}
#news .news_area ul.new_list li .cont > .tit {
  font-size: 2rem;
  margin-bottom: 4px;
}
@media (max-width: 479px) {
  #news .news_area ul.new_list li .cont > .tit {
    font-size: 2.4rem;
    margin-bottom: 4px;
  }
}
#news .news_area ul.new_list li .cont p {
  font-size: 1.6rem;
}
@media (max-width: 479px) {
  #news .news_area ul.new_list li .cont p {
    font-size: 2rem;
  }
}
#news {
  /* detail */
}
#news .new_entry {
  min-height: 700px;
}
@media (max-width: 479px) {
  #news .new_entry {
    min-height: inherit;
  }
}
#news .new_entry .entry_head {
  width: 100%;
  display: table;
  border-top: 4px solid #882539;
  padding: 16px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 479px) {
  #news .new_entry .entry_head {
    padding: 24px 15px;
  }
}
#news .new_entry .entry_head .update, #news .new_entry .entry_head .cat {
  display: table-cell;
  vertical-align: middle;
}
#news .new_entry .entry_head .update {
  font-size: 1.4rem;
  white-space: nowrap;
  line-height: 1;
  margin-right: 1em;
}
@media (max-width: 479px) {
  #news .new_entry .entry_head .update {
    font-size: 2rem;
  }
}
#news .new_entry .entry_head .cat > p {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  background: #999;
  color: #fff;
  border-radius: 20px;
  padding: 6px 12px 6px;
  font-size: 1.4rem;
  float: right;
}
@media (max-width: 479px) {
  #news .new_entry .entry_head .cat > p {
    padding: 8px 16px;
    font-size: 2rem;
  }
}
#news .new_entry .title {
  font-size: 2.4rem;
  margin: 0 6px;
  margin-bottom: 16px;
}
@media (max-width: 479px) {
  #news .new_entry .title {
    font-size: 2.8rem;
    margin: 0 15px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
#news .new_entry .txt_area {
  padding: 8px;
}
@media (max-width: 479px) {
  #news .new_entry .txt_area {
    padding: 8px 15px;
  }
}
#news .new_entry .txt_area p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 0.8em;
}
@media (max-width: 479px) {
  #news .new_entry .txt_area p {
    font-size: 2rem;
  }
}
#news .new_entry .txt_area p:last-child {
  margin-bottom: 0;
}
#news .nav_page {
  width: 100%;
  margin: 32px auto;
  border-top: 1px solid #e5e5e5;
  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;
  position: relative;
}
@media (max-width: 479px) {
  #news .nav_page {
    margin: 64px auto;
  }
}
#news .nav_page .np {
  letter-spacing: normal;
  vertical-align: top;
  font-size: 14px;
}
@media (max-width: 479px) {
  #news .nav_page .np {
    font-size: 24px;
  }
}
#news .nav_page .np a {
  width: 100%;
  color: #882539;
  display: table-cell;
  vertical-align: middle;
  padding: 16px 16px;
}
#news .nav_page .prev,
#news .nav_page .next {
  width: 32%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#news .nav_page .back {
  width: 34%;
  margin: 0 32%;
  text-align: center;
}
#news .nav_page .back a {
  width: 100%;
  display: block;
}
#news .nav_page .prev {
  display: table-cell;
  vertical-align: middle;
  left: 0;
}
#news .nav_page .next {
  text-align: right;
  display: table-cell;
  vertical-align: middle;
  right: 0;
}
#news nav.nav_anker {
  margin: 0 auto 4%;
}
#news nav.nav_anker .ul_nav {
  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;
  border-bottom: 1px solid #A7AEB1;
}
#news nav.nav_anker .ul_nav > li {
  text-align: center;
  height: 56px;
  width: 120px;
  margin-right: 20px;
}
#news nav.nav_anker .ul_nav > li.current a {
  border-bottom: 2px solid #222;
  color: #222;
  margin-top: -1px;
}
#news nav.nav_anker .ul_nav > li a {
  font-size: 14px;
  display: block;
  color: #A7AEB1;
  line-height: 56px;
  text-decoration: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
  cursor: pointer;
}
#news nav.nav_anker .ul_nav > li a:hover {
  color: #882539;
}
#news .newlist {
  width: auto;
  margin: 0 auto 8%;
}
@media (max-width: 479px) {
  #news .newlist {
    width: auto;
  }
}
#news .newlist ul.new_list li {
  border-bottom: 1px solid #d5d5d5;
  padding: 20px 8px 20px 12px;
}
@media (max-width: 479px) {
  #news .newlist ul.new_list li {
    padding: 24px 8px 24px 8px;
  }
}
#news .newlist ul.new_list li a {
  max-width: 980px;
  margin: 0 auto;
  text-decoration: none;
  color: #333;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#news .newlist ul.new_list li a:hover {
  opacity: 0.56;
}
#news .newlist ul.new_list li a:hover .tit {
  color: #882539;
}
#news .newlist ul.new_list li .gr {
  margin-bottom: 1.6rem;
}
#news .newlist ul.new_list li .gr .update {
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  color: #999;
  margin-right: 1em;
}
@media (max-width: 479px) {
  #news .newlist ul.new_list li .gr .update {
    font-size: 1.8rem;
  }
}
#news .newlist ul.new_list li .gr .update:after {
  content: "｜";
  margin-left: 1em;
}
#news .newlist ul.new_list li .gr .cat {
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  color: #000;
  font-size: 1.4rem;
}
@media (max-width: 479px) {
  #news .newlist ul.new_list li .gr .cat {
    font-size: 1.8rem;
    padding: 8px 16px;
  }
}
@media (max-width: 479px) {
  #news .newlist ul.new_list li .cont {
    margin-top: 8px;
  }
}
#news .newlist ul.new_list li .cont .tit {
  font-size: 2.1rem;
}
@media (max-width: 479px) {
  #news .newlist ul.new_list li .cont .tit {
    font-size: 2.4rem;
    margin-bottom: 4px;
  }
}
#news .newlist ul.new_list li .cont .desc {
  margin-top: 1em;
  color: #666;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  #news .newlist ul.new_list li .cont .desc {
    font-size: 2rem;
  }
}

/*-----------------------------------------------------------
   contact
-----------------------------------------------------------*/
#contact .formsec1 {
  margin-bottom: 56px;
}
@media (max-width: 479px) {
  #contact .formsec1 {
    margin-bottom: 40px;
  }
}
#contact .formsec1 .lead .txt_blk {
  padding: 24px;
}
#contact .formsec1 .lead .txt_blk a {
  text-decoration: underline;
}
#contact .formsec1 .lead .txt_blk p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  #contact .formsec1 .lead .txt_blk p {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}
#contact .formsec1 .lead .txt_blk p .required {
  color: #f50;
}
#contact .form_blk {
  margin-bottom: 48px;
}
#contact .form_blk .tit {
  font-size: 21px;
  line-height: 1;
  text-align: left;
  padding: 16px 4px;
  color: #882539;
  font-weight: normal;
}
@media (max-width: 479px) {
  #contact .form_blk .tit {
    font-size: 34px;
    padding: 12px 0;
  }
}
@media (max-width: 479px) {
  #contact .form_blk .heading {
    margin-bottom: 24px;
  }
}
#contact .form_blk .heading .tit, #contact .form_blk .heading .desc {
  display: inline-block;
}
@media (max-width: 479px) {
  #contact .form_blk .heading .tit, #contact .form_blk .heading .desc {
    display: block;
  }
}
#contact .form_blk .heading .desc {
  font-size: 16px;
  margin-left: 2em;
}
@media (max-width: 479px) {
  #contact .form_blk .heading .desc {
    font-size: 24px;
    margin-left: 0;
  }
}
#contact .form_blk .required {
  padding-left: 0.5em;
  color: #f50;
}
#contact .li_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 56px;
}
@media (max-width: 479px) {
  #contact .li_contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#contact .li_contact li {
  width: 48%;
  border: 1px solid #595757;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  letter-spacing: normal;
}
@media (max-width: 479px) {
  #contact .li_contact li {
    width: 100%;
    display: block;
    margin-bottom: 24px;
  }
}
#contact .li_contact li .tit {
  color: #882539;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  border-bottom: 1px solid #595757;
  text-align: center;
  margin: 0 -12px;
  padding-bottom: 4px;
  letter-spacing: 0.08em;
}
@media (max-width: 479px) {
  #contact .li_contact li .tit {
    font-size: 2.8rem;
  }
}
#contact .li_contact li p {
  font-size: 1.6rem;
  text-align: center;
  margin: 8px -8px;
  color: #231815;
  line-height: 1.4;
}
@media (max-width: 479px) {
  #contact .li_contact li p {
    font-size: 2.2rem;
  }
}
#contact .li_contact li .dd {
  font-size: 2.4rem;
  font-family: arial;
  font-weight: bold;
  text-align: center;
  background: #882539;
  color: #fff;
  margin: 0;
  padding: 0.2em;
}
@media (max-width: 479px) {
  #contact .li_contact li .dd {
    padding: 0.4em;
  }
}

#contact_list .txt_blk {
  padding: 24px;
  text-align: center;
  margin-bottom: 64px;
}
#contact_list .txt_blk p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  #contact_list .txt_blk p {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}
#contact_list .txt_blk p .required {
  color: #f50;
}

#form #read,
#contact #read, #confirm #read, #complete #read {
  padding: 4% 0 0;
}
#form #read p,
#contact #read p, #confirm #read p, #complete #read p {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-size: 2.8vw;
}
@media (min-width: 1024px) {
  #form #read p,
  #contact #read p, #confirm #read p, #complete #read p {
    font-size: 1.6rem;
  }
}
#form #read .box,
#contact #read .box, #confirm #read .box, #complete #read .box {
  max-width: 880px;
  margin: 4% auto;
  padding: 2% 4%;
  background-color: #eee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#form .sec_contact,
#contact .sec_contact, #confirm .sec_contact, #complete .sec_contact {
  padding: 6% 0;
}
#form .sec_contact .lead,
#contact .sec_contact .lead, #confirm .sec_contact .lead, #complete .sec_contact .lead {
  text-align: center;
  margin-bottom: 4%;
  line-height: 1.8;
}
@media (max-width: 479px) {
  #form .sec_contact .lead,
  #contact .sec_contact .lead, #confirm .sec_contact .lead, #complete .sec_contact .lead {
    text-align: left;
  }
}
#form .sec_contact .lead b,
#contact .sec_contact .lead b, #confirm .sec_contact .lead b, #complete .sec_contact .lead b {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  display: block;
  margin-bottom: 2%;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
@media (max-width: 479px) {
  #form .sec_contact .lead b,
  #contact .sec_contact .lead b, #confirm .sec_contact .lead b, #complete .sec_contact .lead b {
    font-size: 4.8vw;
  }
}
#form .sec_contact .lead span.att,
#contact .sec_contact .lead span.att, #confirm .sec_contact .lead span.att, #complete .sec_contact .lead span.att {
  color: #aa2734;
}
#form .sec_contact .form_blk,
#contact .sec_contact .form_blk, #confirm .sec_contact .form_blk, #complete .sec_contact .form_blk {
  max-width: 880px;
  background-color: #f5f3f2;
  padding: 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 4%;
}
@media (max-width: 479px) {
  #form .sec_contact .form_blk,
  #contact .sec_contact .form_blk, #confirm .sec_contact .form_blk, #complete .sec_contact .form_blk {
    padding: 8% 7vw;
    max-width: inherit;
  }
}
#form .privacy_check,
#contact .privacy_check, #confirm .privacy_check, #complete .privacy_check {
  text-align: center;
  font-size: 1.4rem;
}
@media (max-width: 479px) {
  #form .privacy_check,
  #contact .privacy_check, #confirm .privacy_check, #complete .privacy_check {
    text-align: left;
    font-size: 3.6vw;
  }
}
#form .privacy_check .tit,
#contact .privacy_check .tit, #confirm .privacy_check .tit, #complete .privacy_check .tit {
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
@media (max-width: 479px) {
  #form .privacy_check .tit,
  #contact .privacy_check .tit, #confirm .privacy_check .tit, #complete .privacy_check .tit {
    font-weight: 600;
  }
}
#form .privacy_check .hosoku,
#contact .privacy_check .hosoku, #confirm .privacy_check .hosoku, #complete .privacy_check .hosoku {
  margin: 2.4em auto;
  text-align: center;
}
#form .privacy_check .hosoku a,
#contact .privacy_check .hosoku a, #confirm .privacy_check .hosoku a, #complete .privacy_check .hosoku a {
  text-decoration: underline;
}
#form .privacy_check .hosoku a:hover,
#contact .privacy_check .hosoku a:hover, #confirm .privacy_check .hosoku a:hover, #complete .privacy_check .hosoku a:hover {
  opacity: 0.64;
}
#form .privacy_check .privacy,
#contact .privacy_check .privacy, #confirm .privacy_check .privacy, #complete .privacy_check .privacy {
  margin-bottom: 4em;
}
#form .privacy_check p,
#contact .privacy_check p, #confirm .privacy_check p, #complete .privacy_check p {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  line-height: 1.8;
}
#form .sec_form .box,
#contact .sec_form .box, #confirm .sec_form .box, #complete .sec_form .box {
  max-width: 880px;
  margin: 4% auto;
  background-color: #f8f8f8;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
  padding: 2% 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 479px) {
  #form .sec_form .box,
  #contact .sec_form .box, #confirm .sec_form .box, #complete .sec_form .box {
    margin: 4% 7vw;
  }
}
#form .sec_form .box .att,
#contact .sec_form .box .att, #confirm .sec_form .box .att, #complete .sec_form .box .att {
  font-size: 3.6vw;
  padding: 0.8em 0;
}
@media (min-width: 1024px) {
  #form .sec_form .box .att,
  #contact .sec_form .box .att, #confirm .sec_form .box .att, #complete .sec_form .box .att {
    font-size: 1.6rem;
  }
}
#form .sec_form .box .att .kome,
#contact .sec_form .box .att .kome, #confirm .sec_form .box .att .kome, #complete .sec_form .box .att .kome {
  color: #aa2734;
}
#form .sec_form .box .tit,
#contact .sec_form .box .tit, #confirm .sec_form .box .tit, #complete .sec_form .box .tit {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 479px) {
  #form .sec_form .box .tit,
  #contact .sec_form .box .tit, #confirm .sec_form .box .tit, #complete .sec_form .box .tit {
    font-size: 3.6vw;
  }
}
#form .sec_form .box .blk_captcha,
#contact .sec_form .box .blk_captcha, #confirm .sec_form .box .blk_captcha, #complete .sec_form .box .blk_captcha {
  text-align: center;
  line-height: 1.8;
}
#form .sec_form .box .gr_telfax,
#contact .sec_form .box .gr_telfax, #confirm .sec_form .box .gr_telfax, #complete .sec_form .box .gr_telfax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.6em;
}
@media (max-width: 479px) {
  #form .sec_form .box .gr_telfax,
  #contact .sec_form .box .gr_telfax, #confirm .sec_form .box .gr_telfax, #complete .sec_form .box .gr_telfax {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.4em;
  }
}
#form .sec_form .box .gr_telfax div,
#contact .sec_form .box .gr_telfax div, #confirm .sec_form .box .gr_telfax div, #complete .sec_form .box .gr_telfax div {
  width: 50%;
  font-size: 2.2rem;
  text-align: center;
  padding: 0.4em 0;
}
@media (max-width: 479px) {
  #form .sec_form .box .gr_telfax div,
  #contact .sec_form .box .gr_telfax div, #confirm .sec_form .box .gr_telfax div, #complete .sec_form .box .gr_telfax div {
    width: 100%;
    font-size: 4.8vw;
  }
}
#form .sec_form .box .gr_telfax div:nth-child(2),
#contact .sec_form .box .gr_telfax div:nth-child(2), #confirm .sec_form .box .gr_telfax div:nth-child(2), #complete .sec_form .box .gr_telfax div:nth-child(2) {
  border-left: 1px solid #231815;
}
@media (max-width: 479px) {
  #form .sec_form .box .gr_telfax div:nth-child(2),
  #contact .sec_form .box .gr_telfax div:nth-child(2), #confirm .sec_form .box .gr_telfax div:nth-child(2), #complete .sec_form .box .gr_telfax div:nth-child(2) {
    border-top: 1px solid #231815;
    border-left: none;
  }
}
#form .sec_form .box .gr_telfax div p,
#contact .sec_form .box .gr_telfax div p, #confirm .sec_form .box .gr_telfax div p, #complete .sec_form .box .gr_telfax div p {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
#form .sec_form .box .gr_telfax div span,
#contact .sec_form .box .gr_telfax div span, #confirm .sec_form .box .gr_telfax div span, #complete .sec_form .box .gr_telfax div span {
  font-size: 3rem;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
@media (max-width: 479px) {
  #form .sec_form .box .gr_telfax div span,
  #contact .sec_form .box .gr_telfax div span, #confirm .sec_form .box .gr_telfax div span, #complete .sec_form .box .gr_telfax div span {
    font-size: 7.2vw;
  }
}

#complete .complete,
.complete {
  text-align: center;
  padding: 4% 0;
}
#complete .complete h2,
.complete h2 {
  margin-bottom: 0.5em;
  color: #882539;
  font-size: 5.75vw;
}
@media (min-width: 1024px) {
  #complete .complete h2,
  .complete h2 {
    font-size: 2.8rem;
  }
}
#complete .complete p,
.complete p {
  font-size: 3.75vw;
  line-height: 2;
}
@media (min-width: 1024px) {
  #complete .complete p,
  .complete p {
    font-size: 1.6rem;
  }
}
#complete .complete .home,
.complete .home {
  margin: 4% auto 0;
}
@media (min-width: 1024px) {
  #complete .complete .home,
  .complete .home {
    text-align: center;
  }
}
#complete .complete .home .btn_std,
.complete .home .btn_std {
  display: block;
  width: 80%;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  padding: 0.8em 3.2em 1em;
  background: #882539;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 1s;
  transition: all 1s;
  border-radius: 50px;
  margin: 0 auto 0.8em;
}
@media (min-width: 1024px) {
  #complete .complete .home .btn_std,
  .complete .home .btn_std {
    max-width: 40%;
    font-size: 1.8rem;
    display: inline-block;
  }
}
#complete .complete .home .btn_std:hover,
.complete .home .btn_std:hover {
  opacity: 0.4;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#form #contact_list, #contact #contact_list {
  padding: 6% 0 0;
}
#form .formsec1, #contact .formsec1 {
  margin-bottom: 56px;
}
@media (max-width: 479px) {
  #form .formsec1, #contact .formsec1 {
    margin-bottom: 40px;
  }
}
#form .formsec1 .lead .txt_blk, #contact .formsec1 .lead .txt_blk {
  padding: 24px;
}
#form .formsec1 .lead .txt_blk p, #contact .formsec1 .lead .txt_blk p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 479px) {
  #form .formsec1 .lead .txt_blk p, #contact .formsec1 .lead .txt_blk p {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}
#form .formsec1 .lead .txt_blk p .required, #contact .formsec1 .lead .txt_blk p .required {
  color: #aa2734;
}
#form .formsec1 .tit, #contact .formsec1 .tit {
  font-size: 2rem;
  margin: 16px auto 8px;
}
@media (max-width: 479px) {
  #form .formsec1 .tit, #contact .formsec1 .tit {
    font-size: 2.8rem;
  }
}
#form .formsec1 .li_contact, #contact .formsec1 .li_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
#form .formsec1 .li_contact li, #contact .formsec1 .li_contact li {
  width: 32%;
  border: 1px solid #595757;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  letter-spacing: normal;
}
@media (max-width: 479px) {
  #form .formsec1 .li_contact li, #contact .formsec1 .li_contact li {
    width: 100%;
    display: block;
    margin-bottom: 24px;
  }
}
#form .formsec1 .li_contact li .tit, #contact .formsec1 .li_contact li .tit {
  color: #882539;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  border-bottom: 1px solid #595757;
  text-align: center;
  margin: 0 -12px;
  padding-bottom: 4px;
  letter-spacing: 0.08em;
}
@media (max-width: 479px) {
  #form .formsec1 .li_contact li .tit, #contact .formsec1 .li_contact li .tit {
    font-size: 2.8rem;
  }
}
#form .formsec1 .li_contact li p, #contact .formsec1 .li_contact li p {
  font-size: 1.35rem;
  text-align: center;
  margin: 8px -8px;
  color: #231815;
  line-height: 1.4;
}
@media (max-width: 479px) {
  #form .formsec1 .li_contact li p, #contact .formsec1 .li_contact li p {
    font-size: 2.2rem;
  }
}
#form .formsec1 .li_contact li .dd, #contact .formsec1 .li_contact li .dd {
  font-size: 2.2rem;
  font-family: arial;
  font-weight: bold;
  text-align: center;
  background: #882539;
  color: #fff;
  margin: 0;
}

.list_form {
  max-width: 540px;
  margin: 0 auto 2em;
}
.list_form > li {
  font-size: 1.8rem;
  padding: 0.8em 2em 1.2em;
  border-bottom: 1px solid #dce0e3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 479px) {
  .list_form > li {
    padding: 16px 0;
  }
}
.list_form > li > ul.list_gr > li {
  margin: 0 0 12px;
}
.list_form > li > ul.list_gr > li:last-child {
  margin-bottom: 0;
}
.list_form > li > .dl_table {
  width: 100%;
}
.list_form > li > .dl_table > dt,
.list_form > li > .dl_table > dd {
  font-size: 3.2vw;
}
@media (min-width: 1024px) {
  .list_form > li > .dl_table > dt,
  .list_form > li > .dl_table > dd {
    display: block;
    font-size: 1.8rem;
  }
}
.list_form > li > .dl_table > dt {
  width: auto;
  padding: 0.64em 0.4em;
}
.list_form > li > .dl_table > dt .req {
  background-color: #aa2734;
  color: #fff;
  border-radius: 24px;
  font-size: 3.2vw;
  margin-left: 0.56em;
  padding: 0.16em 0.8em 0.2em;
}
@media (min-width: 1024px) {
  .list_form > li > .dl_table > dt .req {
    font-size: 1.4rem;
  }
}
.list_form > li > .dl_table > dd {
  position: relative;
}
.list_form > li > .dl_table > dd .error {
  display: inline-block;
  padding: 0.4em 0.4em;
}
.list_form > li > .dl_table > dd > ul.list_gr > li {
  padding-bottom: 8px;
  margin: 0 0 8px;
}
@media (max-width: 479px) {
  .list_form > li > .dl_table > dd > ul.list_gr > li {
    border-bottom: none;
  }
}
.list_form > li > .dl_table > dd > ul.list_gr > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.list_form > li > .dl_table > dd ul.list_gr_noline > li {
  margin: 0 0 12px;
  position: relative;
}
@media (max-width: 479px) {
  .list_form > li > .dl_table > dd ul.list_gr_noline > li.zip {
    margin-left: 1.5em;
  }
}
.list_form > li > .dl_table > dd ul.list_gr_noline > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.list_form > li > .dl_table > dd .br_blk {
  width: 8em;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 479px) {
  .list_form > li > .dl_table > dd .br_blk {
    display: block;
    margin-bottom: 6px;
  }
}
.list_form > li > .dl_table > dd .in_blk {
  width: 28em;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 479px) {
  .list_form > li > .dl_table > dd .in_blk {
    width: 100%;
  }
}
.list_form > li > .dl_table > dd .inden {
  width: 3em;
  margin-right: 0.5em;
  position: absolute;
  left: -3.5em;
  top: 50%;
  text-align: right;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}
@media (max-width: 479px) {
  .list_form > li > .dl_table > dd .inden {
    width: auto;
    position: static;
    display: block;
    text-align: left;
    top: 0;
    -webkit-transform: translateY(0); /* Safari用 */
    transform: translateY(0);
  }
}
@media (max-width: 479px) {
  .list_form > li.li_add dl {
    position: relative;
  }
  .list_form > li.li_add dl dd {
    padding-left: 0;
  }
  .list_form > li.li_add dl .inden {
    width: 1em;
    margin-right: 0.5em;
    position: absolute;
    left: -1.5em;
    top: 50%;
    text-align: right;
    -webkit-transform: translateY(-50%); /* Safari用 */
    transform: translateY(-50%);
  }
}
.list_form [type=text], .list_form [type=email], .list_form [type=password], .list_form [type=number], .list_form [type=tel], .list_form textarea, .list_form select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.64em;
  font-size: 3.6vw;
  width: 100%;
  max-width: 100%;
  border: 3px solid #ddd;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .list_form [type=text], .list_form [type=email], .list_form [type=password], .list_form [type=number], .list_form [type=tel], .list_form textarea, .list_form select {
    font-size: 1.8rem;
  }
}
.list_form textarea {
  padding: 0.8em;
}
.list_form input {
  width: 100%;
  height: 48px;
}
@media (min-width: 1024px) {
  .list_form input {
    width: 50%;
  }
}
.list_form input.seimei {
  width: 5em;
  display: inline-block;
}
.list_form input.inp_w30 {
  width: 30%;
}
@media (max-width: 479px) {
  .list_form input.inp_w30 {
    width: 100%;
  }
}
.list_form input.inp_w60 {
  width: 60%;
}
@media (max-width: 479px) {
  .list_form input.inp_w60 {
    width: 100%;
  }
}
.list_form input.inp_w90 {
  width: 90%;
}
@media (max-width: 479px) {
  .list_form input.inp_w90 {
    width: 100%;
  }
}
.list_form input#zip {
  width: 8em;
}
@media (max-width: 479px) {
  .list_form input#zip {
    width: 50%;
  }
}
@media (max-width: 479px) {
  .list_form select {
    padding: 10px;
    padding-right: 2em;
  }
  .list_form select#item {
    width: 100%;
  }
}
.list_form textarea {
  width: 100%;
  height: 12em;
}

.list_form_area {
  margin-top: 16px;
  margin-bottom: 56px;
}
.list_form_area > li > .dl_table {
  width: 100%;
  display: table;
}
.list_form_area > li > .dl_table > dt,
.list_form_area > li > .dl_table > dd {
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 479px) {
  .list_form_area > li > .dl_table > dt,
  .list_form_area > li > .dl_table > dd {
    display: block;
    font-size: 28px;
  }
}
.list_form_area > li > .dl_table > dt {
  width: 160px;
  padding-left: 4px;
}
@media (max-width: 479px) {
  .list_form_area > li > .dl_table > dt {
    width: auto;
    margin-bottom: 12px;
  }
}
.list_form_area > li > .dl_table > dd {
  padding-left: 2em;
  position: relative;
}
@media (max-width: 479px) {
  .list_form_area > li > .dl_table > dd {
    padding-left: 0;
  }
}
.list_form_area > li > .dl_table > dd.txtarea {
  display: block;
  padding-left: 0;
  margin-top: 24px;
}
.list_form_area input {
  width: 50%;
}
@media (max-width: 479px) {
  .list_form_area input {
    width: 100%;
    padding: 15px 10px;
  }
}
.list_form_area input.seimei {
  width: 30%;
  display: inline-block;
}
.list_form_area input.inp_w30 {
  width: 30%;
}
@media (max-width: 479px) {
  .list_form_area input.inp_w30 {
    width: 100%;
  }
}
.list_form_area input.inp_w60 {
  width: 60%;
}
@media (max-width: 479px) {
  .list_form_area input.inp_w60 {
    width: 100%;
  }
}
.list_form_area input.inp_w90 {
  width: 90%;
}
@media (max-width: 479px) {
  .list_form_area input.inp_w90 {
    width: 100%;
  }
}
.list_form_area select#type {
  min-width: 320px;
}
.list_form_area textarea {
  width: 100%;
  height: 12em;
}

.check_area {
  margin: 32px auto;
  text-align: center;
  font-size: 2rem;
  /*
  label {
  	padding-left: 48px;
  	display: inline-block;
  	cursor: pointer;
  	position: relative;
  	&:before {
  		content:'';
  		width: 32px;
  		height: 32px;
  		display: inline-block;
  		position: absolute;
  		left: 0;
  		top: 50%;
  		transform: translateY(-50%);
  		background-color:	#fff;
  		box-shadow:inset 1px 1px 2px 0px rgba(0,0,0,0.4);
  		border-radius:4px;
  		transition: .3s;
  		font-size:3.2rem;
  		line-height: 1;
  	}
  }
  input[type=checkbox] {
  	display: inline-block;
  	display: none;
  }
  input[type=checkbox]:checked + .mfp_element_hidden + label:before,
  input[type=checkbox]:checked + label:before {
  	content:'\2713';
  	font-size:3.2rem;
  	color: #fff;
  	background-color:	$color-main;
  	line-height: 1;
  }
  .mfp_err{
  	width: auto;
  }
  */
}
.check_area .precheck {
  width: auto;
}

.policy_area {
  margin-top: 24px;
  border-top: 1px solid #ddd;
  padding-top: 24px;
}
.policy_area .policyframe {
  border: 1px solid #ddd;
  height: 220px;
  overflow: scroll;
  padding: 16px;
  font-size: 1.6rem;
}
.policy_area .policyframe .dl_policy {
  padding-bottom: 16px;
}
.policy_area .policyframe .dl_policy > dd .ol_def1 > li:last-child > ul {
  margin-bottom: 0;
}
.policy_area .policyframe .dl_policy > dd .ol_def1 .h3_def1 {
  font-weight: normal;
}
.policy_area .policyframe .dl_policy > dd .ol_def1 .h3_def1 + ul {
  margin-bottom: 0.8em;
}

.wskLabel {
  cursor: pointer;
  font-size: 12pt;
  display: block;
  overflow: hidden;
  padding-top: 20px;
  position: relative;
  min-height: 40px;
}

.wskCheckbox {
  border: 2px solid #5a5a5a;
  color: #1d1d1d;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 14px;
  margin: 0 20px 20px 20px;
  outline-color: #eaeaea;
  padding: 0;
  position: relative;
  width: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.wskCheckbox.checked {
  border-left: 2px solid green;
  border-bottom: 4px solid green;
  border-top: 1px solid rgba(0, 0, 0, 0);
  border-right: 1px solid rgba(0, 0, 0, 0);
  -webkit-transform: rotate(-45deg) scaleY(0.5);
          transform: rotate(-45deg) scaleY(0.5);
}

input[type=checkbox].wskCheckbox {
  display: none;
}

.wskCircle {
  background-color: #ccdffd;
  border-radius: 50%;
  display: block;
  height: 40px;
  left: 9px;
  opacity: 0;
  position: absolute;
  top: 9px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 40px;
  z-index: 0;
}

.wskCircle.show {
  opacity: 1;
}

.wskCircle.flipColor {
  background-color: #d2d3d2;
}

.check_privacy {
  margin-bottom: 2em;
  text-align: center;
  font-size: 2.8vw;
}
@media (min-width: 1024px) {
  .check_privacy {
    font-size: 1.4rem;
    margin-bottom: 3.2em;
  }
}

.send, .home, .reset {
  text-align: center;
}
.send .button, .home .button, .reset .button {
  display: block;
  width: 80%;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  padding: 0.8em 3.2em 1em;
  background: #882539;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 1s;
  transition: all 1s;
  border-radius: 50px;
  margin: 0 auto 0.8em;
}
@media (min-width: 1024px) {
  .send .button, .home .button, .reset .button {
    max-width: 40%;
    font-size: 1.8rem;
    display: inline-block;
  }
}
.send .button:hover, .home .button:hover, .reset .button:hover {
  opacity: 0.4;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#thanks {
  padding-top: 40px;
}
#thanks .tit {
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
  padding: 16px 0;
  color: #882539;
}
#thanks .txt_blk {
  padding: 24px 0;
  text-align: center;
}
#thanks .txt_blk #mfp_thanks {
  font-size: 2rem;
  line-height: 2;
}
#thanks .txt_blk p {
  font-size: 2rem;
  line-height: 2;
}
#thanks .txt_blk .txt_img1 {
  margin: 40px auto 32px;
}
@media (max-width: 479px) {
  #thanks .txt_blk .txt_img1 {
    max-width: 100%;
  }
}
#thanks .btn_area {
  width: 620px;
  margin: 0 auto 80px;
}
@media (max-width: 479px) {
  #thanks .btn_area {
    width: auto;
  }
}
#thanks .btn_area a.btn01 {
  color: #fff;
  display: block;
  border-radius: 8px;
  padding: 0.8em 4em;
  background: #882539;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
/*-----------------------------------------------------------
   privacy
-----------------------------------------------------------*/
@media (max-width: 479px) {
  #privacy .container .poli_sec1 {
    width: auto;
  }
}
#privacy .container .poli_sec1 .read {
  padding-top: 1.6em;
  margin-bottom: 40px;
}
#privacy .container .poli_sec1 .read p {
  font-size: 3.2vw;
}
@media (min-width: 1024px) {
  #privacy .container .poli_sec1 .read p {
    font-size: 1.6rem;
  }
}
#privacy .container .poli_sec1 ul.policy > li > dl > dt {
  font-size: 3.2vw;
  padding-bottom: 4px;
  margin-bottom: 0;
  color: #882539;
}
@media (min-width: 1024px) {
  #privacy .container .poli_sec1 ul.policy > li > dl > dt {
    font-size: 1.8rem;
  }
}
#privacy .container .poli_sec1 ul.policy > li > dl > dd {
  margin-bottom: 32px;
  font-size: 3.2vw;
}
@media (min-width: 1024px) {
  #privacy .container .poli_sec1 ul.policy > li > dl > dd {
    font-size: 1.6rem;
  }
}
#privacy .container .poli_sec1 .box_contact {
  margin-top: 24px;
  padding: 8px 0px;
  border-top: 1px solid #000;
  line-height: 1.8;
}

/*-----------------------------------------------------------
   tamplate
-----------------------------------------------------------*/
#sitemaps .detail {
  padding: 4% 0px 100px;
}
@media (max-width: 479px) {
  #sitemaps .detail {
    padding: 10vw 0px;
  }
}
#sitemaps .detail .list {
  border-bottom: 1px solid #999;
}
#sitemaps .detail .list > li {
  border-top: 1px solid #999;
}
#sitemaps .detail .list > li > a {
  display: block;
  padding: 1em 1em;
  font-size: 1.8rem;
}
@media (max-width: 479px) {
  #sitemaps .detail .list > li > a {
    font-size: 4.25vw;
  }
}
#sitemaps .detail .list ul.sub-menu {
  border-top: 1px solid #eee;
}
#sitemaps .detail .list ul.sub-menu li {
  display: inline-block;
}
@media (max-width: 479px) {
  #sitemaps .detail .list ul.sub-menu li {
    display: block;
    margin: 1.5em;
  }
}
#sitemaps .detail .list ul.sub-menu li a {
  display: block;
  padding: 1.5em 1em;
  margin-right: 1em;
  color: #fff;
}
@media (max-width: 479px) {
  #sitemaps .detail .list ul.sub-menu li a {
    padding: 0px;
    margin: 0px;
  }
}
#sitemaps #sitemap_ul {
  border-top: 1px solid #dee2ec;
}
#sitemaps #sitemap_ul > li {
  border-bottom: 1px solid #dee2ec;
}
#sitemaps #sitemap_ul > li > a {
  display: block;
  padding: 16px 16px 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > a {
    padding: 1em 1em 1em 1em;
    font-size: 2.2rem;
    background-size: 15px;
  }
}
#sitemaps #sitemap_ul > li > a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  background: url(../img/common/a_arr.svg) center center no-repeat;
  background-size: contain;
  margin-bottom: 2px;
  margin-right: 6px;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > a:before {
    width: 20px;
    height: 21px;
  }
}
#sitemaps #sitemap_ul > li > #sitemap_list {
  border-top: none;
}
#sitemaps #sitemap_ul > li > #sitemap_list > li {
  border-bottom: 1px solid #dee2ec;
}
#sitemaps #sitemap_ul > li > #sitemap_list > li > a {
  display: block;
  padding: 16px 16px 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > #sitemap_list > li > a {
    padding: 1em 1em 1em 1em;
    font-size: 2.2rem;
    background-size: 15px;
  }
}
#sitemaps #sitemap_ul > li > #sitemap_list > li > a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  background: url(../img/common/a_arr.svg) center center no-repeat;
  background-size: contain;
  margin-bottom: 2px;
  margin-right: 6px;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > #sitemap_list > li > a:before {
    width: 20px;
    height: 21px;
  }
}
#sitemaps #sitemap_ul > li > ul > li a {
  display: block;
  padding: 16px 16px 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > ul > li a {
    font-size: 2.2rem;
  }
}
#sitemaps #sitemap_ul > li > ul > li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  opacity: 1;
  background: url(../img/common/hd_arr.svg) 94% center no-repeat;
  background-size: 7px auto;
  margin-bottom: 2px;
  margin-right: 6px;
}
@media (max-width: 479px) {
  #sitemaps #sitemap_ul > li > ul > li a:before {
    width: 20px;
    height: 21px;
  }
}