@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho:wght@400;700&family=Roboto:wght@500&display=swap');

/* 暫定画像 */
.p3-tmpkv {
  width: 100%;
  height: auto;
}


/* 汎用レイアウト */
.l-content {
  width: 90%;
  margin: 0 auto;
  
}
@media screen and (min-width:1024px) {
  .l-content {
    width: 980px;
    max-width: 100%;
  }
}

/* 汎用インナー */
.l-box {
  
}
.l-box_inner {
  padding: 0 3.90625vw; /* 40px / 1024px * 100vw */
}

@media screen and (min-width: 769px) {
  .l-box_inner {
    padding: 0 3.90625vw;  /* 40px / 1024px * 100vw */
  }
}
@media screen and (min-width: 1024px) {
  .l-box_inner {
    padding: 0 40px;
  }
}


/* 汎用背景 */
.l-bg.-type01 {
/*  background-image: url("/.resources/webresources/cpn/25prmm110v/images/gradient_bg01.png");*/
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
}


/* 汎用flex */
.l-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.l-flex.-pc0500sp1000 .l-flex-item {
  width: 100%;
}

.l-flex.-pc0475sp1000 .l-flex-item {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .l-flex.-pc0500sp1000 .l-flex-item {
    width: 50%;
  }

  .l-flex.-pc0475sp1000 .l-flex-item {
    width: 47.5%; /* 430px / 900px * 100% */
  }
}

/* 汎用grid */
.l-grid {
  display: grid;
  justify-content: space-between;
  align-items: stretch;
}
.l-grid.-half {
  grid-template-columns: repeat(1, 1fr);
}
.l-grid.-projectorLead {
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
}
.l-grid.-regza110v {
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
}
.l-grid.-gap040 {
  gap: 3.90625vw 3.90625vw;  /* 40px / 1024px * 100vw */
}
.l-grid.-gap050 {
  gap: 4.8828125vw 4.8828125vw;  /* 50px / 1024px * 100vw */
}
.l-grid.-gap060 {
  gap: 5.859375vw 5.859375vw;  /* 60px / 1024px * 100vw */
}

@media screen and (min-width: 769px) {
  .l-grid.-half {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid.-projectorLead {
    grid-template-columns: auto 1fr;
  }
  .l-grid.-regza110v {
    grid-template-columns: auto auto;  /* 300px / 1024px * 100vw = 30.2734375vw */
    justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .l-grid.-regza110v {
/*    grid-template-columns: 30.2734375vw 1fr;*/  /* 300px / 1024px * 100vw = 30.2734375vw */
  }
}
@media screen and (min-width: 1024px) {
  .l-grid.-gap040 {
    gap: 40px 40px;
  }
  .l-grid.-gap050 {
    gap: 50px 50px;
  }
  .l-grid.-gap060 {
    gap: 60px 60px;
  }

  .l-grid.-regza110v {
    grid-template-columns: 300px 1fr;
  }
}


/* 汎用ボックス */
.p-box {
  box-sizing: border-box;
}
.p-box.-ib {
  display: inline-block;
}
.p-box.-inline {
  display: inline;
}
.p-box.-block {
  display: block;
}

.p-box.-note01 {
  padding: 1.953125vw 3.90625vw;  /* 40px / 1024px * 100vw */
  background-color: #ededed;
}
.p-box.-note02 {
  padding: 1.953125vw 3.90625vw 3.90625vw;  /* 40px / 1024px * 100vw */
  background-color: #ededed;
}


.p-box.-ttl03box {
  padding: 0 10px;
  box-sizing: border-box;
  color: #ffffff;
  background-color: #124a47;
}
.p-box.-ttl03box span {
  display: inline-block;
  transform: translateY(-1px);
}

.p-box.-detailttl01box1 {
  padding: 3px 1em; /* 4px * 0.8 = 3.2px */
  border-top: 2px solid #aa8947;
  border-bottom: 2px solid #aa8947;
  box-sizing: border-box;
  color: #aa8947;
}
.p-box.-detailttl01box1 span {
  display: inline-block;
  transform: translateY(-1px);
}

.p-box.-detailttl01box2 {
  padding: 3px 1em; /* 4px * 0.8 = 3.2px */
  box-sizing: border-box;
  color: #ffffff;
  background-color: #de007f;
}
.p-box.-detailttl01box2 span {
  display: inline-block;
  transform: translateY(-1px);
}

.p-box.-detailttl02box {
  padding: 8px 1em; /* 10px * 0.8 = 8px */
  box-sizing: border-box;
  color: #ffffff;
  background-color: #aa8947;
}
.p-box.-detailttl02box span {
  display: inline-block;
  transform: translateY(-1px);
}

.p-box.-detailttl04box1 {
  padding: 7px 8px; /* 8px * 0.8 = 6.4px、10px * 0.8 = 8px */
  border-top: 1px solid #eb6ea5;
  border-bottom: 1px solid #eb6ea5;
  box-sizing: border-box;
  color: #eb6ea5;
}
.p-box.-detailttl04box1 span {
  display: inline-block;
  transform: translateY(-1px);
}

@media screen and (min-width:769px) {
  .p-box.-detailttl02box {
    padding: 4px 1em;
  }

  .p-box.-detailttl02box {
    padding: 10px 1em;
  }

  .p-box.-detailttl04box1 {
    padding: 8px 10px;
  }
}
@media screen and (min-width: 1024px) {
  .p-box.-note01 {
    padding: 20px 40px;
    background-color: #ededed;
  }
  .p-box.-note02 {
    padding: 20px 40px 40px;
    background-color: #ededed;
  }
}


/* 汎用テキスト */
.p-text.-regular {
  font-weight: 400 !important;
}
.p-text.-medium {
  font-weight: 500 !important;
}
.p-text.-bold {
  font-weight: 700 !important;
}

.p-text.-left {
  text-align: left !important;
}
.p-text.-center {
  text-align: center !important;
}
.p-text.-right {
  text-align: right !important;
}
.p-text.-justify {
  text-align: justify !important;
}

.p-text.-h1 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 25.6px;
  line-height: 1.8;
  font-weight: 500;
}

.p-text.-ttl01 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 16px;  /* 20px * 0.8 = 16px */
  line-height: 1.5;
  font-weight: 700;
}

.p-text.-ttl02 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 19.2px;  /* 24px * 0.8 = 19.2px */
  line-height: 1.5;
  font-weight: 900;
}

.p-text.-ttl03 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 32px;  /* 40px * 0.8 = 32px */
  line-height: 1.5;
  font-weight: 700;
}

.p-text.-ttl04 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 12.8px;  /* 16px * 0.8 = 12.8px */
  line-height: 1.5;
  font-weight: 500;
}

.p-text.-imgttl01 {
	width: 280px;  /* 350px * 0.8 = 280px */
	max-width: 100%;
}

@media screen and (min-width:769px) {
  .p-text.-h1 {
    font-size: 32px;
  }
  .p-text.-ttl01 {
    font-size: 20px;
  }

  .p-text.-ttl02 {
    font-size: 24px;
  }

  .p-text.-ttl03 {
    font-size: 40px;
  }

  .p-text.-ttl04 {
    font-size: 16px;
  }

  .p-text.-imgttl01 {
  	width: 350px;
  }
}


.p-text.-t01 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 10px;  /* 10px * 0.8 = 8 */
  line-height: 1.5;
  font-weight: 400;
}

.p-text.-t02 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 10px;  /* 11px * 0.8 = 8.8 */
  line-height: 1.5;
  font-weight: 400;
}

.p-text.-t03 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 10px;  /* 12px * 0.8 = 9.6 */
  line-height: 1.5;
  font-weight: 400;
}

.p-text.-t04 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 14.4px;  /* 18px * 0.8 = 14.4 */
  line-height: 1.5;
  font-weight: 400;
}

.p-text.-t05 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 19.2px;  /* 24px * 0.8 = 19.2px */
  line-height: 1.5;
  font-weight: 400;
}

.p-text.-t06 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 12px;  /* 15px * 0.8 = 12px */
  line-height: 1.8;
  font-weight: 400;
}

.p-text.-t07 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 16px;  /* 20px * 0.8 = 16px */
  line-height: 1.5;
  font-weight: 400;
}

.p-text.-t08 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 22.4px;  /* 28px * 0.8 = 22.4px */
  line-height: 1.5;
  font-weight: 400;
}

.p-text.-t09 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 22.4px;  /* 28px * 0.8 = 22.4px */
  line-height: 1.5;
  font-weight: 500;
}

.p-text.-t10 {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 25.6px;  /* 32px * 0.8 = 25.6px */
  line-height: 1.5;
  font-weight: 500;
}


.p-text.-t31 {
  font-family: 'Roboto', 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 15.2;  /* 19px * 0.8 = 15.2 */
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (min-width:769px) {
  .p-text.-t01 {
    font-size: 10px;
  }
  .p-text.-t02 {
    font-size: 11px;
  }
  .p-text.-t03 {
    font-size: 12px;
  }
  .p-text.-t04 {
    font-size: 18px;
  }
  .p-text.-t05 {
    font-size: 24px;
  }
  .p-text.-t06 {
    font-size: 15px;
  }
  .p-text.-t07 {
    font-size: 20px;
  }
  .p-text.-t08 {
    font-size: 28px;
  }
  .p-text.-t09 {
    font-size: 28px;
  }
  .p-text.-t10 {
    font-size: 32px;
  }

  .p-text.-t31 {
    font-size: 19px;  /* 19px * 0.8 = 15.2 */
  }
}


/* 数字を丸で囲む */
.p-circleText {
  display: inline-block;
  position: relative;
  transform: translate(0, -0.2em);
  width: 1.4em;
  margin-right: 3px;
  font-size: 80%;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  
  &::after {
    position: absolute;
    top: calc(50% + 0.1em);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.4em;
    height: 1.4em;
    content: "";
    border-radius: 50%;
    border: 2px solid rgba(39, 33, 11, 1);
    box-sizing: border-box;
  }
}


.p-fs.-per50 {
  font-size: 50%;
}
.p-fs.-per60 {
  font-size: 60%;
}
.p-fs.-per70 {
  font-size: 70%;
}
.p-fs.-per80 {
  font-size: 80%;
}

.p-fc.-wh {
  color: rgba(255, 255, 255, 1);
}
.p-fc.-bk {
  color: rgba(0, 0, 0, 1);
}
.p-fc.-black01 {
  color: rgba(51, 51, 51, 1); /* #333333 */
}
.p-fc.-black02 {
  color: rgba(49, 38, 39, 1); /* #312627 */
}
.p-fc.-black03 {
  color: rgba(34, 34, 34, 1); /* #222222 */
}
.p-fc.-black04 {
  color: rgba(39, 33, 11, 1); /* #27210b */
}

.p-fc.-gold01 {
  color: rgba(170, 137, 71, 1); /* #aa8947 */
}
.p-fc.-red01 {
  color: rgba(222, 0, 127, 1); /* #de007f */
}
.p-fc.-pink01 {
  color: rgba(235, 110, 165, 1); /* #eb6ea5 */
}

.p-fc.-gray {
  color: rgba(208, 208, 208, 1);
}
.p-fc.-blue {
  color: rgba(0, 18, 36, 1);
}
.p-fc.-yellow {
  color: rgba(255, 241, 0, 1);
}

.p-va.-top {
  vertical-align: top;
}
.p-va.-middle {
  vertical-align: middle;
}
.p-va.-baseline {
  vertical-align: baseline;
}
.p-va.-bottom {
  vertical-align: bottom;
}


/* letter-spacing */
/* 句読点、かっこを半分にする */
.p-ls.-lsmdot {
  letter-spacing: -0.5em;
}

.p-ls.-ls019 {
  letter-spacing: 0.19em;
}
.p-ls.-ls021 {
  letter-spacing: 0.21em;
}

/* letter-spacing */



/* 汎用リスト */
.p-list.-list01 {
  box-sizing: border-box;
  text-align: justify;
}
.p-list.-list01.-center {
  text-align: center;
}
.p-list.-list01 > li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.p-list.-list01.-center > li {
  justify-content: center;
}
.p-list.-list01 > li:before {
  display: block;
  position: relative;
  transform: translateY(-0.1em);
  content: "※";
  padding-right: 3px;
  box-sizing: border-box;
}

.p-list.-list02 {
  box-sizing: border-box;
  text-align: justify;
}
.p-list.-list02 > li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.p-list.-list02 > li:before {
  display: block;
  position: relative;
  content: "※";
  padding-right: 0.1em;
  box-sizing: border-box;
}

.p-list.-list03 {
  box-sizing: border-box;
  text-align: justify;
}
.p-list.-list03 > li {
  padding-left: 1.1em;
}
.p-list.-list03 > li::before{
  display: inline-block;
  content: "\025cf";
  width: 1.1em;
  margin-left: -1.1em;
}

.p-list.-list04 {
  box-sizing: border-box;
  text-align: justify;
}
.p-list.-list04 > li {
  padding-left: 1.1em;
}
.p-list.-list04 > li::before{
  display: inline-block;
  content: "\025ce";
  width: 1.1em;
  margin-left: -1.1em;
}

.p-list.-list05 {
  box-sizing: border-box;
  text-align: justify;
}
.p-list.-list05 > li {
  padding-left: 1.1em;
}
.p-list.-list05 > li::before{
  display: inline-block;
  width: 1.1em;
  margin-left: -1.1em;
}
.p-list.-list05 > li:nth-of-type(1)::before{
  content: "\02460";
}
.p-list.-list05 > li:nth-of-type(2)::before{
  content: "\02461";
}
.p-list.-list05 > li:nth-of-type(3)::before{
  content: "\02462";
}
.p-list.-list05 > li:nth-of-type(4)::before{
  content: "\02463";
}
.p-list.-list05 > li:nth-of-type(5)::before{
  content: "\02464";
}
.p-list.-list05 > li:nth-of-type(6)::before{
  content: "\02465";
}
.p-list.-list05 > li:nth-of-type(7)::before{
  content: "\02466";
}
.p-list.-list05 > li:nth-of-type(8)::before{
  content: "\02467";
}
.p-list.-list05 > li:nth-of-type(9)::before{
  content: "\02468";
}
/* 汎用リスト */

/* 汎用リンク */
.p-link.-link01 {
  border-bottom: 1px solid rgba(222, 0, 127, 1);
  color: rgba(222, 0, 127, 1);
  cursor: pointer;
}

.p-link.-link02 {
  border-bottom: 1px solid rgba(235, 110, 165, 1);
  color: rgba(235, 110, 165, 1);
  cursor: pointer;
}
/* 汎用リンク */

/* 汎用区切り線 */
.p-border.-type01 {
  
}

/* 汎用改行 */
.p-break.-maxpc {
  display: inline;
}

@media screen and (min-width:769px) {
  .p-break.-maxpc {
    display: none;
  }
}

.p-break.-minpc {
  display: none;
}

@media screen and (min-width:769px) {
  .p-break.-minpc {
    display: inline;
  }
}


/* 汎用画像回り込み */
.p-img.-floatleft {
  float: left;
}
.p-img.-floatleft.-minpc {
  float: none;
}
.p-img.-floatright {
  float: right;
}
.p-img.-floatright.-minpc {
  float: none;
}
.p-clearboth {
  clear: both;
}

@media screen and (min-width:769px) {
  .p-img.-floatleft.-minpc {
    float: left;
  }
  .p-img.-floatright.-minpc {
    float: right;
  }
}



.dbt {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.dbt h1,
.dbt h2,
.dbt h3,
.dbt h4,
.dbt h5{
  font-weight: 700;
}

.dbt .rob{
  font-family: 'Roboto', 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 500;
}

/* 汎用テキスト */

/* 汎用margin */
.u-m-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-mb5 {
  margin-bottom: 5px;
}
.u-mb10 {
  margin-bottom: 10px;
}
.u-mb10_half {
  margin-bottom: 5px;
}
.u-mb15 {
  margin-bottom: 15px;
}
.u-mb20 {
  margin-bottom: 20px;
}
.u-mb20_half {
  margin-bottom: 10px;
}
.u-mb25 {
  margin-bottom: 25px;
}
.u-mb30 {
  margin-bottom: 30px;
}
.u-mb30_20 {
  margin-bottom: 20px;
}
.u-mb30_half {
  margin-bottom: 15px;
}
.u-mb35 {
  margin-bottom: 35px;
}
.u-mb35_half {
  margin-bottom: 20px;
}
.u-mb40 {
  margin-bottom: 40px;
}
.u-mb40_half {
  margin-bottom: 20px;
}
.u-mb50_half {
  margin-bottom: 25px;
}
.u-mb55_half {
  margin-bottom: 30px;
}
.u-mb60 {
  margin-bottom: 60px;
}
.u-mb60_half {
  margin-bottom: 30px;
}
.u-mb70 {
  margin-bottom: 70px;
}
.u-mb70_half {
  margin-bottom: 35px;
}
.u-mb70_60 {
  margin-bottom: 60px;
}
.u-mb80 {
  margin-bottom: 80px;
}
.u-mb80_half {
  margin-bottom: 40px;
}
.u-mb90 {
  margin-bottom: 90px;
}
.u-mb100_half {
  margin-bottom: 50px;
}
.u-mb110_half {
  margin-bottom: 55px;
}
.u-mb120_half {
  margin-bottom: 60px;
}
.u-mb130_half {
  margin-bottom: 65px;
}
.u-mb140_half {
  margin-bottom: 70px;
}
.u-mb160_half {
  margin-bottom: 80px;
}
.u-mb180_half {
  margin-bottom: 90px;
}

@media screen and (min-width:769px){
  .u-mb10_half {
    margin-bottom: 10px;
  }
  .u-mb20_half {
    margin-bottom: 20px;
  }
  .u-mb30_20 {
    margin-bottom: 30px;
  }
  .u-mb30_half {
    margin-bottom: 30px;
  }
  .u-mb35_half {
    margin-bottom: 35px;
  }
  .u-mb40_half {
    margin-bottom: 40px;
  }
  .u-mb50_half {
    margin-bottom: 50px;
  }
  .u-mb55_half {
    margin-bottom: 55px;
  }
  .u-mb60_half {
    margin-bottom: 60px;
  }
  .u-mb70_half {
    margin-bottom: 70px;
  }
  .u-mb70_60 {
    margin-bottom: 70px;
  }
  .u-mb80_half {
    margin-bottom: 80px;
  }
  .u-mb100_half {
    margin-bottom: 100px;
  }
  .u-mb110_half {
    margin-bottom: 110px;
  }
  .u-mb120_half {
    margin-bottom: 120px;
  }
  .u-mb130_half {
    margin-bottom: 130px;
  }
  .u-mb140_half {
    margin-bottom: 140px;
  }
  .u-mb160_half {
    margin-bottom: 160px;
  }
  .u-mb180_half {
    margin-bottom: 180px;
  }
}
/* 汎用margin */

/* 汎用padding */
.u-pt0 {
  padding-top: 0;
}
.u-pt5 {
  padding-top: 5px;
}
.u-pb5 {
  padding-bottom: 5px;
}
.u-py5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.u-pb10 {
  padding-bottom: 10px;
}
.u-pt60_half {
  padding-top: 30px;
}
.u-pt100_half {
  padding-top: 50px;
}
.u-pb80_half {
  padding-bottom: 40px;
}
.u-pb130_half {
  padding-bottom: 65px;
}
.u-pb180_half {
  padding-bottom: 90px;
}
.u-pb200_half {
  padding-bottom: 100px;
}

.u-px10 {
  padding-left: 10px;
  padding-right: 10px;
}

.u-py80_half {
  padding-top: 40px;
  padding-bottom: 40px;
}

.u-pt15_10 {
  padding-top: 10px;
}

.u-pt30_half {
  padding-top: 15px;
}

@media screen and (min-width:769px) {
  .u-pt15_10 {
    padding-top: 15px;
  }
  .u-pt30_half {
    padding-top: 30px;
  }
  .u-pt60_half {
    padding-top: 60px;
  }
  .u-pt100_half {
    padding-top: 100px;
  }
  .u-pb80_half {
    padding-bottom: 80px;
  }
  .u-pb130_half {
    padding-bottom: 130px;
  }
  .u-pb180_half {
    padding-bottom: 180px;
  }
  .u-pb200_half {
    padding-bottom: 200px;
  }

  .u-py80_half {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* 汎用padding */

/* 汎用字下げ */
.u-indent {
  text-indent: -1em;
  padding-left: 1em;
}
/* 汎用字下げ */

/* 汎用ボタン */
.p-btn1 {
  display: block;
  position: relative;
  width: 560px; /* 700px * 0.8 = 560px */
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  background-color: rgba(39, 33, 11, 0.15);
  font-size: 16.8px; /* 24px * 0.7 = 16.8 */
  text-align: center;
  letter-spacing: 0.12em;
}
  
.p-btn1_inner {
  display: flex;
  align-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 25px 25px;
  box-sizing: border-box;
  color: #fff !important;
}

@media screen and (min-width:480px) {
  .p-btn1 {
    font-size: 19.2px; /* 24px * 0.8 = 22.4 */
  }
}
@media screen and (min-width:640px) {
  .p-btn1 {
    width: 560px; /* 0.8 */
    font-size: 19.2px;
  }
}
@media screen and (min-width: 769px) {
  .p-btn1 {
    width: 700px;
    font-size: 24px;
  }
  .p-btn1_inner {
    padding: 32px 32px;
  }
}
/* 汎用ボタン */


/* 個別指定 */
#content {
	margin: 0 auto 0;
/*	margin: -12px auto 0;*/
	min-width: 100% !important;
/*	min-width: 1200px;*/
	max-width: 100%;
	min-height: 30px;
  color: #000;
	overflow: hidden;
}
@media screen and (min-width:769px){
  #content {
  	margin: 0 auto 0;
/*  	margin: -28px auto 0;*/
  }
  #content.-noscroll {
    margin-top: 0;
/*    margin-top: 78px;*/
  }
}
@media screen and (min-width:1024px){
  #content {
    margin: 0 auto 0;
/*    margin: -28px auto 0;*/
  }
  #content.-noscroll {
    margin-top: 0;
/*    margin-top: -28px;*/
  }
}
@media screen and (max-width: 1366px){
  #content {
    margin: 0 auto 0;
/*    margin: -28px auto 0;*/
  }
}
@media screen and (min-width: 1367px) {
  #content {
    margin: 0 auto 0;
  }
}
@media screen and (min-width:1400px) {
  #content.-noscroll {
    margin-top: 0;
/*    margin-top: -12px;*/
  }
}

.dbt .dbt_inner {
  max-width: 1180px;
  margin: 0 auto;
}

.dbt img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.dbt p.note {
  text-indent: -1em;
  padding-left: 1em;
}

.dbt a {
  color: #2ea7e0;
}

.dbt a.blank {
  padding-right: 1.3em;
  background: url("/.resources/webresources/cpn/23despt/images/icon_blank.png") right center no-repeat;
  background-size: 1em auto;
}

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

.dbt .red {
  color: #ff0000 !important;
}


/* g-nav */
.g-nav-fixed {
  height: 0 !important;
}
/* g-nav */

/* メインビジュアル */
.mv {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.mv .l-content {
  position: relative;
  height: 100%;
}

.mv-bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.mv .mv-img01 {
  position: relative;
  width: 100%;
  max-width: none !important;
  height: auto;
}
.mv .mv-img01.-pc {
  display: none;
}
.mv .mv-img01.-sp {
  display: block;
  margin-top: 55px;
}

@media screen and (min-width:769px) {
  .mv .mv-img01.-pc {
    display: block;
    margin-top: calc(50px - 20px);
  }
  .mv .mv-img01.-sp {
    display: none;
    margin-top: 0;
  }
}
@media screen and (min-width: 1367px) {
  .mv .mv-img01.-pc {
    margin-top: 50px;
  }
}

/* メインビジュアル */


/* lead */
.lead-txt01-img {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 10px 6px;
  border: 1px solid #979190;
  box-sizing: border-box;
  text-align: center;
}
.lead-txt01-img img  {
  width: 100%;
  max-width: 303px;
  height: auto;
}

@media screen and (min-width:769px) {
  .lead-txt01-img {
    margin-bottom: 0;
  }
}
/* lead */

/* 下線ありタイトル */
.box-ttl{
  position: relative;
  padding: 10px;
  box-sizing: border-box;
}
.box-ttl::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 420px;
  height: 3px;
  background-color: #fff;
  content: "";
}

/* product */
.product-box {
  padding-top: 40px;
  box-sizing: border-box;
}
@media screen and (min-width:769px) {
  .product-box {
    padding-top: 60px;
  }
}

.product-img01 {
  width: 100%;
  
}
.product-img01 img {
  width: 100%;
  height: auto;
}


.product-ttl {
  width: 100%;
  max-width: 460px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #27210b;
  background-color: rgba(255, 255, 255, 0.4);
}

.product-txt01, .product-txt02 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;  
}
.product-txt01 {
  max-width: 605px;
}
.product-txt02 {
  max-width: 720px;
}
.product-txt01 img, .product-txt02 img {
  width: 100%;
  height: auto;
}
/* product */


/* projector */
.projector-txt01 {
  width: 100%;
  max-width: 292px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:769px) {
  .projector-txt01 {
    margin-left: 0;
  }
}

.projector-txt01 img {
  width: 100%;
  height: auto;
}
/* projector */


/* regza110v */
.regza110v-img01 {
  width: 100%;
  max-width: 186px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:769px) {
  .regza110v-img01 {
    margin-left: auto;
    margin-right: 0;
  }
}

.regza110v-img01 img {
  width: 100%;
  max-width: 186px;
  height: auto;
}
/* regza110v */






/* タブ・パネル */
.detail .tab {
  display: grid;
  position: relative;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.44140625vw 2.44140625vw;  /* 25px / 1024px * 100vw */
}

.detail .tab .tab-item {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  color: #ffffff;
  background-color: #7fbe25;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
}

.detail .tab .tab-item:hover {
  background-color: #eb6ea5;
  transition: background-color 0.3s ease 0s;
}

.detail .tab .tab-item.active, .detail .tab .tab-item.active:hover {
  background-color: #de007f;
  transition: background-color 0.3s ease 0s;
}

.detail .tab .tab-item .tab-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.detail .tab .tab-item .tab-item-inner .tab-item-txt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;    
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 10px 0;  /* 12px * 0.8 = 9.6 */
  box-sizing: border-box;
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 16.8px;  /* 24px * 0.7 = 16.8 */
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}
.detail .tab .tab-item .tab-item-inner .tab-item-txt span {
  display: inline-block;
}

@media screen and (min-width:480px){
  .detail .tab .tab-item .tab-item-inner .tab-item-txt {
    flex-direction: row;
  }
}
@media screen and (min-width:640px) {
  .detail .tab .tab-item .tab-item-inner .tab-item-txt {
    font-size: 19.2px;  /* 24px * 0.8 = 19.2 */
  }
}
@media screen and (min-width:769px){
  .detail .tab {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2.44140625vw;  /* 25px / 1024px * 100vw */
  }
  
  .detail .tab .tab-item {
  }
  
  .detail .tab .tab-item .tab-item-inner .tab-item-txt {
    flex-direction: column;    
    padding: 12px 0;
    font-size: 19.2px;  /* 24px * 0.8 = 19.2 */
  }

  .detail .tab .tab-item .tab-item-inner .tab-item-txt span {
    display: block;
  }
}
@media screen and (min-width: 920px) {
  .detail .tab .tab-item .tab-item-inner .tab-item-txt {
    font-size: 21.6px;  /* 24px * 0.9 = 21.6 */
  }
}
@media screen and (min-width: 1024px) {
  .detail .tab {
    gap: 0 25px;
  }

  .detail .tab .tab-item .tab-item-inner .tab-item-txt {
    font-size: 24px;
  }
}

.wbox section {
  padding-bottom: 40px;
  box-sizing: border-box;
  background-color: #ffffff;
}

@media screen and (min-width:769px) {
  .wbox section {
    padding-bottom: 80px;
  }
}

.wbox .cp02, .wbox .cp03, .wbox .cp04 {
  display: none;
}

/* タブ・パネル */


/* 手順 */
.step {
  
}

.step .step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 0;  /* 20px * 0.8 = 16 */
}

.step .step-list .step-item {
  display: grid;
  grid-template-columns: 64px 1fr;  /* * 0.8、可変、* 0.7 */
  position: relative;
  background-color: rgba(159, 207, 204, 0.3);
}

.step .step-list.-type02 .step-item {
  background-color: rgba(242, 175, 204, 0.3);
}

.step .step-list .step-item::after  {
  display: block;
  position: absolute;
  bottom: -4px; /* 5px * 0.8 = 4px */
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-right: 40px solid transparent; /* * 0.8 */
  border-left: 40px solid transparent; /* * 0.8 */
  border-top: 16px solid #7fbe25; /* * 0.8 */
  border-bottom: 0;
}
.step .step-list .step-item:last-of-type::after  {
  display: none;
}

.step .step-list.-type02 .step-item::after {
  display: none;
}


.step .step-list .step-item .step-head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;  /* * 0.8 */
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  background-color: #124a47;
}
.step .step-list.-type02 .step-item .step-head {
  background-color: #eb6ea5;
}

.step .step-list .step-item .step-head img {
  width: 61.25%;  /* 49px / 80px * 100% */
}
.step .step-list .step-item .step-body {
  position: relative;
  padding: 8px 12px 15px;  /* * 0.8 */
  box-sizing: border-box;
}
.step .step-list.-type02 .step-item .step-body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.step .step-list .step-item .step-body.-qr {
  padding-right: 90px;
}

.step .step-list .step-item .step-ttl {
  margin-bottom: 4px; /* 5px * 0.8 = 4px */
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 15.2px;  /* 19px * 0.8 = 15.2 */
  line-height: 1.2;
  font-weight: 700;
  color: #124a47;
}
.step .step-list.-type02 .step-item .step-ttl {
  margin-bottom: 0;
  font-size: 14.4px;  /* 18px * 0.8 = 14.4 */
  color: #de007f;
}

.step .step-list .step-item .step-txt {
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 12px;  /* 15px * 0.8 = 12 */
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;
  color: #333333;
}

.step .step-list .step-item .step-body .step-qr {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 80px;  /* 100px * 0.8 = 80px */
  height: 80px;
}

@media screen and (min-width:769px) {
  .step .step-list {
    gap: 20px 0;
  }

  .step .step-list .step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
  }

  .step .step-list .step-item::after  {
    bottom: -5px;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 20px solid #7fbe25;
  }

  .step .step-list .step-item .step-head {
    padding: 12px 6px;
  }

  .step .step-list .step-item .step-body {
    padding: 10px 15px 18px;
  }

  .step .step-list .step-item .step-body.-qr {
    padding-right: 110px;
  }

  .step .step-list .step-item .step-ttl {
    margin-bottom: 5px;
    font-size: 19px;
  }
  .step .step-list.-type02 .step-item .step-ttl {
    margin-bottom: 0;
    font-size: 18px;  /* 18px * 0.8 = 14.4 */
  }

  .step .step-list .step-item .step-txt {
    font-size: 15px;
  }

  .step .step-list .step-item .step-body .step-qr {
    width: 100px;
    height: 100px;
  }
}

.step-receiptbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.953125vw 2.9296875vw; /* 20px / 1024px * 100vw、30px / 1024px * 100vw */
}
.step-receiptbox .step-receiptbox-item {
  display: inline-block;
  width: auto;
}

.step-receiptbox .step-receipt1 {
  width: 158px;
}
.step-receiptbox .step-receipt2 {
  width: 415px;
}
.step-receiptbox .step-receipt3 {
  width: 356px;
  max-width: 85.7%; /* 356px / 415px * 100% */
}

@media screen and (min-width:640px) {
  .step-receiptbox {
    flex-wrap: nowrap;
    justify-content: center;
  }
}
@media screen and (min-width:769px) {
  .step-receiptbox {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1024px) {
  .step-receiptbox {
    gap: 20px 30px;
  }
}

.step-imgdata {
  position: relative;
  background-color: #ededed;
  padding: 32px 3.90625vw; /* 40px / 1024px * 100vw */
}
.step-imgdata-ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 192px;  /* 240px * 0.8 = 192 */
  padding: 16px;
  border-radius: 100vh;
  box-sizing: border-box;
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 16px;  /* 20px * 0.8 = 16 */
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background-color: #de007f;
}

@media screen and (min-width:769px) {
  .step-imgdata {
    padding: 40px 3.90625vw;  /* 40px / 1024px * 100vw */
  }
  .step-imgdata-ttl {
    width: 240px;
    padding: 20px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .step-imgdata {
    padding: 40px 40px;
  }
}

.step-complete {
  display: inline-block;
  width: 33% !important;
  margin-top: 15px;
  margin-left: 15px;
  margin-bottom: 15px;
}

@media screen and (min-width:769px) {
  .step-complete {
    width: 200px !important;
    margin-top: 0;
    margin-left: 30px;
    margin-bottom: 30px;
  }
}

.step-sevenbank01 {
  display: inline-block;
  width: 100%;
  max-width: 623px;
}

.step-sevenbank02 {
  display: inline-block;
  width: 100%;
  max-width: 314px;
}

/* 手順 */

/* よくあるご質問 */
.faq .faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 0;  /* 20px * 0.8 = 16 */
}

.faq .faq-list .faq-item {
  display: grid;
  grid-template-columns: 64px 1fr;  /* * 0.8、可変、* 0.7 */
  position: relative;
  background-color: rgba(159, 207, 204, 0.3);
}

.faq .faq-list.-type02 .faq-item {
  background-color: rgba(242, 175, 204, 0.3);
}

.faq .faq-list .faq-item .faq-head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;  /* * 0.8 */
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  background-color: #124a47;
}
.faq .faq-list .faq-item.-a .faq-head {
  background-color: #eb6ea5;
}
.faq .faq-list .faq-item.-a .faq-head {
  background-color: #eb6ea5;
}

.faq .faq-list .faq-item .faq-head img {
  width: 46.25%;  /* 37px / 80px * 100% */
}
.faq .faq-list .faq-item .faq-body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 8px 12px 15px;  /* * 0.8 */
  box-sizing: border-box;
}

.faq .faq-list .faq-item .faq-ttl {
  margin-bottom: 4px; /* 5px * 0.8 = 4px */
	font-family: 'Noto Sans JP',"Hiragino Sans","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","游ゴシック", "Yu Gothic", YuGothic,"メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 15.2px;  /* 19px * 0.8 = 15.2 */
  line-height: 1.2;
  font-weight: 700;
  color: #124a47;
}
.faq .faq-list.-type02 .faq-item .faq-ttl {
  margin-bottom: 0;
  font-size: 14.4px;  /* 18px * 0.8 = 14.4 */
  color: #de007f;
}
/* よくあるご質問 */






.dbt .note_list li {
  font-size: 15px;
  list-style: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}

.dbt .note_list li + li{
  margin-top: 3px;
}

.dbt .note_list li a{
  color: #000;
}

.caution ul + h3{
  margin-top: 55px;
}


.tv{
  text-align: center;
  margin-bottom: 60px;
}

.tv h2{
  font-size: 30px;
  line-height: 1;
  color: #FFF;
  font-weight: bold;
  padding: 20px 0;
  background: #333;
  border-radius: 10px;
  margin-bottom: 30px;
}

.tv ul{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  margin-bottom: 30px;
}

.tv ul li{
  width: 495px;
  color: #FFF;
  text-align: left;
  padding: 20px 15px 70px;
  background: #333;
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
}

.tv ul li:nth-of-type(n + 3){
  margin-top: 20px;
}

.tv ul li.sed{
  padding-top: 50px;
  padding-bottom: 100px;
}

.tv ul li.sed.pb{
  padding-bottom: 60px;
}

.tv ul li.sed > p{
  width: 145px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  color: #FFF;
  background: #ff3eb3;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.tv ul li > img{
  width: auto;
  height: 34px;
  margin-bottom: 15px;
  display: block;
}

.tv ul li .pic{
  width: 240px;
  position: absolute;
  top: 75px;
  right: 10px;
}

.tv ul li .pic img:first-of-type{
  width: auto;
  height: 30px;
  position: absolute;
  right: 10px;
  bottom: -35px;
}

.tv ul li.sed .pic{
  top: 50px;
}

.tv h4{
  font-size: 33px;
  line-height: 32px;
  margin-bottom: 5px;
}

.tv h4 em{
  font-style: normal;
  font-size: 12px;
  line-height: 1.3;
  display: block;
  margin-bottom: 5px;
}

.tv h4 span{
  font-size: 16px;
  padding-left: 10px;
}

.tv ul li h5{
  font-size: 24px;
  line-height: 1;
  margin-bottom: 5px;
}

.tv ul li p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.tv ul li p span{
  line-height: 1.1;
  padding: 1px 4px;
  margin-left: .5em;
  color: #FFF;
  background: #ff3eb3;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}

.tv ul li .txt div p,
.br_box p{
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.tv ul li  a,
.br_box a{
  font-size: 18px;
  line-height: 1;
  color: #000;
  background: #ffd100;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
}

.tv ul li a + a,
.br_box a + a{
  margin-left: 13px;
}

.tv_box > p,
.br_box > p{
  font-size: 15px;
  line-height: 1;
  color: #FFF;
  text-align: center;
}

.tv ul li a.single,
.br_box a.single{
  width: 50%;
  font-size: 16px;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.tv ul li a.single{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%)
}

.tv ul li .oln{
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
}

.tv ul li.rd img{
  width: 350px;
  height: auto;
  display: block;
  margin: 30px auto 0;
}

.foot_block{
/*  width: 1010px;*/
  margin: 100px auto 60px;
}

.contact h2{
  height: auto;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  padding: 18px 0;
  margin-bottom: 60px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow:    none;
  box-shadow: none;
}

.contact h3{
  font-size: 20px;
  line-height: 1;
  font-weight: normal;
  text-align: center;
  margin-bottom: 15px;
}

.contact h3.line{
  font-size: 18px;
  line-height: 1;
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 80px;
}

.contact table{
  width: 100%;
  margin-bottom: 10px;
  border-collapse:  collapse;
}

.contact table a{
  text-decoration: underline;
}

.contact th,
.contact td{
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  padding: 12px 20px;
  border: 1px solid #1a1a1a;
  box-sizing: border-box;
}

.contact th{
  width: 385px;
  background: #e8e8e8;
  text-align: center;
}

.contact td li{
  font-size: 14px;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

.dbt  .logo_box{
  margin-top: 50px;
}

.dbt .logo {
  width: 100%;
  max-width: 800px;
/*  height: 368px;*/
/*  padding-right: 20px;*/
  margin: 0 auto 20px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-content: space-between;
  gap: 10px 20px;
}

.dbt .logo a {
/*  margin-left: 20px;*/
  display: inline-block;
  width: calc( (100% / 2) - (20px / 2) ) !important;
}
@media screen and (min-width:769px){
  .dbt .logo {
    gap: 20px 20px;
  }
  .dbt .logo a {
    width: calc( (100% / 3) - (20px / 3 * 2) ) !important;
  }
}

.dbt  .logo img {
  border: 1px solid #00412e;
}

.dbt  .logo_box > p{
  text-align: center;
  font-size: 16px;
}

.dbt .logo_box h3 {
  font-size: 18px;
  line-height: 1;
  color: #004027;
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
}


.dbt .link_box{
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  margin-left: -15px;
  margin-right: -15px;
}

.dbt .link_box li{
  width: calc( (100% / 3) - (10px / 3 * 2) );
/*  width: 330px;*/
  height: 100px;
  text-align: center;
}

.dbt .link_box li a{
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 1.5;
  text-decoration: none;
  color: #FFF;
  background: #1a1a1a;
  padding-top: 23px;
  box-sizing: border-box;
  display: block
}

.dbt .link_box li a span{
  font-size: 16px;
  display: block;
}

.sp{
  display: none;
}

.pc{
  display: block;
  margin: 0 auto;
}

@media screen and (max-width:768px){
  .sp{
    display: block !important;
  }

  .pc{
    display: none !important;
    margin: 0;
  }
  
  #container {
    margin-top: 0 !important;
  }
  #content {
    margin: 0 auto 0;
    min-width: inherit;
    color: #000;
    overflow: hidden;
  }
  
  .dbt {
    overflow: hidden;
    font-size: 3.5vw;
  }
  
  .dbt a:hover{
    opacity: 1;
  }
    
  .dbt img{
    width: 100%;
    height: auto;
  }
  
  .dbt .tac{
    text-align: left;
  }  
  
  .dbt p.note{
    font-size: 3vw;
    line-height: 1.5;
  }
  
  .dbt .dbt_inner{
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .mv-bg {
  }

  .mv{
/*    height: auto;*/
  }

  .mv h1{
    width: auto;
    height: auto;
  }

  .mv img{
    max-width: inherit;
    width: 100%;
    height: auto
  }

  .hr{
    height: auto;
  }

  .desc{
    padding: 10vw 0 15vw;
  }

  .desc > div{
    width: 100%;
    padding: 0 5vw;
  }

  .desc h2{
    font-size: 6vw;
    line-height: 1.3;
    margin-bottom: 2vw;
  }

  .desc h3{
    font-size: 4.8vw;
    line-height: 1.3;
    margin: 3vw 0;
    white-space: nowrap;
  }

  .desc h3.mih{
    min-height: inherit;
    position: relative;
  }

  .desc h3.mih span{
    display: block;
    width: 100%;
    position: static;
    top: auto;
    left: auto;
    transform: translateY(0)
  }

  .desc h3 + p,
  .desc h3 + a{
    height: 10vw;
    font-size: 4.3vw;
    line-height: 10vw;
  }

  .desc > div > p {
    font-size: 4.5vw;
    line-height: 1.4;
    margin-bottom: 8vw;
  }

  .desc .c1 > div img,
  .desc .c2 img{
    width: 100%;
  }

  .desc .c1 > div img + img{
    border: none;
    display: block;
    width: 80%;
    margin: 6vw auto;
    position: static;
    top: auto;
    right: auto;
    transform: translateY(0)
  }

  .desc .c2 {
    display: block;
    margin-top: 15vw;
  }

  .desc .c2 > div{
    width: 100%;
  }
  
  .desc .c2 > div + div{
    margin-top: 15vw;
  }
  
  .desc .yt{
    width: 100%;
    margin: 0 auto 10vw;
    box-sizing: border-box;
  }

  .ts{
    padding: 10vw 5vw 15vw;
  }

  .ts h2{
    width: 75%;
    height: 15vw;
    font-size: 7vw;
    line-height: 14vw;
    margin: 0 auto 8vw;
  }

  .ts .ts_list{
    display: block;
  }

  .ts .ts_list + .ts_list{
    margin-top: 8vw;
    padding-top: 8vw;
    border-top: 1px solid #9d9d9e;
  }

  .ts .ts_list > div{
    width: 100%;
    text-align: center;
    box-sizing: content-box;
  }

  .ts .ts_list > div + div{
    margin-left: 0;
    padding-left: 0;
    padding-top: 8vw;
    margin-top: 8vw;
    border-left: none;
    border-top: 1px solid #9d9d9e;
  }

  .ts .ts_list h3{
    height: 8vw;
    font-size: 4vw;
    line-height: 8vw;
    border-radius: 10vw;
    margin: 5vw 0;
  }

  .ts .ts_list h3.sm{
    font-size: 3.5vw;
  }

  .ts .ts_list h4{
    font-size: 10vw;
    line-height: 1;
    margin-bottom: 2vw;
  }

  .ts .ts_list p.type{
    min-height: inherit;
    font-size: 6.5vw;
    line-height: 1.2;
    margin-bottom: 5vw
  }

  .ts .ts_list p.txt{
    font-size: 4vw;
    line-height: 1.6;
    font-feature-settings: "palt";
    margin-bottom: 5vw;
  }

  .ts .ts_list a{
    width: 80%;
    height: 14vw;
    font-size: 4.5vw;
    line-height: 14vw;
    border-radius: 2vw;
    display: block;
    margin: 0 auto;
  }

  .ts .ts_list a::after{
    border-top: 1vw solid transparent;
    border-bottom: 1vw solid transparent;
    border-left: 2vw solid #000;
    right: 6vw;
  }
  
  .cp{
    padding: 10vw 3vw;
  }

  .tab{
    display: flex;
    justify-content: space-between;
    margin-bottom: 6vw;
  }
  
  
  .dbt .note_list li{
    font-size: 3.5vw;
    list-style: 1.6;
  }

  .dbt .note_list li + li{
    margin-top: 1vw;
  }

  .caution{
    margin-bottom: 10vw;
  }

  .caution h2{
    margin-bottom: 10vw;
  }

  .caution ul + h3{
    margin-top: 10vw;
  }

  
  .dbt .faq{
    margin-bottom: 10vw;
  }

  .dbt  .faq ul +  h3{
    margin-top: 8vw;
  }

  .dbt  .faq h4{
    font-size: 4vw;
    line-height: 1.4;
    font-weight: normal;
    padding: 3vw 4vw 3vw 18vw;
    margin-bottom: 5vw;
    background: #FFF;
    position: relative;
  }

  .dbt  .faq h4::after{
    content: "";
    width: 1px;
    height: 6vw;
    position: absolute;
    top: 3vw;
    left: 14vw;
    transform: translateY(0)
  }

  .dbt  .faq h4::before{
    content: "Q";
    font-size: 6vw;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    top: 3vw;
    left: 5vw;
    transform: translateY(0)
  }

  .dbt  .faq p{
    font-size: 3.5vw;
    line-height: 1.5;
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 1vw;
  }

  .dbt  .faq p span{
    cursor: pointer;
    transition: 0.3s;
  }

  .dbt  .faq p span:hover{
    opacity: 1;
    transition: 0.3s;
  }

  .dbt  .faq p em{
    font-style: normal;
    display: block;
    margin-top: 1em;
  }
  
  .dbt  .faq div{
    width: 100%;
    display: table;
    position: relative;
    padding-left: 18vw;
    box-sizing: border-box;
  }

  .dbt  .faq div::before{
    content: "A";
    font-size: 6vw;
    line-height: 1;
    top: 0;
    left: 5vw;
  }

  .dbt  .faq div::after{
    content: "";
    width: 1px;
    height: 6vw;
    min-height: 30px;
    position: absolute;
    top: 0;
    left: 14vw;
  }

  .dbt  .faq li + li{
    margin-top: 5vw
  }    
  
  .foot_block{
    width: 100%;
    margin: 10vw auto;
    padding: 0 6vw;
    box-sizing: border-box;
  }
  
  .dbt  .contact h3{
    font-size: 3.3vw;
    line-height: 1.6;
    margin-bottom: 4vw;
  }
  
  .contact h2{
    height: auto;
    font-size: 3.8vw;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    padding: 3vw 0;
    margin-bottom: 5vw;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background: none;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow: none;
  }
  
  .dbt  h3.line{
    font-size: 4vw;
    line-height: 1.4;
    color: #00514b;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 5vw;
    padding: 2vw 0;
  }

  .dbt  .contact table{
    width: 100%;
    margin-bottom: 10px;
    border-collapse:  collapse;
  }
  
  .dbt  .contact th,
  .dbt  .contact td{
    font-size: 3vw;
    line-height: 1.3;
    color: #333;
    text-align: center;
    font-weight: bold;
    padding: 2vw 4vw;
    display: block;
    margin-top: -1px;
    background: #FFF;
  }
  
  .dbt  .contact th{
    width: 100%;
    background: #efefef;
  }
  
  .dbt  .contact td ul{
    text-align: left;
    margin-top: 2vw;
  }
  
  .dbt  .contact td ul li{
    font-size: 2.5vw;
    font-weight: normal;
  }
  
  .dbt .logo{
    width: 100%;
    height: auto;
    padding: 0 2vw;
    margin: 0 auto 3vw;
    justify-content: space-between;
  }
  
  .dbt .logo a{
    width: 48%;
    display: block;
    margin-bottom: 8px;
    margin-left: 0;
  }

  .dbt .logo img{
    border: 1px solid #00412e;
    box-sizing: border-box;
  }
  
  .dbt .logo_box{
    width: 100%;
    padding: 0;
    margin-top: 5vw;
    box-sizing: border-box;
  }  
  .dbt .logo_box > p{
    text-align: left;
    font-size: 3vw;
    text-indent: -1em;
    padding-left: 1em;
    margin: 0 4vw;
  }
  
  .dbt .logo_box h3{
    font-size: 3.8vw;
    line-height: 1.4;
    color: #004027;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2vw;
    margin-top: 0;
  }
  
  .dbt .link_box{
    margin-top: 8vw;
    display: block;
  }

  .dbt .link_box li{
    width: 100%;
    height: auto;
  }
  
  .dbt .link_box li + li{
    margin-top: 2vw;
  }

  .dbt .link_box li a{
    font-size: 4vw;
    line-height: 1.5;
    padding: 3vw 0;
    box-sizing: border-box;
    display: block
  }

  .dbt .link_box li a span{
    font-size: 3.5vw;
    display: block;
  }
}



.breadcrumb-wrap.desktop-only.floating {
  z-index: -1;
}