@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  outline: none;
}

/*==========================================================*/
/*	responsive
-----------------------------------------------------------*/
/*  animation
---------------------------------------------------------------*/
.move {
  transform-origin: center top;
  transition: all 0.8s;
  opacity: 0;
  transform: translate(0, 30px) scale(1);
}
.move.moving {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/*	css
-----------------------------------------------------------*/
/*==========================================================*/
html {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
  font: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

strong {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

body,
html {
  width: 100%;
  height: 100%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "Helvetica Neue", Meiryo, メイリオ, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subtext *,
canvas,
.is_dragging *,
.js-draw-text,
.subtitles,
.subtitles span,
.to-scroll,
.menu-li .in,
.menu-li a,
.single-sub-title span,
.work-sub-title span,
.link,
.view-more a,
.work-title a,
.unselectable {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

[class^=icon-],
[class*=" icon-"] {
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-fb:before {
  content: "f";
}

.i-tw:before {
  content: "t";
}

.i-inst:before {
  content: "i";
}

.i {
  font-family: "i";
}

.is_waiting body {
  overflow: hidden !important;
}

body,
a {
  color: #333;
}

article {
  display: block;
}

video,
img,
canvas {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}

/*	input
-----------------------------------------------------------*/
input[type=text],
input[type=email] {
  width: auto;
  height: 5rem;
  border: 1px solid #999999;
  color: #000;
  padding: 0px 1rem;
  -webkit-appearance: none;
  outline: 0;
  border-radius: 0px;
  box-sizing: border-box;
}
@media only screen and (max-width: 380px) {
  input[type=text],
  input[type=email] {
    width: 100%;
    height: 4rem;
    border: 1px solid #999999;
    color: #000;
    padding: 0px 1rem;
    -webkit-appearance: none;
    outline: 0;
    border-radius: 0px;
    box-sizing: border-box;
  }
}

/* ===== select ===== */
label.select_cover {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 380px) {
  label.select_cover {
    width: 100%;
  }
}
label.select_cover:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 5px;
  display: inline-block;
  margin-right: 10px;
  border: 5px solid transparent;
  border-color: black black transparent transparent;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media only screen and (max-width: 380px) {
  label.select_cover:before {
    top: 12px;
  }
}

textarea {
  width: 300px;
  min-height: 200px;
  border: 1px solid #999999;
  color: #000;
  padding: 15px 10px;
}
@media only screen and (max-width: 380px) {
  textarea {
    width: 100%;
    min-height: 200px;
    border: 1px solid #999999;
    color: #000;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 1px;
    -webkit-appearance: none;
    line-height: 1.4;
  }
}

select {
  position: relative;
  z-index: 1;
  border: 1px solid #999999;
  box-sizing: border-box;
  color: #000;
  width: 450px;
  padding: 0 10px;
  border-radius: 1px;
  background-color: white;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
@media only screen and (max-width: 380px) {
  select {
    width: 100%;
    padding: 0 10px;
  }
}

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

/*  img
---------------------------------------------------------------*/
img {
  border: none;
}

/*  cf
---------------------------------------------------------------*/
/* .〇〇:after {
    content: '';
    display: table;
    clear: both;
} */
/*  align
---------------------------------------------------------------*/
.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/*  ul
---------------------------------------------------------------*/
li {
  list-style-type: none;
}

/*  font
---------------------------------------------------------------*/
:root {
  --max-size: 1.66rem;
  --base-size: 1.4rem;
  --slide-tb: 120vw;
  --slide-mb: 150vw;
  --land-mb: 80vw;
}

.font {
  font-size: calc(var(--base-size) * 1.9);
}

.red {
  color: #e60012;
}

.orange {
  color: #003894;
}

.green {
  color: #005ab7;
}

/*==========================================================*/
/*==========================================================*/
/*==========================================================*/
#wrap {
  position: relative;
  z-index: 91;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.inner1100 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.inner1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.innerDX1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1100 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1400 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

@media only screen and (max-width: 768px) {
  .inner,
  .inner1100,
  .inner1200,
  .inner1400 {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .spOnly {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
.default {
  padding: 140px 0;
}
@media only screen and (max-width: 768px) {
  .default {
    padding: 60px 0;
  }
}

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

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9991;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #preloader #progressInner {
    width: 28rem;
  }
}
#preloader #progressInner #progressImgWrap {
  position: relative;
  -webkit-box-flex: 0;
  flex: 0 1 800px;
  overflow: hidden;
}
#preloader #progressInner #progressImgWrap span {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  transform: translate(100%, 0);
}
#preloader #progressInner #progressImgWrap #progressimgBox {
  z-index: 2;
  overflow: hidden;
  transition: all 0.5s ease-out 0.5s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#preloader #progressInner #progressImgWrap #progressimgBox img {
  width: 32rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  #preloader #progressInner #progressImgWrap #progressimgBox img {
    width: 100%;
  }
}

#progressBar {
  width: 0;
  height: 1px;
  background-color: #0080cc;
}

#progressTxt {
  text-align: center;
  margin-top: 5px;
  color: #0080cc;
}

.js-mouse {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  transition: 0.1s;
}
@media only screen and (max-width: 768px) {
  .js-mouse {
    display: none;
  }
}

.cursor-follower {
  position: absolute;
  background-color: rgba(0, 191, 39, 0.06);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.1s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(5px, 5px);
}
.cursor-follower.active {
  opacity: 0.7;
  transform: scale(2);
}
@media only screen and (max-width: 768px) {
  .cursor-follower {
    display: none;
  }
}

#page_top {
  position: fixed;
  bottom: 0rem;
  right: 0rem;
  z-index: 80;
  display: none;
}
#page_top a {
  background: #333;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  width: 6rem;
  height: 6rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  #page_top a {
    width: 5rem;
    height: 5rem;
  }
}
#page_top a::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 1;
}

#breadcrumbs {
  position: absolute;
  top: 72rem;
  right: 4rem;
  z-index: 100;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #555;
}
#breadcrumbs a {
  color: #555;
}
@media only screen and (max-width: 768px) {
  #breadcrumbs {
    display: none;
    top: 215px;
    left: 15px;
    letter-spacing: 0em;
  }
}

.secFixButton {
  position: fixed;
  top: 10rem;
  right: 0;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .secFixButton {
    display: none;
  }
}
.secFixButton a {
  display: block;
  background: #005ab7;
  padding: 3rem 1rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*=========================================================*/
/*	TRANSACTION*/
/*=========================================================*/
.textPageMain {
  margin-top: 10rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .textPageMain {
    margin-top: 5rem;
    padding-bottom: 0px;
  }
}
.textPageMain.privacy {
  margin-bottom: 10rem;
}
.textPageMain ._in {
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .leftTitle {
    width: 100%;
  }
}
.textPageMain ._in .leftTitle .subT {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  padding-left: 17px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .leftTitle .subT {
    font-size: 13px;
    padding-left: 17px;
    margin-bottom: 25px;
  }
}
.textPageMain ._in .leftTitle .subT:before {
  position: absolute;
  display: block;
  left: 0;
  top: 40%;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #8c7859;
}
.textPageMain ._in .leftTitle h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .leftTitle h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain {
    width: 100%;
  }
}
.textPageMain ._in .rightMain ul.flex li {
  border-bottom: 1px solid #ccc;
  padding: 30px 30px;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain ul.flex li {
    padding: 20px 0;
  }
}
.textPageMain ._in .rightMain ul.flex li dl {
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain ul.flex li dl {
    display: block;
  }
}
.textPageMain ._in .rightMain ul.flex li dl dt {
  width: 220px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain ul.flex li dl dt {
    width: 100%;
  }
}
.textPageMain ._in .rightMain ul.flex li dl dd {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.textPageMain ._in .rightMain ul.flex li dl dd .bold {
  display: inline-block;
  margin-top: 10px;
}
.textPageMain ._in .rightMain ul.flex li dl dd table h4 {
  font-weight: bold;
}
.textPageMain ._in .rightMain ul.flex li dl dd table .mt10 {
  display: inline-block;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain ul.flex li dl dd table img {
    width: auto;
  }
}
.textPageMain ._in .rightMain ul.flexiCon li {
  border-bottom: 1px solid #ccc;
  padding: 40px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain ul.flexiCon li {
    padding: 30px 0;
  }
}
.textPageMain ._in .rightMain ul.flexiCon li .icon {
  margin-right: 4%;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain ul.flexiCon li .icon {
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain ul.flexiCon li dl {
    text-align: center;
  }
}
.textPageMain ._in .rightMain ul.flexiCon li dl dt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .textPageMain ._in .rightMain ul.flexiCon li dl dt {
    font-size: 16px;
  }
}

/*=========================================================*/
/*	PRODUCT*/
/*=========================================================*/
/*=========================================================*/
/*	DETAIL 商品詳細*/
/*=========================================================*/
.productDetail {
  width: 1000px;
  margin: 10rem auto 12rem;
}
@media only screen and (max-width: 768px) {
  .productDetail {
    width: 100%;
    margin: 40px auto 50px;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
.productDetail .slideWrap .swiper-container {
  width: 100%;
  height: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .swiper-container {
    height: auto;
  }
}
.productDetail .slideWrap .swiper-slide {
  background-size: cover;
  background-position: center;
  background-color: #aaa;
  text-align: center;
}
.productDetail .slideWrap .swiper-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .swiper-slide img {
    max-width: initial;
    max-height: initial;
    width: 100%;
  }
}
.productDetail .slideWrap .gallery-top .swiper-slide img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .gallery-top .swiper-slide img {
    max-width: initial;
    max-height: initial;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.productDetail .slideWrap .gallery-thumbs .swiper-slide img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .gallery-thumbs .swiper-slide img {
    max-width: initial;
    max-height: initial;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.productDetail .slideWrap .gallery-top {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .gallery-top {
    height: 55vw;
  }
}
.productDetail .slideWrap .gallery-thumbs {
  height: 170px;
  box-sizing: border-box;
  padding: 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .gallery-thumbs {
    height: 25vw;
  }
}
.productDetail .slideWrap .gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  overflow: hidden;
  transition: opacity 0.5s;
}
.productDetail .slideWrap .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.productDetail .slideWrap .swiper-button-next,
.productDetail .slideWrap .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .swiper-button-next,
  .productDetail .slideWrap .swiper-button-prev {
    top: 46%;
  }
}
.productDetail .slideWrap .swiper-button-next:after,
.productDetail .slideWrap .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  color: #040000;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .swiper-button-next:after,
  .productDetail .slideWrap .swiper-button-prev:after {
    font-size: 2rem;
  }
}
.productDetail .slideWrap .swiper-button-next {
  background-image: none !important;
}
.productDetail .slideWrap .swiper-button-next:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  width: 30px;
  height: 30px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .swiper-button-next:before {
    width: 15px;
    height: 15px;
  }
}
.productDetail .slideWrap .swiper-button-next:after {
  content: "next";
  opacity: 0;
}
.productDetail .slideWrap .swiper-button-prev {
  background-image: none !important;
}
.productDetail .slideWrap .swiper-button-prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .productDetail .slideWrap .swiper-button-prev:before {
    width: 15px;
    height: 15px;
  }
}
.productDetail .slideWrap .swiper-button-prev:after {
  content: "prev";
  opacity: 0;
}
.productDetail .productInfomation {
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .productDetail .productInfomation {
    margin: 40px 0;
  }
}
.productDetail .productInfomation .titleWrap {
  margin-bottom: 3rem;
  text-align: left;
}
.productDetail .productInfomation .titleWrap .ttl {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .productDetail .productInfomation .titleWrap .ttl {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.productDetail .productInfomation .titleWrap .price {
  font-size: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .productDetail .productInfomation .titleWrap .price {
    font-size: 2rem;
  }
}
.productDetail .productInfomation .titleWrap .price span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .productDetail .productInfomation .titleWrap .price span {
    font-size: 1.6rem;
  }
}
.productDetail .cartBox {
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  margin-bottom: 5rem;
  padding: 3rem 0;
}
@media only screen and (max-width: 768px) {
  .productDetail .cartBox {
    margin-bottom: 4rem;
    padding: 3rem 0;
  }
}
.productDetail .cartBox .cartjs_box {
  margin: 0px 0 0 0 !important;
  padding: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
}
@media only screen and (max-width: 768px) {
  .productDetail .cartBox .cartjs_box .cartjs_block .tbl_scroll {
    display: none;
  }
  .productDetail .cartBox .cartjs_box .cartjs_buy p {
    margin-bottom: 0;
  }
  .productDetail .cartBox .cartjs_box .cartjs_buy input {
    margin-bottom: 0 !important;
    background: #8c7859 !important;
    border-radius: 3rem !important;
    width: 100% !important;
    padding: 0 3rem;
    height: 5rem !important;
    font-size: 1.3rem !important;
    transition: all 0.3s;
    box-shadow: none !important;
    border: none !important;
    text-shadow: none !important;
  }
}
.productDetail .cartBox form {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .productDetail .cartBox form {
    display: block;
  }
}
.productDetail .cartBox form .cartjs_product_table,
.productDetail .cartBox form .cartjs_block {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 10rem;
  flex-basis: 10rem;
}
@media only screen and (max-width: 768px) {
  .productDetail .cartBox form .cartjs_product_table,
  .productDetail .cartBox form .cartjs_block {
    margin-bottom: 2rem;
    padding: 0 !important;
  }
}
.productDetail .cartBox form .cartjs_product_table table,
.productDetail .cartBox form .cartjs_block table {
  width: auto !important;
  margin: 0 0 0px auto !important;
  text-align: right !important;
}
.productDetail .cartBox form .cartjs_product_table table th,
.productDetail .cartBox form .cartjs_block table th {
  padding-bottom: 0 !important;
  padding-right: 1rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .productDetail .cartBox form .cartjs_product_table table th,
  .productDetail .cartBox form .cartjs_block table th {
    padding-bottom: 0 !important;
    padding-right: 1rem;
    font-size: 1.4rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem !important;
    text-align: center !important;
  }
}
.productDetail .cartBox form .cartjs_product_table table td,
.productDetail .cartBox form .cartjs_block table td {
  text-align: right;
  font-size: 1.4rem;
  padding-bottom: 0 !important;
}
.productDetail .cartBox form .cartjs_product_table table td input,
.productDetail .cartBox form .cartjs_block table td input {
  text-align: right;
}
.productDetail .cartBox form .cartjs_cart_in,
.productDetail .cartBox form .cartjs_buy {
  -webkit-flex-basis: 167px;
  flex-basis: 167px;
  margin-left: 3rem !important;
  height: 6rem !important;
  margin-right: 0 !important;
}
@media only screen and (max-width: 768px) {
  .productDetail .cartBox form .cartjs_cart_in,
  .productDetail .cartBox form .cartjs_buy {
    margin-top: 2rem !important;
    margin-left: auto !important;
    height: auto !important;
  }
}
.productDetail .cartBox form .cartjs_cart_in input,
.productDetail .cartBox form .cartjs_buy input {
  margin-bottom: 0 !important;
  background: #003894 !important;
  border-radius: 3rem !important;
  width: 100% !important;
  padding: 0 8rem !important;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .productDetail .cartBox form .cartjs_cart_in input,
  .productDetail .cartBox form .cartjs_buy input {
    padding: 0 3rem !important;
    border-radius: 6rem !important;
    height: 50px !important;
    font-size: 1.7rem !important;
  }
}
.productDetail .cartBox form .cartjs_cart_in input:hover,
.productDetail .cartBox form .cartjs_buy input:hover {
  opacity: 0.8;
}
.productDetail .cartBox form .cartjs_buy input {
  box-shadow: none !important;
  border: none !important;
  text-shadow: none !important;
  font-size: 1.6rem;
  height: 6rem;
}
.productDetail .cartBox .cartjs_block {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .productDetail .cartBox .cartjs_block {
    display: block;
  }
}
.productDetail .cartBox .cartjs_block .tbl_scroll {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
}
.productDetail .cartBox .cartjs_block .tbl_scroll .cartjs_product_num th {
  background: none !important;
  width: auto !important;
}
.productDetail .cartBox .cartjs_block .tbl_scroll input[type=number] {
  width: 5rem !important;
  height: 4rem;
  border: 1px solid #999999;
  font-size: 1.5rem;
  color: #000;
  padding: 0px 1rem;
  -webkit-appearance: none;
  outline: 0;
  border-radius: 0px;
  box-sizing: border-box;
}

/*=========================================================*/
/*	商品一覧*/
/*=========================================================*/
.productsListWrap {
  margin-top: 10rem;
}
@media only screen and (max-width: 768px) {
  .productsListWrap {
    margin-top: 2rem;
  }
}
.productsListWrap .productListTitle {
  background: url(../img/bg_products.jpg) no-repeat 0 0;
  background-size: cover;
  padding: 80px 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .productsListWrap .productListTitle {
    padding: 40px 0;
  }
}
.productsListWrap .productListTitle .titleIn {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .productsListWrap .productListTitle .titleIn {
    font-size: 18px;
  }
}
.productsListWrap .listWrapX {
  padding: 0px 0 80px 0;
}
@media only screen and (max-width: 768px) {
  .productsListWrap .listWrapX {
    padding: 30px 0 50px 0;
  }
}
.productsListWrap .listWrapX .optionWrap {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .productsListWrap .listWrapX .optionWrap {
    margin-bottom: 40px;
  }
}
.productsListWrap .listWrapX .optionNarabigae {
  margin-top: 0px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .productsListWrap .listWrapX .optionNarabigae {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .productsListWrap .listWrapX .optionNarabigae ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.productsListWrap .listWrapX .optionNarabigae ul li {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .productsListWrap .listWrapX .optionNarabigae ul li {
    margin-bottom: 0px;
    text-align: center;
  }
}
.productsListWrap .listWrapX .optionNarabigae ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.productsListWrap .listWrapX .optionNarabigae ul li a {
  color: #3c7cb6;
}
.productsListWrap .listWrapX .optionNarabigae input[type=submit] {
  background-color: #fff;
  border-width: 0;
  border-radius: 0px;
  color: #3c7cb6;
  cursor: pointer;
  text-align: center;
  padding: 0;
  position: relative;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 768px) {
  .productsListWrap .listWrapX .optionNarabigae input[type=submit] {
    min-width: 5px;
  }
}
.productsListWrap .listWrapX .optionNarabigae input[type=submit].is-current {
  color: #000;
}

.productListInner .mainList {
  width: 100%;
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.productListInner .article {
  -webkit-flex-basis: 23%;
  flex-basis: 23%;
  margin: 0 1% 50px;
}
@media only screen and (max-width: 1023px) {
  .productListInner .article {
    -webkit-flex-basis: 48%;
    flex-basis: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .productListInner .article {
    -webkit-flex-basis: 48%;
    flex-basis: 48%;
  }
}
@media only screen and (max-width: 380px) {
  .productListInner .article {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
.productListInner .article a {
  display: block;
}
.productListInner .article a .thumb {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: 0.4s;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.productListInner .article a .thumb:before {
  content: "";
  display: block;
  padding-top: 62%;
  width: 100%;
}
.productListInner .article a .thumb span {
  background: #e5e5e5 no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}
.productListInner .article a dl {
  text-align: center;
}
.productListInner .article a dl dt {
  font-size: 16px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .productListInner .article a dl dt {
    font-size: 14px;
  }
}
.productListInner .article a dl dd {
  font-size: 15px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .productListInner .article a dl dd {
    font-size: 13px;
  }
}
.productListInner .article a dl dd span {
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .productListInner .article a dl dd span {
    font-size: 11px;
  }
}
.productListInner .article a:hover .thumb span {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.productTop {
  position: relative;
  background: #fff;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .productTop {
    padding: 4rem 0;
  }
}
.productTop .slick-prev,
.productTop .slick-next {
  display: block !important;
}
.productTop.newProduct {
  background: url(../img/bg_products.jpg) no-repeat 0 0;
  background-size: cover;
}
.productTop.popularProduct {
  background: #f6f6f6;
}
.productTop .titleMain {
  text-align: center;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .productTop .titleMain {
    margin-bottom: 4rem;
  }
}
.productTop .titleMain h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.productTop .titleMain .english {
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 1rem;
  color: #000;
  font-family: "Noto Serif JP", serif;
}
.productTop .productSlider li {
  margin: 0 20px;
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider li {
    margin: 0 8px;
  }
}
.productTop .productSlider li a {
  display: block;
  position: relative;
  overflow: hidden;
}
.productTop .productSlider li a .thumb {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  transition: 0.4s;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 180px;
}
.productTop .productSlider li a .thumb:before {
  content: "";
  display: block;
  padding-top: 62%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider li a .thumb:before {
    padding-top: 56%;
  }
}
.productTop .productSlider li a .thumb .imgIn {
  background: #e5e5e5 no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}
.productTop .productSlider li a .detailWork {
  padding: 25px 20px;
  min-height: 120px;
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider li a .detailWork {
    padding: 15px 20px 0;
    min-height: 80px;
  }
}
.productTop .productSlider li a .detailWork dl {
  text-align: center;
  line-height: 1.6;
}
.productTop .productSlider li a .detailWork dl dt {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider li a .detailWork dl dt {
    font-size: 14px;
  }
}
.productTop .productSlider li a .detailWork dl dd {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider li a .detailWork dl dd {
    font-size: 13px;
  }
}
.productTop .productSlider .slick-prev,
.productTop .productSlider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  bottom: auto;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider .slick-prev,
  .productTop .productSlider .slick-next {
    bottom: auto;
  }
}
.productTop .productSlider .slick-prev {
  left: -40px;
  width: 50px;
  height: 50px;
  z-index: 1;
  overflow: hidden;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition: all 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider .slick-prev {
    left: -20px;
    width: 40px;
    height: 40px;
  }
}
.productTop .productSlider .slick-prev:after {
  content: "";
  position: absolute;
  top: 46%;
  left: 42%;
  transform: translate3d(0, 0%, 0);
  width: 12px;
  height: 12px;
  margin-top: -5px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: scaleX(0.8) rotate(225deg);
  -ms-transform: scaleX(0.8) rotate(225deg);
  -o-transform: scaleX(0.8) rotate(225deg);
  transform: scaleX(0.8) rotate(225deg) translate3d(0%, 0%, 0);
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider .slick-prev:after {
    width: 12px;
    height: 12px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.productTop .productSlider .slick-next {
  right: -40px;
  width: 50px;
  height: 50px;
  z-index: 1;
  overflow: hidden;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition: all 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider .slick-next {
    right: -20px;
    width: 40px;
    height: 40px;
  }
}
.productTop .productSlider .slick-next:after {
  content: "";
  position: absolute;
  top: 44%;
  left: 32%;
  transform: translate3d(0, 0%, 0);
  width: 12px;
  height: 12px;
  margin-top: -5px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: scaleX(0.8) rotate(45deg);
  -ms-transform: scaleX(0.8) rotate(45deg);
  -o-transform: scaleX(0.8) rotate(45deg);
  transform: scaleX(0.8) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .productTop .productSlider .slick-next:after {
    width: 12px;
    height: 12px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}

/*	NEWS
---------------------------------------------------------------*/
.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi a {
  display: inline-block;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 35px;
  border: 3px solid #333;
  color: #333;
  font-size: 16px;
  margin: 5px 5px;
  opacity: 1;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .wp-pagenavi a {
    width: 35px;
    height: 35px;
    line-height: 30px;
    border: 3px solid #333;
    font-size: 15px;
  }
}
.wp-pagenavi a.page {
  background: #fff;
}
.wp-pagenavi a.previouspostslink {
  border: none;
}
.wp-pagenavi a.nextpostslink {
  border: none;
}
.wp-pagenavi a:hover {
  opacity: 0.8;
}
.wp-pagenavi span.current {
  display: inline-block;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 35px;
  border: 3px solid #ccc;
  color: #ccc;
  font-size: 16px;
  margin: 0 5px;
}
@media only screen and (max-width: 768px) {
  .wp-pagenavi span.current {
    width: 35px;
    height: 35px;
    line-height: 30px;
    border: 3px solid #ccc;
    font-size: 15px;
  }
}

.news {
  width: 100%;
  position: relative;
}
.news .companyBox {
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .news .companyBox {
    margin-top: 5rem;
  }
}

.news .newsOuter {
  position: relative;
  margin: 0 auto 0px;
}

.newsList {
  margin-top: 0px;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .newsList {
    margin-top: 0px;
    margin-bottom: 6rem;
  }
}

.news .newsOuter .title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter .title {
    margin-bottom: 15px;
  }
}

.news .newsOuter .title .eng02 {
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter .title .eng02 {
    font-size: 2.4rem;
    letter-spacing: 0.14em;
  }
}

.news .newsOuter ul {
  text-align: left;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul {
    margin-bottom: 6rem;
  }
}

.news .newsOuter ul li:first-child {
  border-top: 1px dashed #b4b4b4;
}

.news .newsOuter ul li {
  border-bottom: 1px dashed #b4b4b4;
  padding: 3rem 3rem 3rem;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li {
    padding: 1.5rem 0%;
  }
}
.news .newsOuter ul li a {
  display: block;
}

.news .newsOuter ul li dl dt {
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: 0.06em;
  vertical-align: top;
  display: inline-block;
  padding-right: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dt {
    margin-bottom: 0rem;
  }
}

.news .newsOuter ul li dl dd {
  width: 780px;
  vertical-align: middle;
  font-size: 1.5rem;
  line-height: 3rem;
  letter-spacing: 0.06em;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dd {
    width: 100%;
    font-size: 1.6rem;
  }
}

.news .newsOuter ul li dl dd a {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dd a {
    font-size: 1.5rem;
  }
}

.news .newsOuter ul li dl dd a:hover {
  text-decoration: underline;
}

/*	詳細
---------------------------------------------------------------*/
.nDetail {
  padding-top: 0px;
  padding-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .nDetail {
    padding-top: 0px;
    padding-bottom: 6rem;
  }
}
.nDetail .detailBox a {
  text-decoration: underline;
  color: #005ab7;
}
.nDetail .detailBox a:hover {
  text-decoration: none;
}

.nDetail .newsInnerTop {
  margin: 0px auto 0px !important;
}

.newsDetail h2.mainT {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  text-align: left;
  border-bottom: 2px solid #005ab7;
}
@media only screen and (max-width: 768px) {
  .newsDetail h2.mainT {
    font-size: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
  }
}

.companyBox .inBtn {
  text-align: center;
}
.companyBox .inBtn a {
  background: #fff;
  color: #005ab7;
  border: 1px solid #005ab7;
  font-size: 1.4rem;
  font-family: arial;
  font-weight: bold;
  padding: 1.5rem 5rem;
  border-radius: 4rem;
  display: inline-block;
  transition: all 0.4s;
}
.companyBox .inBtn a:hover {
  opacity: 0.7;
}

.newsDetail .detailBox {
  text-align: left;
  min-height: 150px;
}
.newsDetail .detailBox ul {
  margin-left: 2rem;
}
.newsDetail .detailBox ul li {
  list-style-type: disc;
  margin-top: 1rem;
}
.newsDetail .detailBox ol {
  margin-left: 2rem;
}
.newsDetail .detailBox ol li {
  list-style-type: decimal;
  margin-top: 1rem;
}
.newsDetail .detailBox h2 {
  border-left: 4px solid #005ab7;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-left: 12px;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .newsDetail .detailBox h2 {
    font-size: 2.2rem;
    margin-top: 3rem;
  }
}
.newsDetail .detailBox h3 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #005ab7;
}
@media only screen and (max-width: 768px) {
  .newsDetail .detailBox h3 {
    font-size: 2.2rem;
  }
}

.newsDetail .btnA {
  margin-top: 6rem;
  text-align: center;
}
.newsDetail .btnA a {
  margin: 0 auto;
}

.newsDetail h3#mainTitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.4;
  border-bottom: 2px solid #005ab7;
  background: none;
  color: #333;
  height: auto;
  text-align: left;
  display: block;
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.newsDetail h3#mainTitle:before {
  display: none;
}
@media only screen and (max-width: 768px) {
  .newsDetail h3#mainTitle {
    font-size: 1.8rem;
    margin-top: 0px;
    margin-bottom: 1.5rem;
  }
}

.newsDetail .days {
  text-align: left;
  margin-bottom: 1rem;
  color: #888;
  font-size: 1.5rem;
}

.newsDetail ul {
  margin-left: 2rem;
}

.newsDetail ul li {
  text-align: left;
  list-style-type: disc;
}

.newsDetail .detailBox {
  margin-bottom: 5rem;
}

.newsDetail .detailBox h3 {
  margin: 3rem 0 1rem 0;
}

.newsDetail .detailBox dt,
.newsDetail .detailBox dd,
.newsDetail .detailBox p,
.newsDetail .detailBox li {
  color: #333;
  font-size: 1.5rem;
  line-height: 3.2rem;
  letter-spacing: 0rem;
}

.btn_newsList a {
  margin-top: 1rem;
  display: inline-block;
  background-color: #005ab7;
  vertical-align: top;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 1.5rem 10rem;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media only screen and (max-width: 768px) {
  .btn_newsList a {
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
    font-size: 1.5rem;
  }
}
.btn_newsList a:hover {
  opacity: 0.8;
}

.newsDetail .btn a {
  width: auto;
  display: inline-block;
  padding-right: 100px;
  padding-left: 100px;
}
@media only screen and (max-width: 768px) {
  .newsDetail .btn a {
    padding-right: 0px;
    padding-left: 0px;
  }
}

/*=========================================================*/
/*	NEWS*/
/*=========================================================*/
.newsTopWrap {
  background: #fff;
}

.worksDetailWrap {
  position: relative;
  margin-top: 12rem;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .worksDetailWrap {
    margin-top: 5rem;
    margin-bottom: 10rem;
    padding-bottom: 0;
  }
}

.newsOuter .newsMain {
  -webkit-flex: 1;
  flex: 1;
}
.newsOuter .sideBarContents {
  width: 25rem;
  margin-left: 4rem;
}
@media only screen and (max-width: 768px) {
  .newsOuter .sideBarContents {
    width: 100%;
    margin-left: 0px;
    margin-top: 8rem;
  }
}
@media only screen and (max-width: 768px) {
  .newsOuter .sideBarContents .cateListA li a {
    font-size: 1.9rem;
    line-height: 3.2rem;
  }
}
.newsOuter .sideBarContents .side_section_Useful,
.newsOuter .sideBarContents .side_section_Archive {
  margin-bottom: 3rem;
}
.newsOuter .sideBarContents .side_section_Useful li,
.newsOuter .sideBarContents .side_section_Archive li {
  position: relative;
  border-top: none;
  border-bottom: 1px dashed #333;
  margin-bottom: 0px;
  padding: 1rem 2rem 1rem 3rem;
  text-align: left;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .newsOuter .sideBarContents .side_section_Useful li,
  .newsOuter .sideBarContents .side_section_Archive li {
    padding: 1.5rem 2rem 1.5rem 3rem;
    font-size: 1.6rem;
  }
}
.newsOuter .sideBarContents .side_section_Useful li:after,
.newsOuter .sideBarContents .side_section_Archive li:after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 0.5rem solid #696969;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
}
@media only screen and (max-width: 768px) {
  .newsOuter .sideBarContents .side_section_Useful li:after,
  .newsOuter .sideBarContents .side_section_Archive li:after {
    top: 2.5rem;
  }
}
.newsOuter .sideBarContents .side_section_Useful li a,
.newsOuter .sideBarContents .side_section_Archive li a {
  position: relative;
  display: block;
  line-height: 2.6rem;
}
.newsOuter .sideBarContents .side_section_Useful li a.aa,
.newsOuter .sideBarContents .side_section_Archive li a.aa {
  pointer-events: none;
}
.newsOuter .sideBarContents .side_section_Useful li a .days,
.newsOuter .sideBarContents .side_section_Archive li a .days {
  font-size: 1.4rem;
  color: #005ab7;
}
@media only screen and (max-width: 768px) {
  .newsOuter .sideBarContents .side_section_Useful li a .days,
  .newsOuter .sideBarContents .side_section_Archive li a .days {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
.newsOuter .sideBarContents .side_section_Useful li a .sideTitle,
.newsOuter .sideBarContents .side_section_Archive li a .sideTitle {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .newsOuter .sideBarContents .side_section_Useful li a .sideTitle,
  .newsOuter .sideBarContents .side_section_Archive li a .sideTitle {
    font-size: 1.9rem;
    line-height: 3.2rem;
  }
}
.newsOuter .sideBarContents .side_section_Useful li:first-child,
.newsOuter .sideBarContents .side_section_Archive li:first-child {
  border-top: none;
  margin-top: 0px;
}
.newsOuter .sideBarContents .title {
  text-align: center;
  background: #f2f0f4;
  font-weight: bold;
  color: #333;
  margin-bottom: 0rem;
  padding: 0.5rem 0;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .newsOuter .sideBarContents .title {
    padding: 1.5rem 0;
    font-size: 2rem;
  }
}

.newsDetailMain .btnX a {
  margin: 0 auto;
}
.newsDetailMain .detailBox {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox {
    margin-bottom: 4rem;
  }
}
.newsDetailMain dl {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain dl {
    font-size: 13px;
  }
}
.newsDetailMain dl dt {
  display: inline-block;
  margin-right: 15px;
}
.newsDetailMain dl dd {
  display: inline-block;
}
.newsDetailMain .days {
  text-align: left;
  margin-bottom: 0.05rem;
  color: #888;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .days {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    letter-spacing: 0.05rem;
  }
}
.newsDetailMain h1,
.newsDetailMain .h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  letter-spacing: 0.02rem;
  text-align: left;
  border-bottom: 0.02rem solid #222;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain h1,
  .newsDetailMain .h1 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    line-height: 3.4rem;
  }
}
.newsDetailMain .detailBox {
  /*-----------------------------
      ギャラリー
      ------------------------------*/
  /** 自動で挿入される clearfix の余白解除 **/
}
.newsDetailMain .detailBox h2 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3.4rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding: 2rem;
  text-align: left;
  background: #222;
  border-bottom: none;
  color: #fff;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox h2 {
    font-size: 1.9rem;
    line-height: 3.4rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
  }
}
.newsDetailMain .detailBox h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.4rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding: 2rem;
  text-align: left;
  background: #f2f0f4;
  border-bottom: none;
  color: #222;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox h3 {
    font-size: 1.9rem;
    line-height: 3.4rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
  }
}
.newsDetailMain .detailBox h4 {
  border-left: 4px solid #222;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 3.4rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding: 0 0 0 1.4rem;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox h4 {
    font-size: 1.9rem;
    line-height: 3.4rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding: 0 0 0 1rem;
  }
}
.newsDetailMain .detailBox h5 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 3.4rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox h5 {
    font-size: 1.9rem;
    line-height: 3.4rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
.newsDetailMain .detailBox h6 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox h6 {
    font-size: 1.8rem;
    line-height: 3.6rem;
    letter-spacing: 0.04em;
  }
}
.newsDetailMain .detailBox p {
  font-size: 1.7rem;
  line-height: 3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox p {
    font-size: 1.9rem;
    line-height: 3.4rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
}
.newsDetailMain .detailBox ul {
  margin-left: 2rem;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox ul {
    margin-left: 2rem;
  }
}
.newsDetailMain .detailBox ul li {
  list-style-type: disc;
  font-size: 1.7rem;
  line-height: 3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox ul li {
    font-size: 1.9rem;
    line-height: 3.4rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
}
.newsDetailMain .detailBox table {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox table {
    font-size: 1.2rem;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 768px) {
  .newsDetailMain .detailBox iframe {
    width: 100%;
  }
}
.newsDetailMain .detailBox .gallery {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.newsDetailMain .detailBox .gallery {
  /** ギャラリーを囲むボックス **/
  width: 100%;
  margin-bottom: 20px !important;
  overflow: hidden;
}
.newsDetailMain .detailBox .gallery br {
  display: none;
}
.newsDetailMain .detailBox .gallery-item {
  /** 画像共通のスタイル **/
  float: left;
  margin-bottom: 0 !important;
}
.newsDetailMain .detailBox .gallery-icon {
  /** 画像を囲む dt のスタイル **/
  text-align: center;
}
.newsDetailMain .detailBox .gallery-icon img {
  width: 100%;
  height: auto;
  margin-bottom: 10px !important;
}
.newsDetailMain .detailBox .gallery-caption {
  /** キャプション **/
  color: #222;
  font-size: 1.4rem;
  margin: 0 0 1rem;
  text-align: center;
}
.newsDetailMain .detailBox .gallery-columns-1 .gallery-item {
  /** カラムなし **/
  width: 100%;
  margin-right: 0;
}
.newsDetailMain .detailBox .gallery-columns-2 .gallery-item {
  /** 2カラム **/
  width: 48%;
  margin: 0 1%;
}
.newsDetailMain .detailBox .gallery-columns-3 .gallery-item {
  /** 3カラム **/
  width: 31.33333%;
  margin: 0 1%;
}
.newsDetailMain .detailBox .gallery-columns-4 .gallery-item {
  /** 4カラム **/
  width: 23%;
  margin: 0 1%;
}
.newsDetailMain .detailBox .gallery-columns-5 .gallery-item {
  /** 5カラム **/
  width: 18%;
  margin: 0 1%;
}
@media screen and (max-width: 768px) {
  .newsDetailMain .detailBox {
    /* 640px以下用の記述 */
  }
  .newsDetailMain .detailBox .gallery-columns-3 .gallery-item,
  .newsDetailMain .detailBox .gallery-columns-4 .gallery-item {
    width: 48%;
    margin: 0 1%;
  }
  .newsDetailMain .detailBox .gallery-columns-5 .gallery-item {
    width: 31.33333%;
    margin: 0 1%;
  }
}

.newsBodyMain .news_list {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .newsBodyMain .news_list {
    margin-bottom: 2rem;
  }
}
.newsBodyMain ul {
  text-align: left;
}
.newsBodyMain ul li {
  border-bottom: 1px solid #444;
  padding: 3rem 2rem;
}
@media only screen and (max-width: 768px) {
  .newsBodyMain ul li {
    padding: 3rem 0rem;
  }
}
.newsBodyMain ul li:first-child {
  border-top: 1px solid #444;
}
.newsBodyMain ul li dl dt {
  font-size: 1.6rem;
  color: #005ab7;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .newsBodyMain ul li dl dt {
    font-size: 1.8rem;
  }
}
.newsBodyMain ul li dl dt a,
.newsBodyMain ul li dl dt .a {
  min-width: 11rem;
  display: inline-block;
  margin-left: 2rem;
  padding: 0.2rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  background: #005ab7;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .newsBodyMain ul li dl dt a,
  .newsBodyMain ul li dl dt .a {
    margin-left: 1rem;
    font-size: 1.8rem;
  }
}
.newsBodyMain ul li dl dd {
  letter-spacing: 0.06em;
  width: 100%;
  vertical-align: middle;
  line-height: 2.4rem;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .newsBodyMain ul li dl dd {
    width: 100%;
    font-size: 1.9rem;
    line-height: 3.2rem;
    letter-spacing: 0.02em;
  }
}
.newsBodyMain ul li dl dd a,
.newsBodyMain ul li dl dd .a {
  pointer-events: none;
}
.newsBodyMain ul li dl dd a:hover,
.newsBodyMain ul li dl dd .a:hover {
  opacity: 0.8;
}

/*=========================================================*/
/*	CONTACT*/
/*=========================================================*/
.contactTopWrapper {
  border-bottom: 1px solid #ddd;
  margin-bottom: 6rem;
  padding: 12rem 0 8rem;
}
@media only screen and (max-width: 768px) {
  .contactTopWrapper {
    margin-bottom: 4rem;
    padding: 8rem 0 4rem;
  }
}
.contactTopWrapper._not {
  border-bottom: none;
  margin-bottom: 6rem;
  padding: 12rem 0 0rem;
}
@media only screen and (max-width: 768px) {
  .contactTopWrapper._not {
    margin-bottom: 4rem;
    padding: 8rem 0 0rem;
  }
}
.contactTopWrapper .ttl {
  text-align: center;
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .contactTopWrapper .ttl {
    margin-bottom: 3rem;
  }
}
.contactTopWrapper .ttl h2 {
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .contactTopWrapper .ttl h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
}
.contactTopWrapper .ttl .sub {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
}
.contactTopWrapper .telBox {
  background: #000;
  text-align: center;
  color: #fff;
  margin-bottom: 12rem;
  padding: 4rem 4rem;
}
@media only screen and (max-width: 768px) {
  .contactTopWrapper .telBox {
    margin-bottom: 6rem;
  }
}
.contactTopWrapper .telBox .tellIn .sub {
  font-size: 2rem;
  font-weight: 500;
  line-height: 3.2rem;
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  font-style: normal;
}
.contactTopWrapper .telBox .tellIn .telNumber {
  margin-bottom: 2rem;
}
.contactTopWrapper .telBox .tellIn .telNumber a {
  color: #fff;
  display: inline-block;
  font-size: 2.2rem;
  font-family: "Amiri", serif;
}
.contactTopWrapper .telBox .tellIn .telNumber a .numnum {
  display: inline;
  font-size: 4rem;
  padding-left: 0.5rem;
}
.contactTopWrapper .telBox .tellIn .telNumber a .subNum {
  font-size: 1.4rem;
}
.contactTopWrapper .telBox .tellIn .telAddress p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.6rem;
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  font-style: normal;
}
.contactTopWrapper .tellSpace .textCenter {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  font-style: normal;
}

.thanks {
  margin-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .thanks {
    margin-bottom: 10rem;
  }
}

.sec_contact {
  /*	Form
  ---------------------------------------------------------------*/
  /* address Number */
  /* ===== radiobox ===== */
  /* ===== select ===== */
  /* input全体に指定する場合は以下 */
  /* ボタンだけに指定する場合は以下 */
}
@media only screen and (max-width: 768px) {
  .sec_contact .contactInfo {
    width: 100%;
  }
}
.sec_contact .contactInfo .contactSpace {
  padding-right: 0;
  padding-left: 0;
}
.sec_contact.input .contactForm,
.sec_contact .check .contactForm {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto 50px;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm,
  .sec_contact .check .contactForm {
    width: 100%;
    margin-bottom: 7rem;
  }
}
.sec_contact.input .contactForm .formIn,
.sec_contact .check .contactForm .formIn {
  margin-bottom: 0.3rem;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm .formIn,
  .sec_contact .check .contactForm .formIn {
    margin-bottom: 2rem;
  }
}
.sec_contact .contactForm dl::after {
  content: "";
  display: table;
  clear: both;
}
.sec_contact .contactForm dl {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  background: url(../img/line3.gif) repeat-x bottom left;
  background-size: 8px;
}
@media only screen and (max-width: 768px) {
  .sec_contact .contactForm dl {
    margin-bottom: 1.6rem;
    padding-bottom: 3.5rem;
  }
}
.sec_contact .contactForm dl:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.sec_contact.input .contactForm dt {
  float: left;
  font-weight: bold;
  position: relative;
  padding-top: 0.1rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dt {
    float: none;
    width: 100%;
    font-weight: bold;
    position: relative;
    padding-top: 1rem;
    margin-bottom: 2rem;
  }
}
.sec_contact.input .contactForm dt::after {
  content: "";
  display: table;
  clear: both;
}
.sec_contact.input .contactForm dd {
  margin: 0 0 0px 17rem;
  position: relative;
  text-align: left;
}
.sec_contact.input .contactForm dd span.small {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd span.small {
    line-height: 1.5;
    display: inline-block;
  }
  .sec_contact.input .contactForm dd span.small._mailSmall {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd {
    position: relative;
    text-align: left;
    margin: 0 0 0px 0px;
  }
}
.sec_contact.input .contactForm dd.checkBody {
  font-size: 1.2rem;
}
.sec_contact.input .contactForm dd.checkBody .wrap-checkbox {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sec_contact.input .contactForm dd.checkBody .wrap-checkbox .wpcf7-list-item {
  width: 33.3333666667%;
  margin-bottom: 1rem;
}
.sec_contact.input .contactForm dd.checkBody .wrap-checkbox .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd.checkBody .wrap-checkbox .wpcf7-list-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .sec_contact.input .contactForm dd.checkBody .wrap-checkbox .wpcf7-list-item:last-child {
    margin-bottom: 0;
  }
}
.sec_contact.input .contactForm dd .error {
  font-size: 14px;
  color: #F00;
}
.sec_contact.input .contactForm .checkSpecial dt {
  padding-top: 0rem;
}
.sec_contact.input .contactForm .checkSpecial dd br {
  display: none;
}
.sec_contact.input .contactForm dd.select_Wrap label {
  width: 100%;
}
.sec_contact.input .contactForm dd.select_Wrap label br {
  display: none;
}
.sec_contact.input .contactForm dd input[type=text], .sec_contact.input .contactForm dd input[type=email] {
  width: 100%;
  height: 5rem;
  border: 1px solid #999999;
  font-size: 1.3rem;
  color: #000;
  padding: 0px 10px;
  -webkit-appearance: none;
  outline: 0;
  border-radius: 0px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd input[type=text], .sec_contact.input .contactForm dd input[type=email] {
    width: 100%;
    height: 42px;
    border: 1px solid #999999;
    font-size: 1.4rem;
    color: #000;
    padding: 0px 10px;
    -webkit-appearance: none;
    outline: 0;
    border-radius: 0px;
    box-sizing: border-box;
  }
}
.sec_contact.input .contactForm dd input#zip[type=text] {
  width: 25rem;
}
@media only screen and (max-width: 1400px) {
  .sec_contact.input .contactForm dd input#zip[type=text] {
    width: 30rem;
  }
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd input#zip[type=text] {
    width: 15rem;
    margin-bottom: 2rem;
  }
}
.sec_contact.input .contactForm dd select#address01 {
  width: 25rem;
  font-size: 1.3rem;
}
@media only screen and (max-width: 1400px) {
  .sec_contact.input .contactForm dd select#address01 {
    width: 30rem;
  }
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd select#address01 {
    width: 100%;
    font-size: 1.4rem;
  }
}
.sec_contact.input .contactForm dd .flexAddress {
  display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd .flexAddress {
    display: block;
  }
}
.sec_contact.input .contactForm dd .flexAddress br {
  display: none;
}
.sec_contact.input .contactForm dd .flexAddress .select_cover {
  margin-left: auto;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd .flexAddress .select_cover {
    display: block;
  }
}
.sec_contact.input .contactForm dd .flexAddress .address01 {
  margin-left: auto;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd .flexAddress .address01 {
    display: block;
  }
}
.sec_contact.input .contactForm dd input:focus, .sec_contact.input .contactForm dd textarea:focus {
  outline: 0;
  box-shadow: 0px 0px 4px 1px #3da4de;
  -moz-box-shadow: 0px 0px 4px 1px #3da4de;
  -webkit-box-shadow: 0px 0px 4px 1px #3da4de;
}
.sec_contact.input .contactForm dd textarea {
  width: 100%;
  border: 1px solid #999999;
  font-size: 1.3rem;
  color: #000;
  padding: 15px 10px;
}
@media only screen and (max-width: 768px) {
  .sec_contact.input .contactForm dd textarea {
    width: 100% !important;
    min-height: 200px !important;
    border: 1px solid #999999;
    font-size: 1.4rem;
    color: #000;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 1px;
    -webkit-appearance: none;
    line-height: 1.4;
  }
}
.sec_contact input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  display: none;
}
.sec_contact .doui {
  text-align: center;
  margin: 0.2rem 0 0.3rem;
}
@media only screen and (max-width: 768px) {
  .sec_contact .doui {
    margin: 1rem 2rem;
  }
}
.sec_contact .doui label {
  /* チェックボックス01 */
}
.sec_contact .doui label input[type=checkbox] {
  display: none;
}
.sec_contact .doui label span {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.sec_contact .doui label span::before {
  background: #fff;
  border: 1px solid #999999;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.sec_contact .doui label span::after {
  border-right: 3px solid #ff0000;
  border-bottom: 3px solid #ff0000;
  content: "";
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.sec_contact .doui label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.sec_contact .mwform-radio-field label span {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 4px 12px 4px 24px !important;
  border-radius: 8px;
  vertical-align: middle;
  cursor: pointer;
  width: 94%;
  line-height: 1.4;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: left;
}
.sec_contact .mwform-radio-field label:hover:after {
  border-color: #0c2b58;
}
.sec_contact .mwform-radio-field label span:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 0px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 1px solid #0c2b58;
  border-radius: 50%;
  content: "";
}
.sec_contact .mwform-radio-field label span:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  margin-top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0c2b58;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sec_contact input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
.sec_contact input[type=radio]:checked + .mwform-radio-field-text:before,
.sec_contact input[type=radio]:checked + .radiobox_sp:before {
  opacity: 1;
}
.sec_contact label.select_cover {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .sec_contact label.select_cover {
    width: 100%;
  }
}
.sec_contact .contactForm select {
  position: relative;
  z-index: 1;
  width: 20rem;
  height: 5rem;
  border: 1px solid #999999;
  box-sizing: border-box;
  color: #808080;
  border-radius: 1px;
  background-color: white;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
@media only screen and (max-width: 768px) {
  .sec_contact .contactForm select {
    width: 100%;
    height: 42px;
    padding: 0 10px;
    font-size: 1.4rem;
  }
}
.sec_contact select::-ms-expand {
  display: none;
}
.sec_contact label.select_cover:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 5px;
  display: inline-block;
  margin-right: 10px;
  border: 5px solid transparent;
  border-color: #808080 #808080 transparent transparent;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media only screen and (max-width: 768px) {
  .sec_contact label.select_cover:before {
    top: 12px;
  }
}
.sec_contact input[type=submit],
.sec_contact .submit_area input[type=button] {
  background-color: #333;
  border-width: 0;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  padding: 15px 80px;
  position: relative;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 768px) {
  .sec_contact input[type=submit],
  .sec_contact .submit_area input[type=button] {
    min-width: 240px;
    padding: 15px 30px;
  }
}
.sec_contact input[type=submit]:hover {
  opacity: 0.7;
}
.sec_contact input {
  -webkit-appearance: none;
}
.sec_contact input[type=button] {
  -webkit-appearance: none;
}
.sec_contact .wpcf7-not-valid-tip {
  font-size: 1rem;
  color: #ff0000;
}
@media only screen and (max-width: 768px) {
  .sec_contact .wpcf7-not-valid-tip {
    font-size: 1rem;
  }
}

.screen-reader-response {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.inv-recaptcha-holder {
  margin-bottom: 0;
}
.inv-recaptcha-holder .grecaptcha-badge {
  margin: 20px auto;
}

.checkBody label,
.searchandfilter label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0.1rem;
  padding: 0px 30px;
  position: relative;
  width: auto;
  /* チェックボックス01 */
}
@media only screen and (max-width: 768px) {
  .checkBody label,
  .searchandfilter label {
    margin-bottom: 0.6rem;
  }
}
.checkBody label input[type=checkbox],
.searchandfilter label input[type=checkbox] {
  display: none;
}
.checkBody label::before,
.searchandfilter label::before {
  background: #fff;
  border: 1px solid #999999;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.checkBody label::after,
.searchandfilter label::after {
  border-right: 3px solid #005ab7;
  border-bottom: 3px solid #005ab7;
  content: "";
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.checkBody label input[type=checkbox]:checked + span::after,
.searchandfilter label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.checkBody label.selected:after,
.searchandfilter label.selected:after {
  opacity: 1;
}
.checkBody.searchandfilter label,
.searchandfilter.searchandfilter label {
  padding: 0px 20px 0 30px;
}

.privacyContact {
  margin-top: 6rem;
}
@media only screen and (max-width: 768px) {
  .privacyContact {
    margin-top: 4rem;
  }
}
.privacyContact h6 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .privacyContact h6 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.privacyContact .scrollK {
  overflow: auto;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  height: 250px;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 4rem;
  padding: 2.4rem;
  background-color: #ffffff;
  border: 1px #c0c0c0 solid;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .privacyContact .scrollK {
    width: 100%;
    padding: 20px 20px;
  }
}

.special {
  margin-bottom: 8rem;
}

/*=========================================================*/
/*	ダイエット*/
/*=========================================================*/
.bustupTopWrap {
  background: #fffcf8;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .bustupTopWrap {
    padding: 5rem 0 6rem;
  }
}

.dietSecondWrap {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap {
    padding: 5rem 0 0rem;
  }
}
.dietSecondWrap ._in {
  position: relative;
}
.dietSecondWrap ._in .textFont {
  position: absolute;
  top: 9rem;
  right: 8rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .textFont {
    position: relative;
    top: 0;
    right: 0vw;
    margin-bottom: 5rem;
    margin-left: 6.25%;
  }
}
.dietSecondWrap ._in .textFont .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.dietSecondWrap ._in .textFont .ttl01 h2 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.dietSecondWrap ._in .flexWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  padding: 6rem 5% 5rem 15%;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .flexWrap {
    padding: 0rem 0 6rem;
  }
}
.dietSecondWrap ._in .flexWrap::before {
  content: "";
  background: #333;
  width: calc(100% - 20rem);
  height: 35rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .flexWrap::before {
    width: calc(100% - 0rem);
    bottom: 0rem;
    height: 75rem;
  }
}
.dietSecondWrap ._in .flexWrap .textBox {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .flexWrap .textBox {
    position: relative;
    z-index: 1;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    margin: 0px auto 4rem;
  }
}
.dietSecondWrap ._in .flexWrap .textBox .inin {
  background: #fff;
  color: #222;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 10rem 5vw 8rem 6vw;
  box-sizing: border-box;
  width: calc(100% + 10vw);
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .flexWrap .textBox .inin {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    width: calc(100% + 0vw);
  }
}
.dietSecondWrap ._in .flexWrap .textBox .inin ul li:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}
.dietSecondWrap ._in .flexWrap .textBox .inin ul li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 3rem;
}
.dietSecondWrap ._in .flexWrap .textBox .inin ul li dl dt {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  padding-right: 1rem;
}
.dietSecondWrap ._in .flexWrap .textBox .inin ul li dl dd {
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #222;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .flexWrap .textBox .inin ul li dl dd {
    font-size: 2.3rem;
  }
}
.dietSecondWrap ._in .flexWrap .imgBox {
  margin: 25rem -68px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53vw;
  flex: 0 0 53vw;
  -ms-flex: 0 0 calc(50% + 68px);
  flex: 0 0 calc(50% + 68px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  transform: translate(-5rem, 0px);
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .flexWrap .imgBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 5px 0 0px;
    width: 90%;
    -ms-flex: inherit;
    flex: inherit;
    transform: translate(0rem, 0px);
  }
}
.dietSecondWrap ._in .flexWrap .imgBox .imgimg {
  width: 100%;
  height: auto;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin {
  background: #fff;
  color: #222;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 10rem 5vw 8rem 6vw;
  box-sizing: border-box;
  width: calc(100% + 10vw);
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .flexWrap .imgBox .inin {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    width: calc(100% + 0vw);
  }
}
.dietSecondWrap ._in .flexWrap .imgBox .inin dl {
  margin-bottom: 3rem;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin dl dt {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 0.5rem;
  color: #005ab7;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin dl dd {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #111;
  line-height: 4rem;
  font-style: normal;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin .sub {
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 2.6rem;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin p {
  color: #005ab7;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin ul li:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin ul li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 3rem;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin ul li dl dt {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  padding-right: 1rem;
}
.dietSecondWrap ._in .flexWrap .imgBox .inin ul li dl dd {
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #222;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap ._in .flexWrap .imgBox .inin ul li dl dd {
    font-size: 2.3rem;
  }
}

.dietSecondWrap02 {
  overflow: hidden;
}
.dietSecondWrap02 ._in {
  position: relative;
}
.dietSecondWrap02 ._in .textFont {
  position: absolute;
  top: 9rem;
  right: 8rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .textFont {
    position: relative;
    top: 0;
    right: 0vw;
    margin-bottom: 5rem;
    margin-left: 6.25%;
  }
}
.dietSecondWrap02 ._in .textFont .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.dietSecondWrap02 ._in .textFont .ttl01 h2 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.dietSecondWrap02 ._in .flexWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 6rem 15% 5rem 5%;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .flexWrap {
    padding: 5rem 0 6rem;
  }
}
.dietSecondWrap02 ._in .flexWrap::before {
  content: "";
  background: #333;
  width: calc(100% - 20rem);
  height: 35rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: none;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .flexWrap::before {
    width: calc(100% - 0rem);
    bottom: 0rem;
    height: 75rem;
  }
}
.dietSecondWrap02 ._in .flexWrap .textBox {
  margin: 15rem -68px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53vw;
  flex: 0 0 53vw;
  -ms-flex: 0 0 calc(50% + 68px);
  flex: 0 0 calc(50% + 68px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .flexWrap .textBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto 4rem;
    width: 87.5%;
    -ms-flex: inherit;
    flex: inherit;
  }
}
.dietSecondWrap02 ._in .flexWrap .textBox .inin {
  background: #fff;
  color: #222;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 10rem 5vw 8rem 6vw;
  box-sizing: border-box;
  width: calc(100% + 10vw);
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .flexWrap .textBox .inin {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    width: calc(100% + 0vw);
  }
}
.dietSecondWrap02 ._in .flexWrap .textBox .inin ul li:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}
.dietSecondWrap02 ._in .flexWrap .textBox .inin ul li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 3rem;
}
.dietSecondWrap02 ._in .flexWrap .textBox .inin ul li dl dt {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  padding-right: 1rem;
}
.dietSecondWrap02 ._in .flexWrap .textBox .inin ul li dl dd {
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #222;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .flexWrap .textBox .inin ul li dl dd {
    font-size: 2.3rem;
  }
}
.dietSecondWrap02 ._in .flexWrap .imgBox {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .flexWrap .imgBox {
    position: relative;
    z-index: 1;
    -ms-flex: 0 0 93.75%;
    flex: 0 0 93.75%;
    margin: 0 0 auto auto;
  }
}
.dietSecondWrap02 ._in .flexWrap .imgBox .imgimg {
  width: 100%;
  height: auto;
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin {
  background: #fff;
  color: #222;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 10rem 5vw 8rem 6vw;
  box-sizing: border-box;
  width: calc(100% + 10vw);
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .flexWrap .imgBox .inin {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    width: calc(100% + 0vw);
  }
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin dl {
  margin-bottom: 3rem;
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin dl dt {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 0.5rem;
  color: #005ab7;
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin dl dd {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #111;
  line-height: 4rem;
  font-style: normal;
  font-feature-settings: "palt";
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin .sub {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 2.6rem;
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin ul li:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin ul li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 3rem;
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin ul li dl dt {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  padding-right: 1rem;
}
.dietSecondWrap02 ._in .flexWrap .imgBox .inin ul li dl dd {
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #222;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap02 ._in .flexWrap .imgBox .inin ul li dl dd {
    font-size: 2.3rem;
  }
}

.dietSecondWrap03 {
  overflow: hidden;
}
.dietSecondWrap03 ._in {
  position: relative;
}
.dietSecondWrap03 ._in .textFont {
  position: absolute;
  top: 9rem;
  right: 8rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .textFont {
    position: relative;
    top: 0;
    right: 0vw;
    margin-bottom: 5rem;
    margin-left: 6.25%;
  }
}
.dietSecondWrap03 ._in .textFont .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.dietSecondWrap03 ._in .textFont .ttl01 h2 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.dietSecondWrap03 ._in .flexWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  padding: 6rem 8% 5rem 10%;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .flexWrap {
    padding: 0rem 0 6rem;
  }
}
.dietSecondWrap03 ._in .flexWrap::before {
  content: "";
  background: #333;
  width: 75rem;
  height: 75%;
  position: absolute;
  /* top: 0; */
  bottom: 12%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .flexWrap::before {
    width: calc(100% - 0rem);
    bottom: 0rem;
    height: 75rem;
  }
}
.dietSecondWrap03 ._in .flexWrap .textBox {
  margin: 15rem -68px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53vw;
  flex: 0 0 53vw;
  -ms-flex: 0 0 calc(50% + 68px);
  flex: 0 0 calc(50% + 68px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .flexWrap .textBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0px 3rem auto;
    width: 93.75%;
    -ms-flex: inherit;
    flex: inherit;
  }
}
.dietSecondWrap03 ._in .flexWrap .textBox .inin {
  background: #fff;
  color: #222;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 10rem 5vw 8rem 6vw;
  box-sizing: border-box;
  width: calc(100% + 10vw);
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .flexWrap .textBox .inin {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    width: calc(100% + 0vw);
  }
}
.dietSecondWrap03 ._in .flexWrap .textBox .inin ul li:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}
.dietSecondWrap03 ._in .flexWrap .textBox .inin ul li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 3rem;
}
.dietSecondWrap03 ._in .flexWrap .textBox .inin ul li dl dt {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  padding-right: 1rem;
}
.dietSecondWrap03 ._in .flexWrap .textBox .inin ul li dl dd {
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #222;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .flexWrap .textBox .inin ul li dl dd {
    font-size: 2.3rem;
  }
}
.dietSecondWrap03 ._in .flexWrap .imgBox {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .flexWrap .imgBox {
    position: relative;
    z-index: 1;
    -ms-flex: 0 0 93.75%;
    flex: 0 0 93.75%;
    margin: 0 0 auto auto;
  }
}
.dietSecondWrap03 ._in .flexWrap .imgBox .imgimg {
  width: 100%;
  height: auto;
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin {
  background: #fff;
  color: #222;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 6rem 3vw 6rem 4vw;
  box-sizing: border-box;
  width: calc(100% + 0vw);
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .flexWrap .imgBox .inin {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    width: calc(100% + 0vw);
  }
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin dl {
  margin-bottom: 3rem;
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin dl dt {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 0.5rem;
  color: #005ab7;
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin dl dd {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #111;
  line-height: 4rem;
  font-style: normal;
  font-feature-settings: "palt";
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin .sub {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 2.6rem;
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin ul li:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin ul li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 3rem;
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin ul li dl dt {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  padding-right: 1rem;
}
.dietSecondWrap03 ._in .flexWrap .imgBox .inin ul li dl dd {
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #222;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .dietSecondWrap03 ._in .flexWrap .imgBox .inin ul li dl dd {
    font-size: 2.3rem;
  }
}

.diet3PointWrap {
  background: #f6f6f6;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap {
    padding: 6rem 0;
  }
}
.diet3PointWrap ._in .c01 {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c01 {
    margin-bottom: 5rem;
  }
}
.diet3PointWrap ._in .c01 .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c01 .flexWrap {
    display: block;
  }
}
.diet3PointWrap ._in .c01 .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 14rem;
  flex-basis: 14rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c01 .flexWrap .imgBox {
    margin-bottom: 3rem;
  }
}
.diet3PointWrap ._in .c01 .flexWrap .imgBox h2 {
  writing-mode: vertical-rl;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  position: relative;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c01 .flexWrap .imgBox h2 {
    writing-mode: initial;
    text-align: center;
  }
}
.diet3PointWrap ._in .c01 .flexWrap .imgBox h2::before, .diet3PointWrap ._in .c01 .flexWrap .imgBox h2::after {
  content: "";
  width: 29px;
  height: 52px;
  background-size: cover;
  position: absolute;
  background-image: url(../img/deco-performance-title.png);
}
.diet3PointWrap ._in .c01 .flexWrap .imgBox h2::before {
  left: 0;
  bottom: 10px;
}
.diet3PointWrap ._in .c01 .flexWrap .imgBox h2::after {
  top: -10px;
  right: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.diet3PointWrap ._in .c01 .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 0 0rem 0 4rem;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c01 .flexWrap .textBox {
    padding: 0 0rem 0 0rem;
  }
}
.diet3PointWrap ._in .c01 .flexWrap .textBox ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c01 .flexWrap .textBox ul {
    display: block;
  }
}
.diet3PointWrap ._in .c01 .flexWrap .textBox ul li {
  width: 31%;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c01 .flexWrap .textBox ul li {
    width: 100%;
  }
  .diet3PointWrap ._in .c01 .flexWrap .textBox ul li:not(:first-child) {
    margin-top: 6rem;
  }
}
.diet3PointWrap ._in .c01 .flexWrap .textBox ul li .imgimg {
  margin-bottom: 3rem;
}
.diet3PointWrap ._in .c01 .flexWrap .textBox ul li dl dt {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.diet3PointWrap ._in .c01 .flexWrap .textBox ul li dl dd {
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 500;
  font-feature-settings: "palt" 1;
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom {
  background: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  padding: 2rem;
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin {
  border: 1px solid #e60012;
  padding: 5rem 4rem;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin {
    padding: 3rem 2rem;
  }
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin h3 {
  font-size: 3.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: source-han-serif-japanese, serif;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap {
    display: block;
  }
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap .imgBox {
  width: 33rem;
  padding: 0 8rem 0 4rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap .imgBox {
    width: 100%;
    padding: 0 4rem;
  }
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap .imgBox img {
  width: 100%;
  height: auto;
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap .textBox {
  padding-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap .textBox {
    padding-top: 3rem;
  }
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap .textBox dl dt {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-family: source-han-serif-japanese, serif;
  color: #e60012;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap .textBox dl dt {
    font-size: 2rem;
    text-align: center;
  }
}
.diet3PointWrap ._in .c02 .aboutTsunaguBottom ._inin .flexWrap .textBox dl dd {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 3.2rem;
}

.dietCourseWrap .c01 {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 {
    padding: 6rem 0;
  }
}
.dietCourseWrap .c01 .ttlA {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 .ttlA .centerT {
    margin-bottom: 3rem;
  }
}
.dietCourseWrap .c01 .ttlA .centerT h2 {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 .ttlA .centerT h2 {
    font-size: 2.8rem;
  }
}
.dietCourseWrap .c01 .ttlA .centerT .sub {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 .ttlA .centerT .sub {
    margin-bottom: 0rem;
  }
}
.dietCourseWrap .c01 .imgFlexWrap .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 .imgFlexWrap .flexWrap {
    display: block;
  }
}
.dietCourseWrap .c01 .imgFlexWrap .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  margin-bottom: 0;
  padding: 0 2rem 2rem 0;
}
.dietCourseWrap .c01 .imgFlexWrap .flexWrap .imgBox::before {
  content: "";
  background: #0080cc;
  width: calc(100% - 0rem);
  height: 100%;
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 .imgFlexWrap .flexWrap .imgBox::before {
    bottom: -2rem;
    right: -2rem;
  }
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 .imgFlexWrap .flexWrap .imgBox {
    margin-bottom: 6rem;
    padding: 0 2rem 2rem 0;
  }
}
.dietCourseWrap .c01 .imgFlexWrap .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 0 5rem 0 0rem;
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 .imgFlexWrap .flexWrap .textBox {
    padding: 0 0rem 0 0rem;
  }
}
.dietCourseWrap .c01 .imgFlexWrap .flexWrap .textBox .inin h3 {
  position: relative;
  text-align: left;
  font-weight: bold;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  display: inline-block;
  margin-bottom: 4rem;
  border-bottom: 1px solid #005ab7;
}
@media only screen and (max-width: 768px) {
  .dietCourseWrap .c01 .imgFlexWrap .flexWrap .textBox .inin h3 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}

.dietFlowWrap ._in {
  position: relative;
}
.dietFlowWrap ._in .bgTextDiet {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16.8rem;
  font-weight: bold;
  font-family: arial;
  line-height: 14rem;
  color: #eee;
}
@media only screen and (max-width: 768px) {
  .dietFlowWrap ._in .bgTextDiet {
    font-size: 6.8rem;
    font-weight: bold;
    line-height: 6rem;
  }
}
.dietFlowWrap ._in .inin {
  position: relative;
  z-index: 1;
}
.dietFlowWrap ._in .inin .ttlA {
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.8rem;
  font-feature-settings: "palt";
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .dietFlowWrap ._in .inin .ttlA {
    margin-bottom: 8rem;
  }
}
.dietFlowWrap ._in .inin ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .dietFlowWrap ._in .inin ul {
    display: block;
  }
}
.dietFlowWrap ._in .inin ul li {
  width: 31%;
}
.dietFlowWrap ._in .inin ul li:nth-child(1) {
  margin-top: 8rem;
}
.dietFlowWrap ._in .inin ul li:nth-child(2) {
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .dietFlowWrap ._in .inin ul li {
    width: 100%;
  }
  .dietFlowWrap ._in .inin ul li:nth-child(1) {
    margin-top: 5rem;
  }
  .dietFlowWrap ._in .inin ul li:nth-child(2) {
    margin-top: 8rem;
  }
  .dietFlowWrap ._in .inin ul li:not(:first-child) {
    margin-top: 8rem;
  }
}
.dietFlowWrap ._in .inin ul li .liBox {
  position: relative;
  background: #dce0e6;
}
.dietFlowWrap ._in .inin ul li .liBox .number {
  position: absolute;
  top: -6rem;
  left: 3rem;
  text-align: center;
}
.dietFlowWrap ._in .inin ul li .liBox .number .t01 {
  font-size: 1.3rem;
  line-height: 2.8rem;
  color: #005ab7;
  letter-spacing: 0.5rem;
  display: block;
}
.dietFlowWrap ._in .inin ul li .liBox .number .t02 {
  font-family: kaneda-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 9rem;
  letter-spacing: 0.3rem;
  line-height: 7rem;
  display: block;
}
.dietFlowWrap ._in .inin ul li .liBox .ininin {
  padding: 5rem 4rem 7rem;
}
@media only screen and (max-width: 768px) {
  .dietFlowWrap ._in .inin ul li .liBox .ininin {
    padding: 4rem 3rem;
  }
}
.dietFlowWrap ._in .inin ul li .liBox .ininin .iconImg {
  width: 15rem;
  margin: 0 auto 3rem;
}
@media only screen and (max-width: 768px) {
  .dietFlowWrap ._in .inin ul li .liBox .ininin .iconImg {
    width: 11rem;
    margin: 0 auto 3rem;
  }
}
.dietFlowWrap ._in .inin ul li .liBox .ininin dl dt {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.05rem;
  line-height: 3.4rem;
  font-style: normal;
  color: #003894;
  font-feature-settings: "palt";
  margin-bottom: 2rem;
}

.dietPointBottomWrap {
  padding-top: 10rem;
}
@media only screen and (max-width: 768px) {
  .dietPointBottomWrap {
    padding-top: 6rem;
  }
}
.dietPointBottomWrap ._in .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .dietPointBottomWrap ._in .flexWrap {
    display: block;
  }
}
.dietPointBottomWrap ._in .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 55%;
  flex-basis: 55%;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .dietPointBottomWrap ._in .flexWrap .imgBox {
    margin-bottom: 3rem;
  }
}
.dietPointBottomWrap ._in .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 0 12rem 0 9rem;
}
@media only screen and (max-width: 768px) {
  .dietPointBottomWrap ._in .flexWrap .textBox {
    display: block;
    padding: 0 6.25% 0rem 6.25%;
  }
}
.dietPointBottomWrap ._in .flexWrap .textBox .inin .ttlB {
  text-align: center;
}
.dietPointBottomWrap ._in .flexWrap .textBox .inin .ttlB .number {
  font-size: 4.8rem;
  font-weight: 400;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 6rem;
}
.dietPointBottomWrap ._in .flexWrap .textBox .inin .ttlB h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.8rem;
  font-feature-settings: "palt";
  margin-bottom: 5rem;
}
.dietPointBottomWrap ._in .flexWrap .textBox .inin .ttlB dl {
  margin-top: 4rem;
}
.dietPointBottomWrap ._in .flexWrap .textBox .inin .ttlB dl dt {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.05rem;
  line-height: 3.4rem;
  font-style: normal;
  font-feature-settings: "palt";
  margin-bottom: 3rem;
}
.dietPointBottomWrap ._in .flexWrap .textBox .inin .ttlB dl dd {
  text-align: left;
}

.faqMainContents {
  padding: 10rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .faqMainContents {
    padding: 6rem 0 0 0;
  }
}
.faqMainContents._last {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .faqMainContents._last {
    margin-bottom: 8rem;
  }
}
.faqMainContents .h3h3A h3 {
  text-align: center;
  position: relative;
  margin-bottom: 4rem;
  color: #005ab7;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: Lato, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
}
@media only screen and (max-width: 768px) {
  .faqMainContents .h3h3A h3 {
    margin-bottom: 2rem;
  }
}
.faqMainContents dl {
  margin-bottom: 3rem;
  padding: 3rem 3rem 3rem 3rem;
  background-color: #f5f3f1;
}
.faqMainContents dl dt {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 1rem 4rem 2rem 7rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .faqMainContents dl dt {
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 0rem 0rem 2rem 4rem;
    position: relative;
  }
}
.faqMainContents dl dt:before {
  font-size: 3rem;
  font-family: arial;
  font-weight: 400;
  text-shadow: none;
  text-align: center;
  width: 6rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0;
  color: #005ab7;
  text-shadow: 0 0 0 #fff;
  content: "Q";
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .faqMainContents dl dt:before {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    padding: 0rem 0 0;
    width: 3.2rem;
    position: absolute;
    left: 0;
    top: 0rem;
    bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .faqMainContents dl dt:before {
    top: 0rem;
  }
}
.faqMainContents dl dd {
  font-size: 1.6rem;
  padding: 0rem 2rem 0rem 7rem;
  position: relative;
  line-height: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .faqMainContents dl dd {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0rem 0rem 0rem 4rem;
    position: relative;
  }
}

/*=========================================================*/
/*	バストアップ*/
/*=========================================================*/
.bustupTopWrap {
  background: #fffcf8;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .bustupTopWrap {
    padding: 5rem 0 6rem;
  }
}
.bustupTopWrap ._in {
  overflow: hidden;
}
.bustupTopWrap ._in .flexWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  padding: 0rem 0 0rem;
}
@media only screen and (max-width: 768px) {
  .bustupTopWrap ._in .flexWrap {
    padding: 0rem 0 0rem;
  }
}
.bustupTopWrap ._in .flexWrap .imgBox {
  margin: 0rem 0px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53vw;
  flex: 0 0 53vw;
  -ms-flex: 0 0 calc(50% + 0px);
  flex: 0 0 calc(50% + 0px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .bustupTopWrap ._in .flexWrap .imgBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 5px 0 0px;
    width: 90%;
    -ms-flex: inherit;
    flex: inherit;
  }
}
.bustupTopWrap ._in .flexWrap .textBox {
  margin: 25rem 0px 0 10%;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
}
@media only screen and (max-width: 768px) {
  .bustupTopWrap ._in .flexWrap .textBox {
    position: relative;
    z-index: 1;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0px -20px 0 20px;
  }
}
.bustupTopWrap ._in .flexWrap .textBox .inin {
  background: #005ab7;
  color: #fff;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 8rem 5vw 8rem 6vw;
  box-sizing: border-box;
  width: calc(100% + 4vw);
}
@media only screen and (max-width: 768px) {
  .bustupTopWrap ._in .flexWrap .textBox .inin {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    width: calc(100% + 0vw);
  }
}
.bustupTopWrap ._in .flexWrap .textBox .inin dl {
  margin-bottom: 4rem;
}
.bustupTopWrap ._in .flexWrap .textBox .inin dl dt {
  position: relative;
  margin-bottom: 2rem;
  font-weight: bold;
  font-style: normal;
  font-size: 3.4rem;
  color: #fff;
  line-height: 4.4rem;
}
@media only screen and (max-width: 768px) {
  .bustupTopWrap ._in .flexWrap .textBox .inin dl dt {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.bustupTopWrap ._in .flexWrap .textBox .inin dl dd {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
}

.bustupmainWrap {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.bustupmainWrap::before {
  content: "";
  background: #f6f6f6;
  width: calc(90vw - 0rem);
  height: 85%;
  position: absolute;
  right: 0;
  top: 10%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap::before {
    height: 96%;
  }
}
.bustupmainWrap ._in .inin .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap ._in .inin .flexWrap {
    display: block;
  }
}
.bustupmainWrap ._in .inin .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 45rem;
  flex-basis: 45rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap ._in .inin .flexWrap .imgBox {
    margin-bottom: 3rem;
  }
}
.bustupmainWrap ._in .inin .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.bustupmainWrap ._in .inin .flexWrap .textBox .ininin .tttA {
  position: relative;
  margin-bottom: 6rem;
  padding-left: 3rem;
}
.bustupmainWrap ._in .inin .flexWrap .textBox .ininin .tttA::before {
  content: "";
  background: #ccc;
  width: 2px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.bustupmainWrap ._in .inin .flexWrap .textBox .ininin .tttA h3 {
  position: relative;
  font-weight: bold;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.bustupmainWrap ._in .inin .flexWrap .textBox .ininin .tttA .sub {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.1rem;
}
.bustupmainWrap ._in .inin .flexWrap .textBox .ininin dl dt {
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap ._in .inin .flexWrap .textBox .ininin dl dt {
    margin-bottom: 3rem;
    display: block;
  }
}
.bustupmainWrap ._in .inin .flexWrap .textBox .ininin dl dd {
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 500;
  text-align: right;
}
.bustupmainWrap ._in .inin .flexWrap._omote .textBox {
  padding: 0 14rem 0 6rem;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap ._in .inin .flexWrap._omote .textBox {
    padding: 0 0 0 0rem;
  }
}
.bustupmainWrap ._in .inin .flexWrap._reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.bustupmainWrap ._in .inin .flexWrap._reverse .textBox {
  padding: 0 6rem 0 20rem;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap ._in .inin .flexWrap._reverse .textBox {
    padding: 0 0 0 0rem;
    display: block;
  }
}
.bustupmainWrap ._in .inin .flexWrap._02 {
  margin-top: 10rem;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap ._in .inin .flexWrap._02 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.bustupmainWrap ._in .inin .flexWrap._04 {
  margin-top: 10rem;
}
@media only screen and (max-width: 768px) {
  .bustupmainWrap ._in .inin .flexWrap._04 {
    margin-top: 5rem;
  }
}

.bustListWrap {
  padding: 10rem 0;
  background: #003894;
}
@media only screen and (max-width: 768px) {
  .bustListWrap {
    padding: 6rem 0;
  }
}
.bustListWrap ._in .ttg {
  position: relative;
  color: #fff;
  margin-bottom: 5rem;
  padding-top: 3rem;
}
@media only screen and (max-width: 768px) {
  .bustListWrap ._in .ttg {
    margin-bottom: 2rem;
  }
}
.bustListWrap ._in .ttg::before {
  content: "";
  background: #fff;
  width: 5rem;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.bustListWrap ._in .ttg h2 {
  font-size: 7.8rem;
  font-weight: 400;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 8rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .bustListWrap ._in .ttg h2 {
    font-size: 4.2rem;
    font-weight: bold;
    line-height: 6rem;
  }
}
.bustListWrap ._in ul {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .bustListWrap ._in ul {
    display: block;
  }
}
.bustListWrap ._in ul li {
  width: 48%;
  border: 1px solid #fff;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  color: #fff;
}
.bustListWrap ._in ul li:nth-child(1), .bustListWrap ._in ul li:nth-child(2), .bustListWrap ._in ul li:nth-child(3), .bustListWrap ._in ul li:nth-child(4) {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .bustListWrap ._in ul li {
    width: 100%;
  }
  .bustListWrap ._in ul li:nth-child(5) {
    margin-bottom: 2rem;
  }
}

.company_block_officeWrap {
  position: relative;
  background: #f3f3f3;
  padding: 15rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap {
    padding: 10rem 0 8rem 0;
  }
}
.company_block_officeWrap .flexWrapA {
  position: relative;
}
.company_block_officeWrap .flexWrapA .imgBox {
  position: absolute;
  top: 0;
  right: 10rem;
  z-index: 1;
  width: 48rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexWrapA .imgBox {
    right: 0rem;
    z-index: 1;
    width: 100%;
  }
}
@media only screen and (min-width: 1401px) {
  .company_block_officeWrap .flexWrapA .imgBox {
    right: 0rem;
    width: 68rem;
  }
}
.company_block_officeWrap .flexWrapA .textBox {
  position: relative;
  background: #fff;
  margin-right: 30rem;
  padding: 18rem 32rem 25rem 20rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexWrapA .textBox {
    margin-right: 4rem;
    padding: 27rem 4rem 10rem 4rem;
  }
}
.company_block_officeWrap .flexWrapA .textBox .inBox .textLeft {
  position: absolute;
  bottom: 14.3vw;
  left: -6.92vw;
  display: block;
  color: #f0f0f0;
  font-size: 5.83vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  z-index: 4;
}
.company_block_officeWrap .flexWrapA .textBox .inBox .textIn p {
  margin-bottom: 3rem;
}
.company_block_officeWrap .flexWrapA .textBox .inBox .textIn dl dt {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.company_block_officeWrap .flexWrapA .textBox .inBox .textIn dl dd {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin-bottom: 3rem;
}
.company_block_officeWrap .flexWrapA .engBottomText {
  position: relative;
  bottom: 0;
  right: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.company_block_officeWrap .flexWrapA .engBottomText .inin {
  position: relative;
  margin-top: -10rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexWrapA .engBottomText .inin {
    margin-top: -5rem;
  }
}
.company_block_officeWrap .flexWrapA .engBottomText .topFont {
  position: absolute;
  top: -5rem;
  left: -7rem;
  width: 16rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexWrapA .engBottomText .topFont {
    top: -3rem;
    left: -4rem;
    width: 8rem;
  }
}
.company_block_officeWrap .flexWrapA .engBottomText dl {
  display: block;
  font-size: 9vw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.company_block_officeWrap .flexWrapA .engBottomText dl dt {
  color: #000;
}
.company_block_officeWrap .flexWrapA .engBottomText dl dd {
  text-stroke: 1px #FFF;
  -webkit-text-stroke: 1px #FFF;
  color: transparent;
}
.company_block_officeWrap .flexXXBottom {
  padding: 10rem 0 12rem 0;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom {
    padding: 0rem 0;
  }
}
.company_block_officeWrap .flexXXBottom .flex {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom .flex {
    display: block;
  }
}
.company_block_officeWrap .flexXXBottom .flex .flexBox {
  position: relative;
  width: 44%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom .flex .flexBox {
    margin-top: 5rem;
  }
}
.company_block_officeWrap .flexXXBottom .flex .flexBox .number {
  position: absolute;
  top: 0;
  font-family: kaneda-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 18rem;
  line-height: 14rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom .flex .flexBox .number {
    font-size: 14rem;
  }
}
.company_block_officeWrap .flexXXBottom .flex .flexBox .inB {
  position: relative;
  z-index: 2;
}
.company_block_officeWrap .flexXXBottom .flex .flexBox .inB .iconImg {
  width: 7rem;
  margin: 0 auto 1rem;
}
.company_block_officeWrap .flexXXBottom .flex .flexBox .inB h4 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom .flex .flexBox .inB h4 {
    margin-bottom: 2rem;
  }
}
.company_block_officeWrap .flexXXBottom .flex .flexBox:not(:first-child) {
  margin-top: 12rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom .flex .flexBox:not(:first-child) {
    margin-top: 5rem;
  }
}
.company_block_officeWrap .flexXXBottom .flex .flexBox:nth-child(3) {
  margin-top: 0rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom .flex .flexBox:nth-child(3) {
    margin-top: 5rem;
  }
}
.company_block_officeWrap .flexXXBottom .flex .flexBox:nth-child(5) {
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom .flex .flexBox:nth-child(5) {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .company_block_officeWrap .flexXXBottom .flex .flexBox {
    width: 100%;
  }
}
.company_block_officeWrap .flexXXBottom .flex:nth-child(odd) .flexBox .number {
  left: 0;
}
.company_block_officeWrap .flexXXBottom .flex:nth-child(even) .flexBox .number {
  right: 0;
}

/*=========================================================*/
/*	SEITAI*/
/*=========================================================*/
.seitaiTopWrap {
  background: #dce0e6;
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .seitaiTopWrap {
    padding: 5rem 0 6rem;
  }
}
.seitaiTopWrap ._in .inin {
  background: #fff;
  border: 3px solid #ddd;
  padding: 6rem 6rem;
}
@media only screen and (max-width: 768px) {
  .seitaiTopWrap ._in .inin {
    padding: 4rem 3rem;
  }
}
.seitaiTopWrap ._in .inin h3 {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .seitaiTopWrap ._in .inin h3 {
    font-size: 2.5rem;
    line-height: 3.4rem;
  }
}
.seitaiTopWrap ._in .inin h3::after {
  content: "";
  background: #005ab7;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.seitaiTopWrap ._in .inin .keywords {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}
@media only screen and (max-width: 768px) {
  .seitaiTopWrap ._in .inin .keywords {
    display: block;
  }
}
.seitaiTopWrap ._in .inin .keywords .item {
  width: 30.35%;
  padding: 10px 3rem 30px;
  border: 4px solid #e1e1e1;
  border-top-color: #000;
  transition: 0.3s ease-in;
}
@media only screen and (max-width: 768px) {
  .seitaiTopWrap ._in .inin .keywords .item {
    width: 100%;
    padding: 10px 3rem 30px;
  }
}
.seitaiTopWrap ._in .inin .keywords .item .box_label {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  font-size: 4rem;
  font-weight: 700;
}
.seitaiTopWrap ._in .inin .keywords .item .box_label span {
  padding: 2px 6px 4px;
  border: 2px solid #000;
  border-width: 2px 1px;
}
.seitaiTopWrap ._in .inin .keywords .item .box_label span:first-child {
  border-left-width: 2px;
}
.seitaiTopWrap ._in .inin .keywords .item .box_label span:last-child {
  border-right-width: 2px;
}
.seitaiTopWrap ._in .inin .keywords .symbol {
  width: 1.6%;
  margin: 0 1.2%;
  transition: 0.3s ease-in;
}
@media only screen and (max-width: 768px) {
  .seitaiTopWrap ._in .inin .keywords .symbol {
    width: 15px;
    margin: 1rem auto;
    transition: 0.3s ease-in;
  }
}
.seitaiTopWrap ._in .inin .equal {
  width: 20px;
  margin: 20px auto;
}
@media only screen and (max-width: 768px) {
  .seitaiTopWrap ._in .inin .equal {
    width: 15px;
    margin: 1rem auto;
  }
}
.seitaiTopWrap ._in .inin .goal.box_label {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  font-size: 6rem;
  color: #005ab7;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .seitaiTopWrap ._in .inin .goal.box_label {
    font-size: 4.4rem;
  }
}
.seitaiTopWrap ._in .inin .goal span {
  position: relative;
  border-color: #005ab7;
  padding: 2px 6px 4px;
  border: 2px solid #005ab7;
  border-width: 2px 1px;
  transition: 0.5s ease-in;
}
.seitaiTopWrap ._in .inin .goal span:first-child {
  border-left-width: 2px;
}
.seitaiTopWrap ._in .inin .goal span:last-child {
  border-right-width: 2px;
}

.seitaiBgImgWrap {
  background: url(../img/seitai_bg01.jpg) no-repeat center/cover;
  padding: 16rem 0;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap {
    padding: 7rem 0 6rem;
  }
}
.seitaiBgImgWrap .c01 {
  padding: 0 10% 0 10%;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap .c01 {
    padding: 0 6.25% 0 6.25%;
  }
}
.seitaiBgImgWrap .c01 h3 strong {
  font-size: 9rem;
  font-weight: 500;
  margin-right: 20px;
  color: #fff;
  -webkit-text-stroke: 1px #FFF;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap .c01 h3 strong {
    font-size: 5rem;
    line-height: 2rem;
    margin-right: 0;
  }
}
.seitaiBgImgWrap .c01 h3 span {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap .c01 h3 span {
    display: block;
  }
}
.seitaiBgImgWrap .c01 h4 {
  display: inline-block;
  background-color: #005ab7;
  margin: 0rem 0 3rem;
  padding: 1rem 3rem;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap .c01 h4 {
    margin: 2rem 0 3rem;
    padding: 1rem 3rem;
    font-size: 3rem;
  }
}
.seitaiBgImgWrap .c01 p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 3.1rem;
  max-width: 60rem;
}

.seitaiBgImgWrap02 {
  width: 85%;
  padding: 7rem 0 10rem;
  margin-top: -10rem;
  margin-left: 15%;
  background-color: #e1e1e1;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap02 {
    width: 100%;
    padding: 6rem 0 6rem;
    margin-top: 0rem;
    margin-left: 0%;
  }
}
.seitaiBgImgWrap02 .c02 .professional {
  background: #fff;
  border: 6px solid #333;
  padding: 6rem 6rem;
  width: 76.47%;
  margin-left: 5.88%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap02 .c02 .professional {
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 87.5%;
  }
}
.seitaiBgImgWrap02 .c02 .professional h4 {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #111;
  line-height: 4rem;
  font-style: normal;
  display: inline-block;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap02 .c02 .professional h4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.seitaiBgImgWrap02 .c02 .professional .keywords {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seitaiBgImgWrap02 .c02 .professional .keywords .box_label {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  font-size: 4.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap02 .c02 .professional .keywords .box_label {
    font-size: 3rem;
  }
}
.seitaiBgImgWrap02 .c02 .professional .keywords .box_label span {
  padding: 2px 1.5rem 4px;
  border: 2px solid #005ab7;
  color: #005ab7;
  border-width: 2px 1px;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap02 .c02 .professional .keywords .box_label span {
    padding: 1rem 1rem;
  }
}
.seitaiBgImgWrap02 .c02 .professional .keywords .box_label span:first-child {
  border-left-width: 2px;
}
.seitaiBgImgWrap02 .c02 .professional .keywords .box_label span:last-child {
  border-right-width: 2px;
}
.seitaiBgImgWrap02 .c02 .professional .keywords .symbol {
  width: 1.6%;
  margin: 0 1.2%;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap02 .c02 .professional .keywords .symbol {
    width: 16px;
  }
}
.seitaiBgImgWrap02 .c02 .listA {
  width: 76.47%;
  margin-top: 6rem;
  margin-left: 5.88%;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap02 .c02 .listA {
    margin: 4rem auto 0;
    width: 87.5%;
  }
}
.seitaiBgImgWrap02 .c02 .listA li {
  background: #fff;
  border-top: 3px solid #005ab7;
  padding: 4rem 4rem;
}
@media only screen and (max-width: 768px) {
  .seitaiBgImgWrap02 .c02 .listA li {
    padding: 4rem 3rem;
  }
}
.seitaiBgImgWrap02 .c02 .listA li:not(:first-child) {
  margin-top: 4rem;
}
.seitaiBgImgWrap02 .c02 .listA li .inin .tth {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.05rem;
  line-height: 3.4rem;
  font-style: normal;
}
.seitaiBgImgWrap02 .c02 .listA li .inin .priceH {
  margin: 1rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.1rem;
  color: #ce3d3c;
}

.seitaiBottomWrap {
  background: #005ab7;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .seitaiBottomWrap {
    padding: 6rem 0;
  }
}
.seitaiBottomWrap ._in {
  color: #fff;
}
.seitaiBottomWrap ._in .c01 h3 strong {
  font-size: 9rem;
  font-weight: 500;
  margin-right: 20px;
  color: #fff;
  -webkit-text-stroke: 1px #FFF;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .seitaiBottomWrap ._in .c01 h3 strong {
    font-size: 5rem;
    line-height: 2rem;
    margin-right: 0;
  }
}
.seitaiBottomWrap ._in .c01 h3 span {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .seitaiBottomWrap ._in .c01 h3 span {
    display: block;
  }
}
.seitaiBottomWrap ._in .c02 .flexWrap {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .seitaiBottomWrap ._in .c02 .flexWrap {
    display: block;
    margin-top: 2rem;
  }
}
.seitaiBottomWrap ._in .c02 .flexWrap .imgBox {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 768px) {
  .seitaiBottomWrap ._in .c02 .flexWrap .imgBox {
    width: 100%;
    margin: auto 0 3rem 0;
  }
}
.seitaiBottomWrap ._in .c02 .flexWrap .textBox {
  padding-right: 5.5rem;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .seitaiBottomWrap ._in .c02 .flexWrap .textBox {
    margin-top: 5rem;
    padding-right: 0rem;
  }
}
.seitaiBottomWrap ._in .c02 .flexWrap .textBox h4 {
  display: inline-block;
  margin: 0rem 0 3rem;
  /* padding: 1rem 3rem; */
  font-size: 5rem;
  line-height: 7.5rem;
  font-weight: bold;
  color: #005ab7;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  .seitaiBottomWrap ._in .c02 .flexWrap .textBox h4 {
    font-size: 3.2rem;
    line-height: 5rem;
  }
}
.seitaiBottomWrap ._in .c02 .flexWrap .textBox h4 span {
  background: linear-gradient(transparent 0%, #fff 0%);
}
.seitaiBottomWrap ._in .c02 .flexWrap .textBox._01 {
  grid-column: 1/2;
  grid-row: 1/2;
  margin: auto;
}
.seitaiBottomWrap ._in .c02 .flexWrap .textBox._03 {
  padding-left: 5.5%;
}
@media only screen and (max-width: 768px) {
  .seitaiBottomWrap ._in .c02 .flexWrap .textBox._03 {
    padding-left: 0%;
  }
}

/*=========================================================*/
/*	PRICE*/
/*=========================================================*/
.priceLessonWrap {
  background: #dce0e6;
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap {
    padding: 5rem 0 6rem;
  }
}
.priceLessonWrap .toptop .ttlAW {
  position: relative;
  margin-left: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .ttlAW {
    margin-bottom: 1.5rem;
  }
}
.priceLessonWrap .toptop .ttlAW:before {
  content: "";
  width: 1rem;
  height: 0.3rem;
  margin-top: -1px;
  background: #005ab7;
  position: absolute;
  left: -2.4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.priceLessonWrap .toptop .ttlAW dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.priceLessonWrap .toptop .ttlBW h2 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 4.2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .ttlBW h2 {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}
.priceLessonWrap .toptop .ttlBW .sub {
  font-size: 1.6rem;
}
.priceLessonWrap .toptop .wBox {
  background: #fff;
  margin-top: 6rem;
  margin-bottom: 6rem;
  padding: 2rem 4rem;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .wBox {
    margin-top: 3rem;
  }
}
.priceLessonWrap .toptop .wBox .flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .wBox .flexWrap {
    display: block;
  }
}
.priceLessonWrap .toptop .wBox .flexWrap .ttlBox {
  position: relative;
  -webkit-flex-basis: 19rem;
  flex-basis: 19rem;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 0rem;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .wBox .flexWrap .ttlBox {
    width: 100%;
    margin: 0 auto;
  }
}
.priceLessonWrap .toptop .wBox .flexWrap .ttx {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  padding: 1rem 0 1rem 4rem;
  border-left: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .wBox .flexWrap .ttx {
    margin-top: 2rem;
    padding: 2rem 0 0rem 0rem;
    border-left: none;
    border-top: 1px solid #ddd;
  }
}
.priceLessonWrap .toptop .flexContents {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .flexContents {
    display: block;
  }
}
.priceLessonWrap .toptop .flexContents .bonbox {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .flexContents .bonbox {
    width: 100%;
  }
  .priceLessonWrap .toptop .flexContents .bonbox:first-child {
    margin-bottom: 4rem;
  }
}
.priceLessonWrap .toptop .flexContents .bonbox .topT {
  background: #444;
  padding: 2rem 3rem 3rem;
  color: #fff;
  text-align: center;
}
.priceLessonWrap .toptop .flexContents .bonbox .topT .ttt {
  display: inline-block;
  font-size: 1.5rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.priceLessonWrap .toptop .flexContents .bonbox .topT h3 {
  font-size: 2.4rem;
  font-weight: bold;
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite {
  background: #fff;
  padding: 4rem 4rem 5rem;
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .sub2 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.6rem;
  margin-bottom: 2rem;
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .cp_price {
  margin-top: 2rem;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-top: 2px solid #485157;
  border-bottom: 2px solid #485157;
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .cp_price dt {
  width: 30%;
  text-align: left;
  line-height: 7rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .cp_price dd {
  width: 70%;
  padding: 1.5rem 0;
  text-align: right;
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .cp_price dd .big {
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
  font-size: 4rem;
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .cp_price dd .big {
    font-size: 3.4rem;
  }
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .cp_price dd .small {
  padding-left: 0.25em;
  display: inline-block;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 300;
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .cp_price .second {
  border-top: 1px solid #ddd;
}
.priceLessonWrap .toptop .flexContents .bonbox .middleTWhite .bottmT {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.4rem;
}
.priceLessonWrap .toptop .middleTextCenter {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .middleTextCenter {
    font-size: 1.8rem;
    margin: 5rem 0;
  }
}
.priceLessonWrap .toptop .middleTextCenter span {
  background: linear-gradient(transparent 60%, #fffd64 60%);
}
.priceLessonWrap .toptop .option_box {
  background: #fff;
  padding: 4rem 4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .option_box {
    padding: 4rem 3rem;
    display: block;
  }
}
.priceLessonWrap .toptop .option_box h4 {
  position: relative;
  -webkit-flex-basis: 32rem;
  flex-basis: 32rem;
  margin-bottom: 0;
  margin-right: 4rem;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .option_box h4 {
    margin-bottom: 3rem;
    margin-right: 0rem;
    padding-bottom: 2rem;
  }
}
.priceLessonWrap .toptop .option_box h4:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #333;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .toptop .option_box h4:after {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
  }
}
.priceLessonWrap .toptop .option_box h4 span {
  display: block;
}
.priceLessonWrap .toptop .option_box .opt_list {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.priceLessonWrap .toptop .option_box .opt_list .opt_list_item {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: url(../img/dotline.png) left center repeat-x;
  -webkit-background-size: 6px auto;
  -o-background-size: 6px auto;
  background-size: 6px auto;
}
.priceLessonWrap .toptop .option_box .opt_list .opt_list_item:not(:first-child) {
  margin-top: 2rem;
}
.priceLessonWrap .toptop .option_box .opt_list .opt_list_item .opt_name {
  padding-right: 1rem;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
  background: #FFF;
}
.priceLessonWrap .toptop .option_box .opt_list .opt_list_item .opt_price {
  padding-left: 1rem;
  text-align: right;
  background: #FFF;
}
.priceLessonWrap .toptop .option_box .opt_list .opt_list_item .opt_price .big {
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
  font-size: 2rem;
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.priceLessonWrap .toptop .option_box .opt_list .opt_list_item .opt_price .small {
  padding-left: 0.25em;
  display: inline-block;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 300;
}
.priceLessonWrap .lineBoxBottom {
  background: #fff;
  margin: 8rem auto 0;
  padding: 0rem 5rem;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .lineBoxBottom {
    width: 100%;
    margin: 4rem auto 0;
    padding: 3rem 3rem;
  }
}
.priceLessonWrap .lineBoxBottom .inBox_bottom .flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .lineBoxBottom .inBox_bottom .flexWrap {
    display: block;
  }
}
.priceLessonWrap .lineBoxBottom .inBox_bottom .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 4rem 0;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .lineBoxBottom .inBox_bottom .flexWrap .textBox {
    padding: 2rem 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .lineBoxBottom .inBox_bottom .flexWrap .textBox dl dt {
    text-align: center;
  }
}
.priceLessonWrap .lineBoxBottom .inBox_bottom .flexWrap .textBox dl dt span {
  background: #fffd64;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
  display: inline-block;
}
.priceLessonWrap .lineBoxBottom .inBox_bottom .flexWrap .iconImg {
  -webkit-flex-basis: 24rem;
  flex-basis: 24rem;
  margin-bottom: 0;
  margin-left: 4rem;
}
@media only screen and (max-width: 768px) {
  .priceLessonWrap .lineBoxBottom .inBox_bottom .flexWrap .iconImg {
    width: 18rem;
    margin: 0 auto;
  }
}

.priceRedBlockWrap {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap {
    padding: 6rem 0;
  }
}
.priceRedBlockWrap .ttlA {
  text-align: center;
}
.priceRedBlockWrap .ttlA h2 {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.priceRedBlockWrap .ttlA .sub {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap .ttlA .sub {
    margin-bottom: 0rem;
  }
}
.priceRedBlockWrap ._in {
  position: relative;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap ._in {
    padding: 10rem 0 6rem;
  }
}
.priceRedBlockWrap ._in .inin .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap ._in .inin .flexWrap {
    display: block;
  }
}
.priceRedBlockWrap ._in .inin .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 55%;
  flex-basis: 55%;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap ._in .inin .flexWrap .imgBox {
    margin-bottom: 3rem;
  }
}
.priceRedBlockWrap ._in .inin .flexWrap .textBox {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.priceRedBlockWrap ._in .inin .flexWrap .textBox .ininin dl dt {
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.6rem;
}
.priceRedBlockWrap ._in .inin .flexWrap .textBox .ininin dl dd {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.6rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}
.priceRedBlockWrap ._in .inin .flexWrap .textBox .ininin dl dd::after {
  content: "";
  background: #fff;
  width: 5rem;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.priceRedBlockWrap ._in._red {
  color: #fff;
}
.priceRedBlockWrap ._in._red::before {
  content: "";
  background: #005ab7;
  width: calc(90vw - 0rem);
  height: 100%;
  position: absolute;
  bottom: 0%;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap ._in._red::before {
    width: calc(92vw - 0rem);
    height: 96%;
  }
}
.priceRedBlockWrap ._in._red .inin .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 0 12rem 0 9rem;
}
@media only screen and (min-width: 1401px) {
  .priceRedBlockWrap ._in._red .inin .flexWrap .textBox {
    padding: 0 12rem 0 9rem;
  }
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap ._in._red .inin .flexWrap .textBox {
    display: block;
    padding: 0 6.25% 0rem 15vw;
  }
}
.priceRedBlockWrap ._in._black {
  color: #fff;
}
.priceRedBlockWrap ._in._black::before {
  content: "";
  background: #222;
  width: calc(90vw - 0rem);
  height: 100%;
  position: absolute;
  bottom: 0%;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap ._in._black::before {
    width: calc(92vw - 0rem);
    height: 96%;
  }
}
.priceRedBlockWrap ._in._black .inin .flexWrap {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.priceRedBlockWrap ._in._black .inin .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 0 9rem 0 12rem;
}
@media only screen and (min-width: 1401px) {
  .priceRedBlockWrap ._in._black .inin .flexWrap .textBox {
    padding: 0 9rem 0 12rem;
  }
}
@media only screen and (max-width: 768px) {
  .priceRedBlockWrap ._in._black .inin .flexWrap .textBox {
    display: block;
    padding: 0 15vw 0 6.25%;
  }
}

._BottomFix {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  ._BottomFix {
    margin-bottom: 4rem;
  }
}

/*=========================================================*/
/*	FLOW*/
/*=========================================================*/
.flowTopWrap {
  position: relative;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap {
    padding: 5rem 0 6rem 0;
  }
}
.flowTopWrap ._in {
  position: relative;
  padding-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in {
    padding-bottom: 6rem;
  }
}
.flowTopWrap ._in::before {
  content: "";
  background: #f6f6f6;
  width: calc(90vw - 0rem);
  height: 85%;
  position: absolute;
  bottom: 0%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in::before {
    height: 96%;
  }
}
.flowTopWrap ._in .inin .ininin .movieBoxFlow {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in .inin .ininin .movieBoxFlow {
    margin-bottom: 5rem;
  }
}
.flowTopWrap ._in .inin .ininin .movieBoxFlow video {
  width: 100%;
  height: auto;
}
.flowTopWrap ._in .inin .ininin .inBoxTitle {
  position: relative;
  margin-bottom: 8rem;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in .inin .ininin .inBoxTitle {
    margin-bottom: 6rem;
  }
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .absoluteText {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2.1rem;
  letter-spacing: 0.2rem;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-left: 10rem;
  /* margin-right: 14rem; */
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in .inin .ininin .inBoxTitle .absoluteText {
    margin-right: 5rem;
    margin-left: 3rem;
  }
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .absoluteText span {
  border-right: 1px solid #666;
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .flexWrap {
  display: flex;
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 15rem;
  flex-basis: 15rem;
  margin-bottom: 0;
  padding: 0 5rem 0 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in .inin .ininin .inBoxTitle .flexWrap .imgBox {
    margin-bottom: 3rem;
    padding-right: 0;
    display: none;
  }
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .flexWrap .imgBox .ttt {
  font-size: 1.3rem;
  line-height: 2.8rem;
  color: #005ab7;
  letter-spacing: 0.5rem;
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .flexWrap .imgBox .flowLogo {
  width: 15rem;
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .flexWrap .textBox h3 {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 2rem;
  display: inline-block;
}
.flowTopWrap ._in .inin .ininin .inBoxTitle .flexWrap .textBox h3::after {
  content: "";
  background: #005ab7;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1:not(:first-child) {
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in .inin .ininin .inMainBox .box1:not(:first-child) {
    margin-top: 6rem;
  }
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap {
  position: relative;
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 5rem;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap {
    display: block;
  }
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .title {
  position: absolute;
  left: 0;
  height: 100%;
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 0.8rem;
  background-color: #7A6856;
  width: 1px;
  height: calc(100% - 5rem);
  opacity: 0.4;
  z-index: 1;
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .title em {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.1rem;
  letter-spacing: 0.2rem;
  background: #f6f6f6;
  position: relative;
  z-index: 2;
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .title strong {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  display: block;
  margin-left: -2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .title strong span {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.1rem;
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 35rem;
  flex-basis: 35rem;
  margin-bottom: 0;
  padding: 0 4rem 0 0;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .imgBox {
    margin-bottom: 3rem;
    padding: 0 0rem 0 0;
  }
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .textBox h4 {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .flowTopWrap ._in .inin .ininin .inMainBox .box1 .flexWrap .textBox h4 {
    margin-bottom: 1rem;
  }
}

.flowImgMax {
  max-width: 1600px;
  margin: 0 auto;
}

.flowBottomWrap {
  margin-top: 8rem;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .flowBottomWrap {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.flowBottomWrap .flexWrap {
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .flowBottomWrap .flexWrap {
    display: block;
  }
}
.flowBottomWrap .flexWrap .flexBox {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .flowBottomWrap .flexWrap .flexBox {
    width: 100%;
  }
  .flowBottomWrap .flexWrap .flexBox:not(:first-child) {
    margin-top: 6rem;
  }
}
.flowBottomWrap .flexWrap .flexBox .ttt {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.1rem;
  letter-spacing: 0.2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}
.flowBottomWrap .flexWrap .flexBox .img {
  margin-bottom: 2rem;
}
.flowBottomWrap .flexWrap .flexBox dl dt {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
/*=========================================================*/
/*	ABOUT*/
/*=========================================================*/
.reasonTopWrap {
  position: relative;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .reasonTopWrap {
    padding: 5rem 0 8rem 0;
  }
}
.reasonTopWrap .bgBluelight02Logo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36rem;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .reasonTopWrap .bgBluelight02Logo {
    width: 10rem;
  }
}
.reasonTopWrap .bgBluelight02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 21rem;
  background: #0080cc;
}
@media only screen and (max-width: 768px) {
  .reasonTopWrap .bgBluelight02 {
    height: 15rem;
  }
}
.reasonTopWrap ._in .flexWrap {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .reasonTopWrap ._in .flexWrap {
    display: block;
  }
}
.reasonTopWrap ._in .flexWrap .imgBox {
  position: relative;
  z-index: 1;
  width: calc(65% - 0px);
}
@media only screen and (max-width: 768px) {
  .reasonTopWrap ._in .flexWrap .imgBox {
    width: calc(100% - 0px);
    height: auto;
    margin-top: 0;
  }
}
.reasonTopWrap ._in .flexWrap .imgBox:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: all 0.9s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
.reasonTopWrap ._in .flexWrap .textBox {
  position: relative;
  width: 40%;
  z-index: 2;
  margin-top: 10rem;
  margin-right: 10rem;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .reasonTopWrap ._in .flexWrap .textBox {
    width: 100%;
    margin: 0rem auto;
  }
}
.reasonTopWrap ._in .flexWrap .textBox .inin {
  margin-left: -18rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 60px 10% 60px 10%;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .reasonTopWrap ._in .flexWrap .textBox .inin {
    margin-left: 0;
    padding: 4rem 3rem 4rem 3rem;
  }
}
.reasonTopWrap ._in .flexWrap .textBox .inin dl {
  margin-bottom: 3rem;
}
.reasonTopWrap ._in .flexWrap .textBox .inin dl dt {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 2rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.reasonTopWrap ._in .flexWrap .textBox .inin dl dd {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.8rem;
}
.reasonTopWrap ._in .flexWrap .textBox .inin h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.8rem;
  font-feature-settings: "palt";
  margin-bottom: 3rem;
}
.reasonTopWrap ._in .flexWrap .textBox .inin ul {
  margin-bottom: 3rem;
}
.reasonTopWrap ._in .flexWrap .textBox .inin ul li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  font-feature-settings: "palt";
}
.reasonTopWrap ._in .flexWrap .textBox .inin ul li:not(:first-child) {
  margin-top: 1.5rem;
}
.reasonTopWrap ._in .flexWrap .textBox .inin .sub {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.6rem;
  color: #005ab7;
}
.reasonTopWrap ._in .flexWrap .textBox .inin .sub::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0%;
  background: #005ab7;
  width: 3rem;
  height: 1px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.reasonMainContentsWrap {
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap {
    padding: 6rem 0;
  }
}
.reasonMainContentsWrap ._in .ttlA {
  position: relative;
}
.reasonMainContentsWrap ._in .ttlA h2 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.8rem;
  font-feature-settings: "palt";
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .ttlA h2 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    margin-bottom: 3rem;
  }
}
.reasonMainContentsWrap ._in .ttlA .bigText {
  position: absolute;
  top: -4rem;
  right: 0;
  width: 35rem;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .ttlA .bigText {
    display: none;
  }
}
.reasonMainContentsWrap ._in .inin .box:not(:first-child) {
  margin-top: 10rem;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box:not(:first-child) {
    margin-top: 6rem;
  }
}
.reasonMainContentsWrap ._in .inin .box .flexWrap {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box .flexWrap {
    display: block;
  }
}
.reasonMainContentsWrap ._in .inin .box .flexWrap::before {
  content: "";
  background: #0080cc;
  width: calc(60% - 0rem);
  height: 85%;
  position: absolute;
  top: 6%;
  z-index: -1;
}
.reasonMainContentsWrap ._in .inin .box .flexWrap .imgBox {
  position: relative;
  z-index: 1;
  width: calc(65% - 0px);
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box .flexWrap .imgBox {
    width: calc(100% - 0px);
    height: auto;
    margin-top: 0;
  }
}
.reasonMainContentsWrap ._in .inin .box .flexWrap .textBox {
  width: 40%;
  z-index: 2;
  padding-top: 10rem;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box .flexWrap .textBox {
    width: 100%;
    padding-top: 3rem;
  }
}
.reasonMainContentsWrap ._in .inin .box .flexWrap .textBox .ininin {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 4rem 10% 4rem 0%;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box .flexWrap .textBox .ininin {
    margin-left: 0;
    padding: 4rem 3rem 4rem 3rem;
  }
}
.reasonMainContentsWrap ._in .inin .box .flexWrap .textBox .ininin .number {
  position: absolute;
  top: 0;
  font-family: kaneda-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 9rem;
  line-height: 13rem;
}
.reasonMainContentsWrap ._in .inin .box .flexWrap .textBox .ininin .inText .sub {
  position: relative;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 2.1rem;
}
.reasonMainContentsWrap ._in .inin .box .flexWrap .textBox .ininin .inText .sub::after {
  content: "";
  display: block;
  margin: 1rem 0 3rem;
  background: #000;
  width: 2rem;
  height: 1px;
}
.reasonMainContentsWrap ._in .inin .box .flexWrap .textBox .ininin .inText h3 {
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.6rem;
  color: #005ab7;
}
.reasonMainContentsWrap ._in .inin .box:nth-child(odd) .flexWrap::before {
  right: 0;
}
.reasonMainContentsWrap ._in .inin .box:nth-child(odd) .textBox {
  padding-right: 10rem;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box:nth-child(odd) .textBox {
    padding-right: 0rem;
  }
}
.reasonMainContentsWrap ._in .inin .box:nth-child(odd) .textBox .ininin {
  margin-left: -14rem;
  padding-left: 5rem;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box:nth-child(odd) .textBox .ininin {
    margin-left: 0rem;
    padding-left: 3rem;
  }
}
.reasonMainContentsWrap ._in .inin .box:nth-child(odd) .textBox .ininin .number {
  right: 0;
}
.reasonMainContentsWrap ._in .inin .box:nth-child(even) .flexWrap {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.reasonMainContentsWrap ._in .inin .box:nth-child(even) .flexWrap::before {
  left: 0;
}
.reasonMainContentsWrap ._in .inin .box:nth-child(even) .textBox {
  margin-left: 10rem;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box:nth-child(even) .textBox {
    margin-left: 0rem;
  }
}
.reasonMainContentsWrap ._in .inin .box:nth-child(even) .textBox .ininin {
  margin-right: -14rem;
  padding-left: 5rem;
}
@media only screen and (max-width: 768px) {
  .reasonMainContentsWrap ._in .inin .box:nth-child(even) .textBox .ininin {
    margin-right: 0rem;
  }
}
.reasonMainContentsWrap ._in .inin .box:nth-child(even) .textBox .ininin .number {
  left: 0;
}

.reasonBottomTopWrap {
  text-align: center;
  background: #f6f6f6;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .reasonBottomTopWrap {
    padding: 8rem 0;
  }
}
.reasonBottomTopWrap .ttlA h2 {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.reasonBottomTopWrap .ttlA .sub {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #005ab7;
}
.reasonBottomTopWrap .textCenter {
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .reasonBottomTopWrap .textCenter {
    margin-top: 3rem;
  }
}

.reasonBottomWrap {
  margin-top: 10rem;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .reasonBottomWrap {
    margin-top: 6rem;
    margin-bottom: 8rem;
  }
}
.reasonBottomWrap ._in .flexWrap {
  display: flex;
  background: #f6f6f6;
}
@media only screen and (max-width: 768px) {
  .reasonBottomWrap ._in .flexWrap {
    display: block;
  }
}
.reasonBottomWrap ._in .flexWrap:nth-child(even) {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 6rem;
}
.reasonBottomWrap ._in .flexWrap .imgBox {
  width: 50%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  transition: 0.4s;
  -ms-flex: 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .reasonBottomWrap ._in .flexWrap .imgBox {
    width: 100%;
  }
}
.reasonBottomWrap ._in .flexWrap .imgBox:before {
  content: "";
  display: block;
  padding-top: 100%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .reasonBottomWrap ._in .flexWrap .imgBox:before {
    padding-top: 80%;
  }
}
.reasonBottomWrap ._in .flexWrap .imgBox .img {
  background: #e5e5e5 no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}
.reasonBottomWrap ._in .flexWrap .imgBox .img._01 {
  background: url(../img/reason_img09.jpg) no-repeat center/cover;
}
.reasonBottomWrap ._in .flexWrap .imgBox .img._02 {
  background: url(../img/reason_img10.jpg) no-repeat center/cover;
}
.reasonBottomWrap ._in .flexWrap .textBox {
  width: 70%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .reasonBottomWrap ._in .flexWrap .textBox {
    width: 100%;
  }
}
.reasonBottomWrap ._in .flexWrap .textBox .inin {
  padding: 8rem 4rem;
}
@media only screen and (max-width: 768px) {
  .reasonBottomWrap ._in .flexWrap .textBox .inin {
    padding: 4rem 3rem;
  }
}
.reasonBottomWrap ._in .flexWrap .textBox .inin .number {
  font-family: kaneda-gothic, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #005ab7;
  font-size: 6rem;
  line-height: 7rem;
}
.reasonBottomWrap ._in .flexWrap .textBox .inin h3 {
  position: relative;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 2rem;
}
.reasonBottomWrap ._in .flexWrap .textBox .inin p {
  font-size: 1.6rem;
  line-height: 2.9rem;
  font-weight: 500;
  font-feature-settings: "palt" 1;
}
.reasonBottomWrap ._in .flexWrap .textBox .inin .btnInner {
  border: 1px solid #005ab7;
  background: #fff;
  margin-top: 3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 500;
  text-align: left;
}

/*=========================================================*/
/*	ABOUT*/
/*=========================================================*/
.aboutTopWrap {
  position: relative;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .aboutTopWrap {
    padding: 5rem 0 8rem 0;
  }
}
.aboutTopWrap .btTitleText {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 16.8rem;
  font-weight: bold;
  font-family: arial;
  line-height: 14rem;
  color: #eee;
}
@media only screen and (max-width: 768px) {
  .aboutTopWrap .btTitleText {
    font-size: 6.8rem;
    font-weight: bold;
    line-height: 6rem;
  }
}
.aboutTopWrap ._in .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .aboutTopWrap ._in .flexWrap {
    display: block;
  }
}
.aboutTopWrap ._in .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 40rem;
  flex-basis: 40rem;
  margin-bottom: 0;
  padding: 0 4rem 0 0;
}
@media only screen and (max-width: 768px) {
  .aboutTopWrap ._in .flexWrap .imgBox {
    margin-bottom: 3rem;
    padding-right: 0;
  }
}
.aboutTopWrap ._in .flexWrap .imgBox .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.aboutTopWrap ._in .flexWrap .imgBox .ttl01 h2 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.aboutTopWrap ._in .flexWrap .imgBox dl {
  margin-bottom: 3rem;
}
.aboutTopWrap ._in .flexWrap .imgBox dl dt {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 3.8rem;
  font-feature-settings: "palt";
}
.aboutTopWrap ._in .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.aboutTopWrap ._in .flexWrap .textBox p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.aboutTopWrap ._in .flexWrap .textBox .namename {
  margin-top: 20px;
  text-align: right;
}
.aboutTopWrap ._in .flexWrap .textBox .namename .daigyou {
  display: inline-block;
  font-size: 15px;
  margin-right: 10px;
}
.aboutTopWrap ._in .flexWrap .textBox .namename .nameImg {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .aboutTopWrap ._in .flexWrap .textBox .namename .nameImg {
    width: 50%;
  }
}

.aboutSecondWrap {
  overflow: hidden;
}
.aboutSecondWrap ._in {
  position: relative;
}
.aboutSecondWrap ._in .textFont {
  position: absolute;
  top: 9rem;
  right: 8rem;
}
@media only screen and (max-width: 768px) {
  .aboutSecondWrap ._in .textFont {
    position: relative;
    top: 0;
    right: 0vw;
    margin-bottom: 5rem;
    margin-left: 6.25%;
  }
}
.aboutSecondWrap ._in .textFont .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.aboutSecondWrap ._in .textFont .ttl01 h2 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.aboutSecondWrap ._in .flexWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  padding: 6rem 0 5rem;
}
@media only screen and (max-width: 768px) {
  .aboutSecondWrap ._in .flexWrap {
    padding: 5rem 0 6rem;
  }
}
.aboutSecondWrap ._in .flexWrap::before {
  content: "";
  background: #333;
  width: calc(100% - 20rem);
  height: 35rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .aboutSecondWrap ._in .flexWrap::before {
    width: calc(100% - 0rem);
    bottom: 0rem;
    height: 75rem;
  }
}
.aboutSecondWrap ._in .flexWrap .textBox {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
@media only screen and (max-width: 768px) {
  .aboutSecondWrap ._in .flexWrap .textBox {
    position: relative;
    z-index: 1;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: -45px -20px 0 20px;
  }
}
.aboutSecondWrap ._in .flexWrap .textBox .inin {
  background: #fff;
  color: #222;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  padding: 10rem 5vw 8rem 6vw;
  box-sizing: border-box;
  width: calc(100% + 10vw);
}
@media only screen and (max-width: 768px) {
  .aboutSecondWrap ._in .flexWrap .textBox .inin {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    width: calc(100% + 0vw);
  }
}
.aboutSecondWrap ._in .flexWrap .textBox .inin ul li:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ddd;
}
.aboutSecondWrap ._in .flexWrap .textBox .inin ul li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 3rem;
}
.aboutSecondWrap ._in .flexWrap .textBox .inin ul li dl dt {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  padding-right: 1rem;
}
.aboutSecondWrap ._in .flexWrap .textBox .inin ul li dl dd {
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  color: #222;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .aboutSecondWrap ._in .flexWrap .textBox .inin ul li dl dd {
    font-size: 2.3rem;
  }
}
.aboutSecondWrap ._in .flexWrap .imgBox {
  margin: 25rem -68px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53vw;
  flex: 0 0 53vw;
  -ms-flex: 0 0 calc(50% + 68px);
  flex: 0 0 calc(50% + 68px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .aboutSecondWrap ._in .flexWrap .imgBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 5px 0 0px;
    width: 90%;
    -ms-flex: inherit;
    flex: inherit;
  }
}
.aboutSecondWrap ._in .flexWrap .imgBox .imgimg {
  width: 100%;
  height: auto;
}

.aboutInformationWrap {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap {
    padding: 8rem 0 0;
  }
}
.aboutInformationWrap ._in .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .flexWrap {
    display: block;
  }
}
.aboutInformationWrap ._in .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 40rem;
  flex-basis: 40rem;
  margin-bottom: 0;
  padding: 0 4rem 0 0;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .flexWrap .imgBox {
    margin-bottom: 3rem;
    padding-right: 0;
  }
}
.aboutInformationWrap ._in .flexWrap .imgBox .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #005ab7;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.aboutInformationWrap ._in .flexWrap .imgBox .ttl01 h2 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.aboutInformationWrap ._in .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.aboutInformationWrap ._in .flexWrap .textBox .flexBoxInfo dl {
  position: relative;
  display: flex;
  font-size: 1.6rem;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .flexWrap .textBox .flexBoxInfo dl {
    display: block;
  }
}
.aboutInformationWrap ._in .flexWrap .textBox .flexBoxInfo dl dt {
  border-top: solid 1px #111;
  -webkit-flex-basis: 20rem;
  flex-basis: 20rem;
  margin-right: 2rem;
  margin-bottom: 0;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .flexWrap .textBox .flexBoxInfo dl dt {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    margin-right: 0rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
.aboutInformationWrap ._in .flexWrap .textBox .flexBoxInfo dl dd {
  border-top: solid 1px #f4f4f4;
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .flexWrap .textBox .flexBoxInfo dl dd {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
.aboutInformationWrap ._in .googleMapAbout {
  margin-top: 6rem;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .googleMapAbout {
    margin-top: 3rem;
  }
}
.aboutInformationWrap ._in .googleMapAbout iframe {
  width: 100%;
  height: 38rem;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .googleMapAbout iframe {
    height: 30rem;
  }
}
.aboutInformationWrap ._in .accessImg.i01 {
  margin-bottom: 4rem;
  padding-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .accessImg.i01 {
    margin-bottom: 0rem;
  }
}
.aboutInformationWrap ._in .accessImg dl dt {
  background: #333;
  color: #fff;
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 3rem;
  padding: 1rem 1.5rem;
  letter-spacing: 2px;
}
.aboutInformationWrap ._in .accessImg dl dd {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .accessImg dl dd {
    display: block;
  }
}
.aboutInformationWrap ._in .accessImg dl dd .box {
  width: 21%;
  background: #f5f4f0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .accessImg dl dd .box {
    width: 100%;
    margin-bottom: 6rem;
  }
}
.aboutInformationWrap ._in .accessImg dl dd .box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4rem;
  transform: translateY(-50%);
  border: 1.5rem solid transparent;
  border-left: 1rem solid #003894;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .accessImg dl dd .box::before {
    right: 0rem;
    left: 50%;
    top: auto;
    bottom: -15rem;
    transform: translate(-50%, 0);
    border: 11rem solid transparent;
    /* border-left: none; */
    border-top: 3rem solid #003894;
  }
}
.aboutInformationWrap ._in .accessImg dl dd .box .text {
  background: #f5f4f0;
  text-align: left;
  min-height: 10rem;
  padding: 1.5rem 1rem;
  letter-spacing: 1px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .accessImg dl dd .box .text {
    padding: 2rem 3rem;
  }
}
.aboutInformationWrap ._in .accessImg dl dd .box:last-child::before {
  display: none;
}
@media only screen and (max-width: 768px) {
  .aboutInformationWrap ._in .accessImg dl dd .box:last-child.laston::before {
    display: block;
  }
}

/*=========================================================*/
/*	SEC*/
/*=========================================================*/
@media only screen and (max-width: 768px) {
  .sec {
    margin-top: 12rem;
  }
}

.secMainTitleWrap {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .secMainTitleWrap .innerDX1200 {
    padding: 0 0 0 6.25%;
  }
}
.secMainTitleWrap .secMainTextBox {
  display: inline-block;
  position: relative;
  z-index: 3;
  background: #fff;
  min-width: 40rem;
  padding: 0 5rem 5rem 3rem;
}
@media only screen and (max-width: 768px) {
  .secMainTitleWrap .secMainTextBox {
    width: 90%;
    padding: 0 3rem 3rem 0rem;
  }
}
.secMainTitleWrap .secMainTextBox .kakko {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
  padding: 0.5rem 3rem;
}
.secMainTitleWrap .secMainTextBox .kakko h1 {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
.secMainTitleWrap .secMainTextBox .sub {
  font-size: 4rem;
  letter-spacing: 0.1rem;
  line-height: 4rem;
  font-weight: bold;
  font-style: normal;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .secMainTitleWrap .secMainTextBox .sub {
    font-size: 3.5rem;
    letter-spacing: 0.1rem;
    line-height: 4.2rem;
    margin-bottom: 1rem;
  }
}
.secMainTitleWrap .secMainTextBox p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.04rem;
  color: #005ab7;
  line-height: 3rem;
}
.secMainTitleWrap .secMainImgBox {
  position: relative;
  z-index: 2;
  margin-top: -6rem;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .secMainTitleWrap .secMainImgBox {
    margin-top: -2rem;
    padding-bottom: 4rem;
  }
}
.secMainTitleWrap .bgBluelight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25rem;
  background: #f6f6f6;
}
@media only screen and (max-width: 768px) {
  .secMainTitleWrap .bgBluelight {
    height: 15rem;
  }
}

/*=========================================================*/
/*	TOP*/
/*=========================================================*/
.topSecondWrap {
  padding: 14rem 0 0;
}
@media only screen and (max-width: 768px) {
  .topSecondWrap {
    padding: 6rem 0 0;
  }
}
.topSecondWrap ._in {
  position: relative;
  padding: 14rem 0 10rem;
}
@media only screen and (max-width: 768px) {
  .topSecondWrap ._in {
    padding: 8rem 0 6rem;
  }
}
.topSecondWrap ._in .btTitleText {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16.8rem;
  font-weight: bold;
  font-family: arial;
  line-height: 14rem;
  color: #eee;
}
@media only screen and (max-width: 768px) {
  .topSecondWrap ._in .btTitleText {
    font-size: 6.8rem;
    font-weight: bold;
    line-height: 6rem;
  }
}
.topSecondWrap ._in .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .topSecondWrap ._in .flexWrap {
    display: block;
  }
}
.topSecondWrap ._in .flexWrap .imgBox {
  position: relative;
  -webkit-flex-basis: 55%;
  flex-basis: 55%;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .topSecondWrap ._in .flexWrap .imgBox {
    margin-bottom: 3rem;
  }
}
.topSecondWrap ._in .flexWrap .imgBox .img01 {
  position: absolute;
  top: -10rem;
  right: 0;
  width: 25rem;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .topSecondWrap ._in .flexWrap .imgBox .img01 {
    width: 20rem;
  }
}
.topSecondWrap ._in .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 0 8rem 0 12rem;
}
@media only screen and (min-width: 1401px) {
  .topSecondWrap ._in .flexWrap .textBox {
    padding: 0 12rem 0 20rem;
  }
}
@media only screen and (max-width: 768px) {
  .topSecondWrap ._in .flexWrap .textBox {
    display: block;
    padding: 0 6.25% 12rem;
  }
}
.topSecondWrap ._in .flexWrap .textBox .absoLeft {
  display: inline-block;
  color: #a7a7a7;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: lighter;
  position: absolute;
  top: 0;
  left: 2rem;
  width: 4rem;
}
@media only screen and (max-width: 768px) {
  .topSecondWrap ._in .flexWrap .textBox .absoLeft {
    position: static;
    -webkit-writing-mode: initial;
    -ms-writing-mode: tb-rl;
    writing-mode: initial;
    width: 100%;
    margin-bottom: 2rem;
  }
}
.topSecondWrap ._in .flexWrap .textBox .absoLeft:before {
  background: #a7a7a7;
  content: "";
  display: inline-block;
  height: 8rem;
  width: 1px;
  margin-bottom: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .topSecondWrap ._in .flexWrap .textBox .absoLeft:before {
    height: 1px;
    width: 8rem;
    margin: 0 1.5rem 0 0;
    vertical-align: middle;
  }
}
.topSecondWrap ._in .flexWrap .textBox .inin .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #222;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.topSecondWrap ._in .flexWrap .textBox .inin .ttl01 h2 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.topSecondWrap ._in .flexWrap .textBox .inin dl {
  margin-bottom: 3rem;
}
.topSecondWrap ._in .flexWrap .textBox .inin dl dt {
  font-size: 2.6rem;
  line-height: 3.8rem;
  margin-bottom: 3rem;
}
.topSecondWrap ._in .flexWrap .textBox .inin .btnbtnbt a {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid #888;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  font-family: bold;
  line-height: 2.1rem;
  transition: all 0.4s;
}
.topSecondWrap ._in .flexWrap .textBox .inin .btnbtnbt a:hover {
  background: #333;
  color: #fff;
}

.topThirdWrap {
  position: relative;
}
.topThirdWrap::before {
  content: "";
  background: #f5f5f5;
  width: 50%;
  height: calc(100% + 70rem);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.topThirdWrap ._in .inin01 {
  position: relative;
  padding: 10rem 0 0;
}
.topThirdWrap ._in .inin01::before {
  content: "";
  background: #333;
  width: calc(100% - 20rem);
  height: 65rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .topThirdWrap ._in .inin01::before {
    width: calc(100% - 0rem);
    bottom: 0rem;
    height: 75rem;
  }
}
.topThirdWrap ._in .inin01 ._inin {
  position: relative;
}
.topThirdWrap ._in .inin01 ._inin .img03 {
  position: absolute;
  top: -26rem;
  right: 4rem;
  width: 51rem;
}
@media only screen and (max-width: 768px) {
  .topThirdWrap ._in .inin01 ._inin .img03 {
    top: -26rem;
    right: 0rem;
    width: 34rem;
  }
}
.topThirdWrap ._in .inin01 ._inin .textBox {
  position: relative;
  color: #fff;
}
.topThirdWrap ._in .inin01 ._inin .textBox .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.topThirdWrap ._in .inin01 ._inin .textBox .ttl01 h2 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .topThirdWrap ._in .inin01 ._inin .textBox .ttl01 h2 {
    margin-bottom: 7rem;
  }
}
.topThirdWrap ._in .inin01 ._inin .textBox dl {
  margin-bottom: 3rem;
}
.topThirdWrap ._in .inin01 ._inin .textBox dl dt {
  font-size: 2.6rem;
  line-height: 3.8rem;
  margin-bottom: 3rem;
}
.topThirdWrap ._in .inin02 .flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .topThirdWrap ._in .inin02 .flexWrap {
    display: block;
  }
}
.topThirdWrap ._in .inin02 .flexWrap .flexBox {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .topThirdWrap ._in .inin02 .flexWrap .flexBox {
    width: 100%;
  }
  .topThirdWrap ._in .inin02 .flexWrap .flexBox:not(:first-child) {
    margin-top: 6rem;
  }
}
.topThirdWrap ._in .inin02 .flexWrap .flexBox .imgB {
  margin-bottom: 2rem;
}
.topThirdWrap ._in .inin02 .flexWrap .flexBox .textB dl dt {
  font-size: 1.4rem;
  font-weight: 500;
  font-weight: bold;
  line-height: 2.1rem;
}
@media only screen and (max-width: 768px) {
  .topThirdWrap ._in .inin02 .flexWrap .flexBox .textB dl dt {
    font-size: 1.6rem;
  }
}
.topThirdWrap ._in .inin02 .flexWrap .flexBox .textB dl dd {
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.topYoutubeWrap .in_Wrap {
  position: relative;
  padding: 10rem 0rem 10rem 0rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .in_Wrap {
    padding: 6rem 0% 6rem;
  }
}
.topYoutubeWrap .in_Wrap .absoLeft {
  display: inline-block;
  color: #a7a7a7;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: lighter;
  position: absolute;
  top: 21rem;
  right: -8rem;
  width: 4rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .in_Wrap .absoLeft {
    position: static;
    -webkit-writing-mode: initial;
    -ms-writing-mode: tb-rl;
    writing-mode: initial;
    width: 100%;
  }
}
.topYoutubeWrap .in_Wrap .absoLeft:before {
  background: #a7a7a7;
  content: "";
  display: inline-block;
  height: 8rem;
  width: 1px;
  margin-bottom: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .in_Wrap .absoLeft:before {
    height: 1px;
    width: 8rem;
    margin: 0 1.5rem 0 0;
    vertical-align: middle;
  }
}
.topYoutubeWrap .bgDesign {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .bgDesign {
    width: 90%;
  }
}
.topYoutubeWrap .bgDesign .bgColor {
  width: 100%;
  height: 60rem;
  background: #f7faff;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .bgDesign .bgColor {
    width: 100%;
  }
}
.topYoutubeWrap .bgDesign .bgText {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 20rem;
  letter-spacing: 0.04rem;
  font-family: "Noto Serif JP", serif;
}
@media only screen and (max-width: 1400px) {
  .topYoutubeWrap .bgDesign .bgText {
    font-size: 18rem;
  }
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .bgDesign .bgText {
    font-size: 8rem;
  }
}
.topYoutubeWrap .flexWrap {
  position: relative;
  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;
  padding: 4rem 3rem 7rem 0rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap {
    display: block;
    padding: 4rem 2rem 0;
  }
}
.topYoutubeWrap .flexWrap:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap:after {
    height: auto;
    background: none;
  }
}
.topYoutubeWrap .flexWrap .titleH1 {
  position: absolute;
  top: 2rem;
  left: -2rem;
  z-index: 2;
}
.topYoutubeWrap .flexWrap .titleH1 span {
  display: block;
  font-size: 8rem;
  font-weight: 700;
  color: #0080cc;
  line-height: 8rem;
}
.topYoutubeWrap .flexWrap .titleH1 span:nth-child(1) {
  text-stroke: 1px #0080cc;
  -webkit-text-stroke: 1px #0080cc;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .titleH1 span {
    font-size: 5rem;
    line-height: 5rem;
  }
}
.topYoutubeWrap .flexWrap .textBox {
  position: relative;
  z-index: 1;
  width: 30%;
  margin-top: 10rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .textBox {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 0rem;
  }
}
.topYoutubeWrap .flexWrap .textBox .ttl01 .sub {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05rem;
  color: #ad9d8f;
  line-height: 4rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.topYoutubeWrap .flexWrap .textBox .ttl01 h2 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.topYoutubeWrap .flexWrap .textBox dl {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .textBox dl {
    margin-bottom: 0rem;
  }
}
.topYoutubeWrap .flexWrap .textBox dl dt {
  font-size: 2.2rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}
.topYoutubeWrap .flexWrap .textBox p {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .textBox p {
    margin-bottom: 3rem;
  }
}
.topYoutubeWrap .flexWrap .textBox .btnbtn {
  margin-left: auto;
}
.topYoutubeWrap .flexWrap .textBox .btnbtn a {
  width: 16rem;
  text-align: center;
  display: inline-block;
  border: 1px solid #000;
  padding: 0.8rem 1rem;
  color: #000;
  font-size: 1.3rem;
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .textBox .btnbtn a {
    padding: 1.2rem 1rem;
    font-size: 1.5rem;
  }
}
.topYoutubeWrap .flexWrap .textBox .btnbtn a:hover {
  color: #fff;
  background: #000;
}
.topYoutubeWrap .flexWrap .imgBox {
  z-index: 1;
  width: 65%;
  margin-right: 5%;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .imgBox {
    width: 100%;
  }
}
.topYoutubeWrap .flexWrap .imgBox .slider-nav {
  position: absolute;
  top: 15rem;
  left: -18rem;
  width: 18rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .imgBox .slider-nav {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .imgBox .slider-nav .numb .dddd {
    display: block;
    width: 100%;
  }
}
.topYoutubeWrap .flexWrap .imgBox .slider-nav .numb img {
  width: 18rem;
}
.topYoutubeWrap .flexWrap .imgBox ul {
  position: static;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .imgBox ul {
    display: block;
  }
}
.topYoutubeWrap .flexWrap .imgBox ul li {
  position: relative;
  width: 32%;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .imgBox ul li {
    width: 100%;
  }
}
.topYoutubeWrap .flexWrap .imgBox ul li .test {
  position: absolute;
  top: 0;
  left: 0;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection iframe, .topYoutubeWrap .flexWrap .imgBox ul li .imgSection figure {
  width: 100%;
  height: 42rem;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .flexWrap .imgBox ul li .imgSection iframe, .topYoutubeWrap .flexWrap .imgBox ul li .imgSection figure {
    height: 26rem;
  }
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection iframe video, .topYoutubeWrap .flexWrap .imgBox ul li .imgSection figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a {
  pointer-events: none;
  display: block;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
  margin-bottom: 2rem;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended:before {
  content: "";
  display: block;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .recoImg {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 4s;
  transition: 4s;
  background: url() center no-repeat #e5e5e5;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .frame:before, .topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .frame:after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #005ab7;
  -webkit-transition-property: width, height;
  -o-transition-property: width, height;
  transition-property: width, height;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .frame.primary:before {
  top: 0;
  left: 0;
  width: 0;
  height: 0.5rem;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .frame.primary:after {
  top: 0;
  right: 0;
  width: 0.5rem;
  height: 0;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .frame.secondary:before {
  bottom: 0;
  right: 0;
  width: 0;
  height: 0.5rem;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .frame.secondary:after {
  bottom: 0;
  left: 0;
  width: 0.5rem;
  height: 0;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .icon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  background-color: #005ab7;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a .imgBox_recommended .icon:before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin-top: -0.2em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  vertical-align: inherit;
  margin-top: inherit;
  margin-right: inherit;
  background-image: url(../img/ico_arrow_ini_01.svg);
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a h4 {
  color: #333;
  display: block;
  font-size: 2rem;
  font-family: source-han-serif-japanese, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  line-height: 100%;
  margin-bottom: 2rem;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a:hover .imgBox_recommended .recoImg {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a:hover .imgBox_recommended .frame:before {
  width: 100%;
}
.topYoutubeWrap .flexWrap .imgBox ul li .imgSection a:hover .imgBox_recommended .frame:after {
  height: 100%;
}
.topYoutubeWrap .slideAM .slick-prev {
  left: auto;
  right: 5rem;
  width: 5rem;
  height: 5rem;
  top: 46rem !important;
  background-color: #fff;
  border: 1px solid #f5f3f0;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .slideAM .slick-prev {
    left: auto;
    right: 5rem;
    top: 33.5rem !important;
  }
}
.topYoutubeWrap .slideAM .slick-prev:hover {
  background: #eee;
}
.topYoutubeWrap .slideAM .slick-prev:before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin-top: -0.2em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  vertical-align: inherit;
  margin-top: inherit;
  margin-right: inherit;
  background-image: url(../img/ico_direction_pri_01.svg);
}
.topYoutubeWrap .slideAM .slick-next {
  left: auto;
  right: 0rem;
  width: 5rem;
  height: 5rem;
  top: 48.4rem !important;
  background-color: #fff;
  border: 1px solid #f5f3f0;
}
@media only screen and (max-width: 768px) {
  .topYoutubeWrap .slideAM .slick-next {
    left: auto;
    top: 36rem !important;
  }
}
.topYoutubeWrap .slideAM .slick-next:hover {
  background: #eee;
}
.topYoutubeWrap .slideAM .slick-next:before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin-top: -0.2em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  vertical-align: inherit;
  margin-top: inherit;
  margin-right: inherit;
  background-image: url(../img/ico_direction_pri_01.svg);
}

.topConceptWrap {
  background: url(../img/top_concept_bg.jpg) no-repeat center bottom/cover;
  position: relative;
  padding: 16rem 0 20rem 0;
}
@media only screen and (max-width: 768px) {
  .topConceptWrap {
    padding: 6rem 0 6rem 0;
  }
}
.topConceptWrap::before {
  content: "";
  background: #aaa;
  width: 1px;
  height: 8rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.topConceptWrap ._in ._inD {
  position: relative;
}
.topConceptWrap ._in .bgText {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 16.8rem;
  font-weight: 400;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 14rem;
  color: #eee;
}
@media only screen and (max-width: 768px) {
  .topConceptWrap ._in .bgText {
    font-size: 6.8rem;
    font-weight: bold;
    line-height: 6rem;
  }
}
.topConceptWrap ._in .inin {
  text-align: center;
}
.topConceptWrap ._in .inin h2 {
  position: relative;
  margin-bottom: 4rem;
  font-weight: bold;
  font-style: normal;
  font-size: 3.8rem;
  color: #333;
  line-height: 5.4rem;
}
@media only screen and (max-width: 768px) {
  .topConceptWrap ._in .inin h2 {
    font-size: 2.6rem;
    color: #333;
    line-height: 3.4rem;
  }
}
.topConceptWrap ._in .inin p {
  margin-bottom: 4rem;
}
.topConceptWrap ._in .inin .centerSpecial {
  margin: 0 auto;
}
.topConceptWrap ._in .inin .centerSpecial a {
  margin: 0 auto;
}

.topGuidanceWrap {
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .topGuidanceWrap {
    padding: 10rem 0 6rem 0;
  }
}
.topGuidanceWrap ._in ._inD {
  position: relative;
}
.topGuidanceWrap ._in .bgText {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 11.8rem;
  font-weight: 400;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 14rem;
  color: #eee;
}
@media only screen and (max-width: 768px) {
  .topGuidanceWrap ._in .bgText {
    font-size: 6.8rem;
    font-weight: bold;
    line-height: 6rem;
  }
}
.topGuidanceWrap ._in .tth {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 5rem;
}
.topGuidanceWrap ._in .tth h2 {
  font-size: 2.8rem;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.topGuidanceWrap ._in .tth .sub {
  color: #003894;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1rem;
}
.topGuidanceWrap ._in .flexWrap {
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .topGuidanceWrap ._in .flexWrap {
    display: block;
  }
}
.topGuidanceWrap ._in .flexWrap .flexBox {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .topGuidanceWrap ._in .flexWrap .flexBox {
    width: 100%;
  }
  .topGuidanceWrap ._in .flexWrap .flexBox:not(:first-child) {
    margin-top: 6rem;
  }
}
.topGuidanceWrap ._in .flexWrap .flexBox a {
  transition: all 0.4s;
}
.topGuidanceWrap ._in .flexWrap .flexBox a .imgb {
  margin-bottom: 2rem;
}
.topGuidanceWrap ._in .flexWrap .flexBox a .textB dl dt {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.topGuidanceWrap ._in .flexWrap .flexBox a .textB dl dd {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1rem;
  color: #003894;
}
.topGuidanceWrap ._in .flexWrap .flexBox a:hover {
  opacity: 0.8;
}
.topGuidanceWrap ._in .centerSpecial a {
  margin: 0 auto;
}

.topNewsWrap {
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  padding: 7rem 0;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap {
    padding: 5rem 0;
  }
}
.topNewsWrap .newsLeftWrap {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .newsLeftWrap {
    margin: 0 auto 0rem;
    display: block;
  }
}
.topNewsWrap .newsLeftWrap .mainNewsBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
}
.topNewsWrap .newsLeftWrap .mainNewsBox .topNewsContainer {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .newsLeftWrap .mainNewsBox .topNewsContainer {
    display: block;
  }
}
.topNewsWrap .newsLeftWrap .mainNewsBox .topNewsContainer .tltWrap {
  position: relative;
  -webkit-flex-basis: 25rem;
  flex-basis: 25rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .newsLeftWrap .mainNewsBox .topNewsContainer .tltWrap {
    margin-bottom: 3rem;
  }
}
.topNewsWrap .newsLeftWrap .mainNewsBox .topNewsContainer .tltWrap .sub {
  margin-bottom: 4rem;
}
.topNewsWrap .newsLeftWrap .mainNewsBox .topNewsContainer .all_l_wrap_s {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.topNewsWrap .newsLeftWrap .mainNewsBox .tltWrap {
  margin-bottom: 5rem;
}
.topNewsWrap .newsLeftWrap .mainNewsBox .tltWrap h2 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 4rem;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-bottom: 1rem;
}
.topNewsWrap .newsLeftWrap .mainNewsBox .tltWrap .sub {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2rem;
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li {
  border-bottom: 1px solid #f3f3f3;
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li a {
  width: 100%;
  padding: 25px 0;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  color: #262626;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .newsLeftWrap .mainNewsBox ul li a {
    display: block;
    padding: 2rem 0;
  }
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li a:before {
  content: "›";
  position: absolute;
  top: 2.6rem;
  right: 0;
  color: #000;
  font-family: ltc-goudy-oldstyle-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
  line-height: 0.6;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .newsLeftWrap .mainNewsBox ul li a:before {
    top: auto;
    bottom: 4.2rem;
  }
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li a .top_news_item_header {
  width: 20rem;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .newsLeftWrap .mainNewsBox ul li a .top_news_item_header {
    width: auto;
    margin-bottom: 1rem;
  }
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li a .top_news_item_header .top_news_date {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a4a4a4;
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li a .top_news_item_header .top_news_tag {
  min-width: 9rem;
  display: inline-block;
  margin-left: 2rem;
  padding: 0.2rem 0;
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  background: #333;
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li a .top_news_item_title {
  width: calc(100% - 200px);
  padding-right: 15px;
  padding-bottom: 0.1em;
  overflow: hidden;
  font-size: 1.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .newsLeftWrap .mainNewsBox ul li a .top_news_item_title {
    width: auto;
    font-size: 1.6rem;
  }
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li a .top_news_item_title span {
  background: linear-gradient(#262626, #262626) no-repeat 100% 100%;
  background-size: 0 1px;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.topNewsWrap .newsLeftWrap .mainNewsBox ul li a:hover .top_news_item_title span {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.topMessage {
  overflow: hidden;
}
.topMessage ._in {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0rem 0 10rem 0;
  padding: 20rem 0 14rem;
  background: #005ab7;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in {
    margin-bottom: 0;
    padding: 5rem 0 10rem;
  }
}
.topMessage ._in .leftImg {
  margin: 0 -68px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53vw;
  flex: 0 0 53vw;
  -ms-flex: 0 0 calc(60% + 68px);
  flex: 0 0 calc(60% + 68px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .leftImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 5px 0 0px;
    width: 90%;
    -ms-flex: inherit;
    flex: inherit;
  }
}
.topMessage ._in .leftImg li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.topMessage ._in .leftImg li iframe {
  width: 100%;
  height: 58rem;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .leftImg li iframe {
    height: 34rem;
  }
}
.topMessage ._in .leftImg li img {
  width: 100%;
  height: auto;
}
.topMessage ._in .rightContent {
  position: relative;
  top: 5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .rightContent {
    position: relative;
    z-index: 1;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: -45px -20px 0 20px;
  }
}
.topMessage ._in .rightContent .message__frame {
  background: #666 url(../img/top_bgbgbg.jpg) no-repeat center/cover;
  max-width: 870px;
  padding: 50px 5vw 90px 8vw;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .rightContent .message__frame {
    padding: 30px 30px 50px;
    box-sizing: border-box;
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
  }
  .topMessage ._in .rightContent .message__frame .normalBtn {
    width: 90%;
  }
}
.topMessage ._in .rightContent .message__frame .tellLeft {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .rightContent .message__frame .tellLeft {
    margin-right: 0rem;
    padding-right: 0rem;
    margin-bottom: 4rem;
    padding-bottom: 0rem;
    border-right: none;
  }
}
.topMessage ._in .rightContent .message__frame .tellLeft a {
  color: #000;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.1rem;
  letter-spacing: 0.08rem;
  font-family: "Amiri", serif;
}
.topMessage ._in .rightContent .message__frame .tellLeft a .numnum {
  font-size: 4.4rem;
  display: inline;
}
.topMessage ._in .rightContent .message__frame .message-head .message-head__en {
  position: relative;
  margin-left: -8vw;
  padding-left: 63px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .rightContent .message__frame .message-head .message-head__en {
    margin-left: -30px;
    font-size: 2.4rem;
  }
}
.topMessage ._in .rightContent .message__frame .message-head .message-head__en:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: -30px;
  width: 40px;
  height: 1px;
  background: #000;
  left: 0;
  width: 50px;
}
.topMessage ._in .rightContent .message__frame .message-head .message-head__ja {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .rightContent .message__frame .message-head .message-head__ja {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
.topMessage ._in .rightContent .message__frame .message__txt {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .rightContent .message__frame .message__txt {
    margin-bottom: 30px;
  }
}
.topMessage ._in .normalABtn a {
  position: relative;
  color: #003894;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  padding-bottom: 0.1rem;
}
.topMessage ._in .normalABtn a::before {
  content: "";
  background: #003894;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.topMessage ._in .textFont {
  position: absolute;
  top: 9rem;
  left: 8rem;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-size: 15rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .textFont {
    font-size: 6rem;
    position: relative;
    top: 0;
    left: 10vw;
    margin-bottom: 0rem;
  }
}
.topMessage ._in .textFont span {
  display: block;
}
.topMessage ._in .textFont span.t02 {
  color: #eee;
}
@media only screen and (max-width: 768px) {
  .topMessage ._in .textFont span.t02 {
    margin-left: 0rem;
  }
}

.topContactWrap {
  padding: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .topContactWrap {
    padding: 8rem 0 2rem;
  }
}
.topContactWrap ._in ._inD {
  position: relative;
}
.topContactWrap ._in .bgText {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 11.8rem;
  font-weight: 400;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 14rem;
  color: #eee;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .bgText {
    top: -4rem;
    font-size: 6.8rem;
    font-weight: bold;
    line-height: 6rem;
  }
}
.topContactWrap ._in .tth {
  position: relative;
  z-index: 2;
  margin-bottom: 8rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .tth {
    margin-bottom: 4rem;
  }
}
.topContactWrap ._in .tth h2 {
  font-size: 2.8rem;
  line-height: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .tth h2 {
    font-size: 2.4rem;
    line-height: 4rem;
  }
}
.topContactWrap ._in .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .flexWrap {
    display: block;
  }
}
.topContactWrap ._in .flexWrap .contactBox {
  position: relative;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  margin-bottom: 0;
  padding: 0 0 0 0rem;
  border-right: 1px solid #eee;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .flexWrap .contactBox {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}
.topContactWrap ._in .flexWrap .contactBox .inin {
  text-align: center;
}
.topContactWrap ._in .flexWrap .contactBox .inin .ttbIn {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: bold;
  margin-bottom: 4rem;
}
.topContactWrap ._in .flexWrap .contactBox .inin .tellLeft {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .flexWrap .contactBox .inin .tellLeft {
    margin-right: 0rem;
    padding-right: 0rem;
    margin-bottom: 4rem;
    padding-bottom: 0rem;
    border-right: none;
  }
}
.topContactWrap ._in .flexWrap .contactBox .inin .tellLeft a {
  color: #000;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.1rem;
  letter-spacing: 0.08rem;
  font-family: "Amiri", serif;
}
.topContactWrap ._in .flexWrap .contactBox .inin .tellLeft a .numnum {
  font-size: 5.4rem;
  display: inline;
}
.topContactWrap ._in .flexWrap .contactBox .inin p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
}
.topContactWrap ._in .flexWrap .lineBox {
  position: relative;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  margin-bottom: 0;
  padding: 0 0 0 6rem;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .flexWrap .lineBox {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    margin-bottom: 3rem;
    padding-left: 0;
  }
}
.topContactWrap ._in .flexWrap .lineBox .inin {
  text-align: center;
}
.topContactWrap ._in .flexWrap .lineBox .inin .ttbIn {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.topContactWrap ._in .flexWrap .lineBox .inin ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .flexWrap .lineBox .inin ul {
    display: block;
  }
}
.topContactWrap ._in .flexWrap .lineBox .inin ul li {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .topContactWrap ._in .flexWrap .lineBox .inin ul li {
    width: 100%;
  }
  .topContactWrap ._in .flexWrap .lineBox .inin ul li:nth-child(1) {
    margin-bottom: 2rem;
  }
}
.topContactWrap ._in .flexWrap .lineBox .inin ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  align-items: center;
  width: 100%;
  height: 6rem;
  border: 1px solid #5b5501;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #fff;
  border-radius: 6rem;
  -webkit-border-radius: 6rem;
  -moz-border-radius: 6rem;
  padding: 0 0 0px 0rem;
  line-height: 1.2;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: #5b5501;
}
.topContactWrap ._in .flexWrap .lineBox .inin ul li a._01 {
  border: 1px solid #06c755;
  color: #06c755;
}
.topContactWrap ._in .flexWrap .lineBox .inin ul li a._01 .iniB {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.topContactWrap ._in .flexWrap .lineBox .inin ul li a._01 .iniB .icon {
  display: inline-block;
  width: 4rem;
  padding-right: 1rem;
}
.topContactWrap ._in .flexWrap .lineBox .inin ul li a._02 ._tel {
  font-size: 1.9rem;
}

@media only screen and (max-width: 768px) {
  .btnNormal {
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
  }
}
.btnNormal a {
  position: relative;
  display: block;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #000;
  width: 270px;
  height: 62px;
}
@media only screen and (max-width: 768px) {
  .btnNormal a {
    max-width: 250px;
    width: 100%;
    height: 57px;
  }
}
.btnNormal a:before {
  content: "";
  background: url(../img/btn_icon_arrow.png) no-repeat center center;
  position: absolute;
  right: -50px;
  top: 50%;
  bottom: 0;
  width: 80px;
  height: 6px;
  transform: translate3d(0, -50%, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 768px) {
  .btnNormal a:before {
    right: -15px;
    background-size: 80%;
    background: url(../img/btn_icon_arrow_02.png) no-repeat center center;
  }
}
.btnNormal a .btnIn {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.btnNormal a .btnIn:before, .btnNormal a .btnIn:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #000;
  transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.btnNormal a .btnIn:before {
  top: 0;
}
.btnNormal a .btnIn:after {
  bottom: 0;
}
.btnNormal a .btnIn .bgBoard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.47, 0, 0.745, 0.715), transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: opacity 0.6s cubic-bezier(0.47, 0, 0.745, 0.715), transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.btnNormal a .btnIn .inBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .btnNormal a .btnIn .inBtn._zero .d1 {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
  }
}
.btnNormal a .btnIn .inBtn:before, .btnNormal a .btnIn .inBtn:after {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: #000;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.btnNormal a .btnIn .inBtn:before {
  left: 0;
}
.btnNormal a .btnIn .inBtn:after {
  right: 0;
}
.btnNormal a .btnIn .inBtn .e1 {
  position: relative;
  font-size: 1.4rem;
  transition: color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media only screen and (max-width: 768px) {
  .btnNormal a .btnIn .inBtn .e1 {
    font-size: 13px;
  }
}
.btnNormal a:hover:before {
  transform: translate3d(10px, -50%, 0);
}
.btnNormal a:hover .btnIn:before {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.btnNormal a:hover .btnIn:after {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.btnNormal a:hover .btnIn .bgBoard {
  opacity: 1;
  transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.btnNormal a:hover .btnIn .inBtn:before {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btnNormal a:hover .btnIn .inBtn:after {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.btnNormal a:hover .btnIn .inBtn .e1 {
  color: #fff;
}
.btnNormal.bCenter a {
  margin: 0 auto;
}
.btnNormal.bWhite a:before {
  background: url(../img/btn_icon_arrow_white.png) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  .btnNormal.bWhite a:before {
    background: url(../img/btn_icon_arrow_white_sp.png) no-repeat center center;
  }
}
.btnNormal.bWhite .btnIn:before, .btnNormal.bWhite .btnIn:after {
  background: #fff;
}
.btnNormal.bWhite .btnIn .inBtn:before, .btnNormal.bWhite .btnIn .inBtn:after {
  background: #fff;
}
.btnNormal.bWhite .btnIn .inBtn .d1 .e1 {
  color: #fff;
}

.btnArrowBoxWhite a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 2rem 1rem;
  width: 15rem;
  max-width: 30rem;
  color: #333;
  transition: all 0.6s 0s;
  background: linear-gradient(#333, #333) no-repeat 100% 100%;
  background-size: 0 1px;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media only screen and (max-width: 768px) {
  .btnArrowBoxWhite a {
    font-size: 1.6rem;
    width: 90%;
    max-width: 90%;
    min-width: 18rem;
  }
}
.btnArrowBoxWhite a .circle {
  position: absolute;
  top: 48%;
  right: 2rem;
  transform: translate(0, -50%);
  transition: all 0.5s 0s;
}
.btnArrowBoxWhite a .circle svg {
  fill: #333;
}
.btnArrowBoxWhite a:hover {
  background-position: 100% 100%;
  background-size: 0% 2px;
}

/*=========================================================*/
/*	mainvisual*/
/*=========================================================*/
#mainvisual {
  z-index: 0;
  padding-top: 10rem;
}
@media only screen and (max-width: 768px) {
  #mainvisual {
    z-index: 0;
    margin-top: 0;
    padding-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  #mainvisual:after {
    display: none;
  }
}

#background {
  position: relative;
  padding-bottom: 8rem;
  max-height: 92vh;
}
@media only screen and (max-width: 768px) {
  #background {
    max-height: 100vh;
  }
}
#background::before {
  content: "";
  background: #005ab7;
  width: calc(100% - 20rem);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  #background::before {
    bottom: -3rem;
  }
}
#background #mainvisualImg {
  position: relative;
  z-index: 2;
  background: url(../img/poster.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  transition: all 1.8s;
}
@media only screen and (max-width: 768px) {
  #background #movieMain div#svg-animation {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #background #movieMain div#svg-animation:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: transparent none repeat 0 0;
  }
}
#background #movieMain div#svg-animation #js_video {
  width: 100%;
  height: auto;
  position: static;
  left: auto;
  width: 100%;
  height: auto;
  vertical-align: top;
  -ms-transform: none;
  transform: none;
}
@media only screen and (max-width: 768px) {
  #background #movieMain div#svg-animation #js_video {
    position: relative;
    top: 0px;
    object-fit: cover;
    width: 100vw;
    height: 90vh;
  }
}
#background .bgSlideTop00 {
  background: #000;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #background .bgSlideTop00 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100% - 0px);
    min-height: 80vh;
  }
}
#background .bgSlideTop {
  background: #000;
  position: relative;
  z-index: 3;
  top: 0;
  left: 0;
  width: calc(100% - 20rem);
  height: auto;
  max-height: 100vh;
  overflow: hidden;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  #background .bgSlideTop {
    position: relative;
    overflow: hidden;
    width: calc(100% - 0px);
    height: 90vh;
    min-height: 80vh;
  }
}
#background .bgSlideTop:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #232323 25%, transparent 25%, transparent 75%, #232323 75%), linear-gradient(45deg, #232323 25%, transparent 25%, transparent 75%, #232323 75%);
  background-size: 2px 2px;
  background-position: 0 0, 1px 1px;
  z-index: 1;
  opacity: 0.7;
}
#background .visualCenterBox {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 23;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #background .visualCenterBox {
    width: 100%;
    left: calc(50% - 0px);
  }
}
#background .visualCenterBox .logoCenter {
  width: 11rem;
  margin: 0 auto 3rem;
}
@media only screen and (max-width: 768px) {
  #background .visualCenterBox .logoCenter {
    width: 6rem;
  }
}
#background .visualCenterBox .jpText {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  #background .visualCenterBox .jpText {
    font-size: 2rem;
  }
}

.kv_scroll {
  width: 1px;
  height: 70px;
  position: absolute;
  right: 2%;
  top: 50%;
  z-index: 100;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .kv_scroll {
    display: none;
    bottom: 0%;
  }
}
.kv_scroll ._pointer {
  -webkit-animation: moveScrollPointer 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: moveScrollPointer 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.kv_scroll ._pointer:before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  border-radius: 50%;
  background-color: #333;
}
.kv_scroll ._text {
  position: absolute;
  top: -55px;
  left: -7px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .kv_scroll ._text {
    bottom: -20px;
    color: #fff;
  }
}

@-webkit-keyframes moveScrollPointer {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
}
@keyframes moveScrollPointer {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
}
@-webkit-keyframes scrollPointerInOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes scrollPointerInOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
#movieMain .centerIText {
  position: absolute;
  top: 18rem;
  right: -12rem;
}
@media only screen and (max-width: 768px) {
  #movieMain .centerIText {
    right: auto;
    top: 38rem;
    left: 2rem;
    font-size: 3vw;
  }
}
#movieMain .centerIText .bgText {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11rem;
  letter-spacing: 0.05rem;
  color: #222;
  line-height: 11rem;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  #movieMain .centerIText .bgText {
    z-index: 2;
    font-size: 7rem;
    line-height: 8rem;
    letter-spacing: 0em;
    margin-bottom: 2rem;
    color: #fff;
  }
}
#movieMain .centerIText .bgText span {
  display: block;
  transition: all 1s;
}
#movieMain .centerIText .bgText span:nth-child(1) {
  transition-delay: 0.1s;
}
#movieMain .centerIText .bgText span:nth-child(2) {
  transition-delay: 0.2s;
}

.ttonTop {
  position: absolute;
  top: 41rem;
  right: 19rem;
  transform: translate(0%, 0%);
  z-index: 3;
  padding: 0px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .ttonTop {
    top: 55rem;
    right: auto;
    left: 2rem;
    color: #fff;
    font-size: 1.9rem;
  }
}

.contactTopP {
  position: absolute;
  right: 0rem;
  bottom: -2rem;
  z-index: 4;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .contactTopP {
    position: absolute;
    z-index: 3;
    width: calc(100% - 2rem);
    margin: 0rem auto;
    left: 0%;
    bottom: 0rem;
    transform: translate(0%, 0px);
  }
}
@media only screen and (max-width: 768px) {
  .contactTopP .newsTTT .newsInner02 {
    display: block;
  }
}
.contactTopP .newsTTT .newsInner02 .newsCategory {
  line-height: 1;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 2.5rem 3rem 0;
}
@media only screen and (max-width: 768px) {
  .contactTopP .newsTTT .newsInner02 .newsCategory {
    display: block;
    padding: 2.5rem 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .contactTopP .newsTTT .newsInner02 .newsCategory .dl {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.contactTopP .newsTTT .newsInner02 .newsCategory .dl .dt {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .contactTopP .newsTTT .newsInner02 .newsCategory .dl .dt {
    font-size: 2.2rem;
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
.contactTopP .newsTTT .newsInner02 .newsCategory .dl .dd {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .contactTopP .newsTTT .newsInner02 .newsCategory .dl .dd {
    font-size: 2.2rem;
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
.contactTopP .newsTTT .newsInner02 .newsCategory .dl .dldldl {
  font-size: 1.4rem;
}
.contactTopP .newsTTT .newsInner02 .gallery-topA {
  position: static;
  width: 50rem;
}
.contactTopP .newsTTT .newsInner02 .dldldl a {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.contactTopP .newsTTT .newsInner02 .dldldl a .imgBox {
  position: relative;
  -webkit-flex-basis: 16rem;
  flex-basis: 16rem;
  margin-bottom: 0;
}
.contactTopP .newsTTT .newsInner02 .dldldl a .imgBox .img {
  position: relative;
}
.contactTopP .newsTTT .newsInner02 .dldldl a .imgBox .img:before {
  content: "";
  display: block;
  padding-top: 11rem;
}
@media only screen and (max-width: 768px) {
  .contactTopP .newsTTT .newsInner02 .dldldl a .imgBox .img:before {
    padding-top: 11rem;
  }
}
.contactTopP .newsTTT .newsInner02 .dldldl a .imgBox .img span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background: url() center no-repeat #e5e5e5;
}
.contactTopP .newsTTT .newsInner02 .dldldl a .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 2rem 3rem;
  width: 48rem;
}
.contactTopP .newsTTT .newsInner02 .dldldl a .textBox dl dt {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contactTopP .newsTTT .newsInner02 .dldldl a .textBox dl dd {
  font-size: 1.5rem;
  font-weight: bold;
}
.contactTopP .newsTTT .newsInner02 .dldldl a:hover .textBox dl dd {
  text-decoration: underline;
}
.contactTopP .newsTTT .newsInner02 .listBtnWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .contactTopP .newsTTT .newsInner02 .listBtnWrap {
    display: none;
  }
}
.contactTopP .newsTTT .newsInner02 .listBtnWrap .btnListIn a {
  position: relative;
  background: #f7f7f7;
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-block;
  padding: 1.5rem 3rem 1.5rem 2rem;
}
.contactTopP .newsTTT .newsInner02 .listBtnWrap .btnListIn a::before {
  content: "›";
  position: absolute;
  top: 1.6rem;
  right: 1rem;
  color: #000;
  font-family: ltc-goudy-oldstyle-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
  line-height: 0.6;
}
.contactTopP .gallery-topA .swiper-button-next,
.contactTopP .gallery-topA .swiper-button-prev {
  position: absolute;
  top: 0%;
  background: #eee;
  width: 5rem;
  height: 5rem;
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.contactTopP .gallery-topA .swiper-button-next:after,
.contactTopP .gallery-topA .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  color: #040000;
}
@media only screen and (max-width: 768px) {
  .contactTopP .gallery-topA .swiper-button-next:after,
  .contactTopP .gallery-topA .swiper-button-prev:after {
    font-size: 2rem;
  }
}
.contactTopP .gallery-topA .swiper-button-next {
  right: 0;
  background-image: none !important;
}
.contactTopP .gallery-topA .swiper-button-next:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .contactTopP .gallery-topA .swiper-button-next:before {
    right: 2rem;
  }
}
.contactTopP .gallery-topA .swiper-button-next:after {
  content: "next";
  opacity: 0;
}
.contactTopP .gallery-topA .swiper-button-prev {
  right: 5.1rem;
  left: auto;
  background-image: none !important;
}
.contactTopP .gallery-topA .swiper-button-prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-bottom: 2px solid #222;
  border-left: 2px solid #222;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .contactTopP .gallery-topA .swiper-button-prev:before {
    left: 2rem;
  }
}
.contactTopP .gallery-topA .swiper-button-prev:after {
  content: "prev";
  opacity: 0;
}

.inner_content {
  position: absolute;
  top: 18rem;
  right: 8rem;
  transform: translate(0%, 0%);
  z-index: 2;
  padding: 0px;
}
@media only screen and (max-width: 768px) {
  .inner_content {
    top: 42vh;
    right: auto;
    right: auto;
    top: auto;
    font-size: 3vw;
  }
}
.inner_content .centerI {
  position: relative;
  transition: all 0.7s;
}
@media only screen and (max-width: 768px) {
  .inner_content .centerI {
    width: auto;
  }
}
.inner_content .centerI .onText {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
  padding-left: 7rem;
  text-shadow: 0px 0px 8px #fff;
}
@media only screen and (max-width: 768px) {
  .inner_content .centerI .onText {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    padding-left: 5rem;
    color: #fff;
  }
}
.inner_content .centerI .onText:before {
  content: "";
  width: 5rem;
  height: 1px;
  background: #f00;
  position: absolute;
  top: 47%;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .inner_content .centerI .onText:before {
    width: 3rem;
    background: #fff;
  }
}
.inner_content .centerI .bgText {
  position: relative;
  text-align: left;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11rem;
  letter-spacing: 0.05rem;
  color: #fff;
  line-height: 11rem;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .inner_content .centerI .bgText {
    font-size: 7rem;
    line-height: 8rem;
    letter-spacing: 0em;
    margin-bottom: 2rem;
    color: #fff;
    display: none;
  }
}
.inner_content .centerI .bgText span {
  display: block;
  transition: all 1s;
}
.inner_content .centerI .bgText span:nth-child(1) {
  transition-delay: 0.1s;
}
.inner_content .centerI .bgText span:nth-child(2) {
  transition-delay: 0.2s;
}

.snsLink {
  position: absolute;
  left: 7rem;
  bottom: 3rem;
  z-index: 23;
}
@media only screen and (max-width: 768px) {
  .snsLink {
    top: 3rem;
    display: none;
  }
}
.snsLink ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.snsLink ul li:not(:first-child) {
  margin-left: 2rem;
}
.snsLink ul li:last-child a {
  width: 1.7rem;
  display: -webkit-flex;
  display: flex;
  /* -webkit-justify-content: center; */
  /* justify-content: center; */
  -webkit-align-items: center;
  align-items: center;
}
.snsLink ul a {
  display: block;
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .snsLink ul a {
    color: #fff;
  }
}

.snsLinkSub {
  position: absolute;
  left: 7rem;
  bottom: 3rem;
  z-index: 23;
  background: #333;
  padding: 1.5rem 1rem;
}
@media only screen and (max-width: 768px) {
  .snsLinkSub {
    top: 3rem;
    display: none;
  }
}
.snsLinkSub ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.snsLinkSub ul li:last-child a {
  display: -webkit-flex;
  display: flex;
  /* -webkit-justify-content: center; */
  /* justify-content: center; */
  -webkit-align-items: center;
  align-items: center;
}
.snsLinkSub ul li:last-child a img {
  width: 1.5rem;
}
.snsLinkSub ul a {
  display: block;
  font-size: 2rem;
  color: #fff;
  background: #333;
  padding: 0 1.5rem;
}
@media only screen and (max-width: 768px) {
  .snsLinkSub ul a {
    color: #fff;
  }
}

.main_visual__play {
  position: absolute;
  bottom: 13rem;
  left: 2rem;
  text-align: center;
  z-index: 23;
}
@media only screen and (max-width: 768px) {
  .main_visual__play {
    top: auto;
    right: 3rem;
    bottom: 20rem;
  }
}
.main_visual__play a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 19rem;
  margin: 0 auto 0px;
  transition: all 0.4s;
}
.main_visual__play a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .main_visual__play a {
    width: 18rem;
    margin: 0 0rem 2rem auto;
  }
}
.main_visual__play a img {
  display: block;
  width: 100%;
}

#movie {
  width: 80%;
  height: auto;
  margin: 0px auto;
}
@media only screen and (max-width: 768px) {
  #movie {
    width: 90%;
  }
}
#movie video {
  width: 100%;
  height: auto;
}

.lity-content:after {
  box-shadow: 0 0 0px rgba(0, 0, 0, 0);
}

.lity_hide {
  max-height: 1000px;
  display: none;
}
.lity_hide .movie_popup__inner {
  width: 100%;
  max-width: 1160px;
  margin: auto;
  padding: 0 40px;
}

.lity-content .lity_hide {
  display: block;
}

.loadFin .inner_content .centerI .bgText span {
  transform: translate(0px, 0px);
  opacity: 1;
}
.loadFin .bannerOn {
  transform: translate(0px, -50%);
  opacity: 1;
}

/*=========================================================*/
/*	header*/
/*=========================================================*/
header {
  position: fixed;
  background: #fff;
  top: 0;
  z-index: 99;
  transition: 0.35s 0.7s;
  z-index: 25;
  width: 100%;
  height: 10rem;
  padding: 0 0px 0 0px;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
@media only screen and (max-width: 768px) {
  header {
    height: 75px;
  }
}
header #head_Logo {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: #fff;
  padding: 5rem;
}
@media only screen and (max-width: 768px) {
  header #head_Logo {
    width: 22rem;
    padding: 5rem 4rem;
  }
}
header #head_Logo a {
  display: block;
  width: 20rem;
}
@media only screen and (max-width: 768px) {
  header #head_Logo a {
    width: 100%;
  }
}
header #head_Logo._secHead {
  position: fixed;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  header #head_Logo._secHead a {
    width: 13rem;
  }
}
header .headerInner {
  position: absolute;
  top: 0rem;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
header .headerInner .mypageContact {
  height: 10rem;
  text-align: center;
  background: #445255;
  padding: 0 2rem;
}
@media only screen and (max-width: 768px) {
  header .headerInner .mypageContact {
    display: none;
  }
}
header .headerInner .mypageContact ul {
  height: 100%;
}
header .headerInner .mypageContact ul li {
  height: 100%;
}
header .headerInner .mypageContact ul li.mypageBtn a {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
}
header .headerInner .mypageContact ul li.mypageBtn a .subIcon {
  font-size: 1.8rem;
  line-height: 1;
  font-family: bitter, serif;
  font-weight: 700;
  font-style: normal;
  display: block;
}
header .headerInner .mypageContact ul li.mypageBtn a .dayNumber {
  font-size: 1.4rem;
}
header .headerInner #nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
header .headerInner #nav ul li {
  position: relative;
  display: -webkit-flex;
  width: 13rem;
  height: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
header .headerInner #nav ul li:last-child {
  width: 17rem;
}
header .headerInner #nav ul li a {
  overflow: hidden;
  border-left: 1px solid hsla(0, 0%, 100%, 0.2);
  pointer-events: auto;
  position: relative;
  display: block;
  padding: 4rem 0rem;
  color: #005ab7;
  font-size: 1.3rem;
  width: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  text-align: center;
}
header .headerInner #nav ul li a:before {
  left: 0;
  content: "";
  height: 1px;
  bottom: 3rem;
  background: #005ab7;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  will-change: transform;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: calc(100% - 0vw);
  -webkit-transition: background 500ms linear, -webkit-transform 0.4s ease-out;
  transition: background 500ms linear, -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out, background 500ms linear;
  transition: transform 0.4s ease-out, background 500ms linear, -webkit-transform 0.4s ease-out;
}
header .headerInner #nav ul li a span {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
header .headerInner #nav ul li a .en {
  position: static;
  top: 50%;
  left: 50%;
  opacity: 1;
  display: block;
}
header .headerInner #nav ul li a .jp {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
}
header .headerInner #nav ul li a:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}
header .headerInner #nav ul li a:hover .jp {
  opacity: 1;
}
header .headerInner #nav ul li.headContact a {
  background: #005ab7;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
}
header .headerInner._secHead {
  position: static;
  z-index: 4;
  padding: 3rem 5rem 0 0;
}
header .headerInner._secHead #nav ul li {
  width: auto;
  height: auto;
  display: block;
}
header .headerInner._secHead #nav ul li a {
  position: relative;
  height: 17rem;
  text-align: left;
  padding: 2rem 2rem 0 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  overflow: initial;
  color: #333;
}
header .headerInner._secHead #nav ul li a::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translate(0%, 0);
  display: block;
  width: 1px;
  height: 4rem;
}
header .headerInner._secHead #nav ul li a .jp {
  opacity: 1;
  height: 100%;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 3rem;
  letter-spacing: 0.2rem;
}
header .headerInner._secHead #nav ul li a .en {
  position: static;
  height: 100%;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: translate3d(0%, 0%, 0px);
  color: #bbb;
  opacity: 1 !important;
}
header .headerInner._secHead #nav ul li.headContact a {
  color: #fff;
}
header .headerInner._secHead #nav ul li.active a {
  color: #005ab7;
}
header .headerInner._secHead #nav ul li.active a::before {
  background: #005ab7;
}
header .headerInner._secHead .headRightBtn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 4rem;
}
header .headerInner._secHead .headRightBtn a {
  position: relative;
  display: block;
  border: 2px solid #333;
  width: 15rem;
  padding: 1rem 0;
  text-align: center;
  font-size: 1.3rem;
}
header .headerInner._secHead .headRightBtn a span {
  display: block;
  width: 15px;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}
header .headerInner._secHead .headRightBtn a span:before, header .headerInner._secHead .headRightBtn a span:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
header .headerInner._secHead .headRightBtn a span:after {
  transform: translateX(-100%);
}
header .headerInner._secHead .headRightBtn a:hover span:before {
  transform: translateX(100%);
}
header .headerInner._secHead .headRightBtn a:hover span:after {
  transform: translateX(0);
  transition-delay: 0.5s;
}
header .headerInner._secHead .mypageContact {
  display: none;
}
header.active_header,
.sec header {
  transition: 0.01s 0s;
}

header .commonOuter {
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0px;
  right: 10rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  header .commonOuter {
    height: 60px;
    display: none;
  }
}
header .commonOuter .headerTopTell {
  margin-right: 3rem;
}
header .commonOuter .headerTopTell a {
  display: inline-block;
  font-size: 1.8rem;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: #fff;
}
header .commonOuter .headerTopTell a i {
  margin-right: 0.5rem;
}
header .commonOuter .headerBtnList {
  display: flex;
}
header .commonOuter .headerBtnList .btnMy a {
  background: #fff;
  width: 10rem;
  height: 10rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
header .commonOuter .headerBtnList .btnMy a span {
  display: block;
  text-align: center;
}
header .commonOuter .headerBtnList .btnMy a span._plane {
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
  color: #0080cc;
}
header .commonOuter .headerBtnList .btnMy a span.ttt {
  font-size: 1.3rem;
  color: #0080cc;
}
header .commonOuter .headerBtnList .btnMy._account, header .commonOuter .headerBtnList .btnMy._cart {
  font-size: 15px;
}
header .commonOuter .headerBtnList .btnMy._account {
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
header .commonOuter .headerBtnList .btnMy._cart a {
  background: #4882ca;
  color: #fff;
}
header .commonOuter .headerBtnList .btnMy._insta a {
  font-size: 30px;
  color: #fff;
}

header .commonOuter:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo {
    float: left;
    position: relative;
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}
header .commonOuter #head_Logo a {
  display: block;
  position: relative;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo a {
    top: 0%;
    transform: translate3d(0, 0%, 0);
  }
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo a {
    display: block;
    width: 220px;
  }
}

header .commonOuter #head_Logo a {
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

header .commonOuter #head_Logo a:hover {
  opacity: 0.7;
}

header .commonOuter nav {
  display: block;
  height: 100%;
}

header .commonOuter nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}

header .commonOuter nav ul li {
  height: 100%;
}
header .commonOuter nav ul li.iconMenuSNS01 a img {
  width: 12px;
  height: auto;
}
header .commonOuter nav ul li.iconMenuSNS02 a img {
  width: 22px;
  height: auto;
}

header .commonOuter nav ul li a {
  position: relative;
  display: flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #333;
  font-size: 1.3rem;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  text-align: center;
  overflow: hidden;
}
header .commonOuter nav ul li a:before {
  content: "";
  background: #005ab7;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate3d(0, 2px, 0);
  transition: all 0.2s ease-in-out 0s;
}
header .commonOuter nav ul li a div.ddd {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}
header .commonOuter nav ul li a div._special {
  min-width: 10rem;
}
header .commonOuter nav ul li a span.naviA {
  width: 100%;
  display: block;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
header .commonOuter nav ul li a span.naviA.en {
  position: relative;
  top: 0;
  left: 0;
}
header .commonOuter nav ul li a span.naviA.jp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0px, 0px);
  opacity: 0;
}
header .commonOuter nav ul li a:hover:before {
  transform: translate3d(0, 0px, 0);
}
header .commonOuter nav ul li a:hover span.naviA.en {
  opacity: 0;
}
header .commonOuter nav ul li a:hover span.naviA.jp {
  opacity: 1;
}

header .commonOuter nav ul li a span {
  display: block;
}

header .commonOuter nav ul li a:hover:after {
  opacity: 1;
}

.secHead {
  position: static;
  height: auto;
}
.secHead .commonOuter ul li a .engM {
  color: #333;
}

/*=========================================================*/
/*	menu*/
/*=========================================================*/
.menu-main-button {
  position: fixed;
  top: 0px;
  right: 0rem;
  transform: translate3d(0, 0%, 0);
  z-index: 101;
  background: #333;
  width: 10rem;
  height: 10rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .menu-main-button {
    top: 0px;
    left: auto;
    right: 15px;
    transform: translate3d(0, 0%, 0);
    z-index: 101;
  }
}

#menuWrap {
  padding: 0px 0px;
  top: 0px;
  right: 0px;
  box-sizing: content-box;
  cursor: pointer;
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}
#menuWrap.visible {
  opacity: 1 !important;
  transform: translate(0px, 0px) !important;
}
@media only screen and (max-width: 768px) {
  #menuWrap {
    width: 10rem;
    height: 10rem;
    right: 0px;
    top: 0rem;
  }
}
#menuWrap .menuBtn .menu {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 20px;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  font-family: "DIN_CONDENSED_BOLD", "NotoSerifJP", sans-serif;
  transition: color 0.6s 0.2s;
}
@media only screen and (max-width: 768px) {
  #menuWrap .menuBtn .menu {
    font-size: 14px;
    margin-bottom: 0px;
  }
}
#menuWrap .menuBtn .menu-trigger {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 25px;
  display: inline-block;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #menuWrap .menuBtn .menu-trigger {
    width: 30px;
    height: 20px;
  }
}
#menuWrap .menuBtn .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
}
#menuWrap .menuBtn .menu-trigger span:nth-of-type(1) {
  top: 0;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.355, 1) 0s;
}
#menuWrap .menuBtn .menu-trigger span:nth-of-type(2) {
  top: 11px;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.355, 1) 0.1s;
}
@media only screen and (max-width: 768px) {
  #menuWrap .menuBtn .menu-trigger span:nth-of-type(2) {
    top: 9px;
  }
}
#menuWrap .menuBtn .menu-trigger span:nth-of-type(3) {
  bottom: 0px;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.355, 1) 0.2s;
}
#menuWrap .menuBtn .menu-trigger span:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  transition: background 0.6s ease-in-out 0.2s;
}
#menuWrap:hover span:nth-of-type(1):before {
  animation: menu_hover_animation 0.4s cubic-bezier(0.645, 0.045, 0.175, 1) 0s;
}
#menuWrap:hover span:nth-of-type(2):before {
  animation: menu_hover_animation 0.4s cubic-bezier(0.645, 0.045, 0.175, 1) 0.1s;
}
#menuWrap:hover span:nth-of-type(3):before {
  animation: menu_hover_animation 0.4s cubic-bezier(0.645, 0.045, 0.175, 1) 0.2s;
}
@keyframes menu_hover_animation {
  0% {
    transform-origin: 100% 0;
    transform: none;
  }
  45% {
    transform-origin: 100% 0;
    transform: scaleX(0);
  }
  55% {
    transform-origin: 0 0;
    transform: scaleX(0);
  }
  100% {
    transform-origin: 0 0;
    transform: none;
  }
}
#menuWrap:hover:before {
  transform: scale(1.3);
}
@media only screen and (max-width: 768px) {
  #menuWrap:hover:before {
    transform: scale(1);
  }
}
.menu_on .menuBtn .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  .menu_on .menuBtn .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
}

.menu_on .menuBtn .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.menu_on .menuBtn .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .menu_on .menuBtn .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
}

.menu_on .menu-main-button #menuWrap .menuBtn .menu {
  color: #fff;
}
#close_btn {
  width: 7rem;
  height: 7rem;
  display: table;
  position: fixed;
  top: 3rem;
  right: 3rem;
  z-index: 102;
  box-sizing: content-box;
  cursor: pointer;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  #close_btn {
    width: 6rem;
    height: 6rem;
    top: 2rem;
    right: 2rem;
  }
}
#close_btn.visible {
  opacity: 1 !important;
  transform: translate(0px, 0px) !important;
}
#close_btn .menuBtnClose {
  position: relative;
  top: 3rem;
}
@media only screen and (max-width: 768px) {
  #close_btn .menuBtnClose {
    top: 2rem;
  }
}
#close_btn .menuBtnClose .menu-trigger {
  width: 100%;
  display: table;
  padding: 1rem 0;
  position: relative;
  top: auto;
  bottom: 0;
  cursor: pointer;
}
#close_btn .menuBtnClose .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.3rem;
}
#close_btn .menuBtnClose .menu-trigger span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(1rem) rotate(-45deg);
  transform: translateY(1rem) rotate(-45deg);
}
#close_btn .menuBtnClose .menu-trigger span:nth-of-type(1):before {
  background-color: #fff !important;
}
#close_btn .menuBtnClose .menu-trigger span:nth-of-type(2) {
  opacity: 0;
  top: 9px;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.355, 1) 0.1s;
}
#close_btn .menuBtnClose .menu-trigger span:nth-of-type(3) {
  bottom: 0px;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.355, 1) 0.2s;
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
  transform: translateY(-0.8rem) rotate(45deg);
}
#close_btn .menuBtnClose .menu-trigger span:nth-of-type(3):before {
  background-color: #fff !important;
}
#close_btn .menuBtnClose .menu-trigger span:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #707070;
  transition: background 0.4s ease-in-out 0s;
}

#menuBody {
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 101;
  display: none;
}

#pagemenu_bg {
  background: rgba(0, 0, 0, 0.9);
  width: -webkit-calc(100% - 0px);
  width: calc(100% - 0px);
  height: -webkit-calc(100vh - 0px);
  height: calc(100vh - 0px);
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(100%) translateX(0%);
  margin: 0 auto;
}

.xxxxx {
  opacity: 0;
}

nav#menuCircle {
  position: relative;
  z-index: 11;
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
nav#menuCircle .menuBgbgImg {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .menuBgbgImg {
    display: none;
  }
}
nav#menuCircle .menuBgbgImg .inBG {
  position: relative;
  width: 72rem;
  height: auto;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}
nav#menuCircle .menuBgbgImg .inBG::before {
  content: "";
  display: block;
  padding-top: 48rem;
}
nav#menuCircle .menuBgbgImg .inBG span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background-image: url(../img/menumenuBg.jpg);
  background-size: cover;
}
nav#menuCircle .menu_content {
  z-index: 3;
  width: 130rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .menu_content {
    width: 90%;
    height: 100vh;
    display: block;
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate3d(0%, 0%, 0);
    margin: 0 auto;
    padding: 10rem 0rem;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
nav#menuCircle .menu_content .menu_inner {
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .menu_content .menu_inner {
    display: block;
    margin-left: 0;
  }
}
nav#menuCircle ul.menu_list li {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5vh;
  padding-bottom: 1.5vh;
  border-bottom: 1px solid #444;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle ul.menu_list li {
    margin-bottom: 2.2rem;
  }
}
nav#menuCircle ul.menu_list li .inMotion.menuIcon {
  position: relative;
  overflow: hidden;
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle ul.menu_list li .inMotion.menuIcon {
    padding-left: 0;
  }
}
nav#menuCircle ul.menu_list li .inMotion a {
  position: relative;
  color: #ffffff;
  font-style: normal;
  font-family: oswald, sans-serif;
  font-weight: 500;
  font-style: normal;
  display: inline-block;
  -webkit-transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle ul.menu_list li .inMotion a {
    display: block;
    font-size: 2.6rem;
    letter-spacing: 0.1em;
  }
}
nav#menuCircle ul.menu_list li .inMotion a .jpjpjp {
  font-size: 1.8rem;
  line-height: 2.6rem;
  position: relative;
  -webkit-flex-basis: 35rem;
  flex-basis: 45rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle ul.menu_list li .inMotion a .jpjpjp {
    margin-bottom: 3rem;
  }
}
nav#menuCircle ul.menu_list li .inMotion a .engeng {
  font-size: 1.8rem;
  line-height: 2.4rem;
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
nav#menuCircle ul.menu_list li .inMotion a:before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 10%;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
  opacity: 0;
}
nav#menuCircle ul.menu_list li .inMotion a:hover:before {
  opacity: 1;
}
nav#menuCircle .in-menu {
  display: flex;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .in-menu {
    display: block;
  }
  nav#menuCircle .in-menu .sub_item {
    margin-left: 6vw;
  }
}
nav#menuCircle .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  margin-top: 3rem;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .flexWrap {
    display: block;
  }
}
nav#menuCircle .flexWrap .inLeftBox {
  position: relative;
  -webkit-flex-basis: 32rem;
  flex-basis: 32rem;
  margin-bottom: 0;
  padding-right: 3rem;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .flexWrap .inLeftBox {
    margin-bottom: 3rem;
  }
}
nav#menuCircle .flexWrap .inLeftBox .inininin {
  border: 1px solid #fff;
  padding: 2rem 1rem;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}
nav#menuCircle .flexWrap .inRightBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
nav#menuCircle .flexWrap .inRightBox .ininin {
  color: #fff;
}
nav#menuCircle .flexWrap .inRightBox .ininin p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
}
nav#menuCircle .flexWrap .inRightBox .ininin dl {
  letter-spacing: 0.1rem;
}
nav#menuCircle .flexWrap .inRightBox .ininin dl dt {
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.4rem;
}
nav#menuCircle .flexWrap .inRightBox .ininin dl dt a {
  color: #fff;
  font-family: "Amiri", serif;
}
nav#menuCircle .flexWrap .inRightBox .ininin dl dd {
  font-size: 1.7rem;
  line-height: 2.4rem;
}
nav#menuCircle .sub_btn {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  font-family: ltc-goudy-oldstyle-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.16em;
  display: block;
  margin-right: 25px;
  margin-bottom: 2.5vh;
}
@media only screen and (max-width: 1100px) {
  nav#menuCircle .sub_btn {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .sub_btn {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 380px) {
  nav#menuCircle .sub_btn {
    margin-top: 1vh;
    margin-right: 0px;
  }
}
nav#menuCircle .inMotion {
  transform: translate3d(0, 100px, 0);
}
nav#menuCircle .leftMenu {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .leftMenu {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .leftMenu .maru {
    margin-right: 0rem;
  }
}
nav#menuCircle .leftMenu .menu_list li {
  padding-right: 25px;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .leftMenu .menu_list li {
    padding-right: 0;
  }
}
nav#menuCircle .rightMenu {
  margin-left: 5%;
  width: 26%;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .rightMenu {
    margin-top: 4rem;
    margin-left: 0%;
    width: 100%;
  }
}
nav#menuCircle .rightMenu .inRight .menuInA {
  width: 11rem;
  margin: 0 auto 4rem;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .rightMenu .inRight .menuInA {
    display: none;
  }
}
nav#menuCircle .rightMenu .inRight .menuInA a {
  display: block;
}
nav#menuCircle .rightMenu .inRight .mypageBtnD a {
  padding: 3rem 4rem;
  background: #005ab7;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.4rem;
  transition: all 0.4s;
}
nav#menuCircle .rightMenu .inRight .mypageBtnD a:hover {
  opacity: 0.8;
}
nav#menuCircle .news_body {
  width: 360px;
  margin: 15px 0 0 100px;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .news_body {
    width: 100%;
    margin: 35px 0px 0 0px;
    padding: 0 40px;
  }
}
nav#menuCircle .news_body .title {
  overflow: hidden;
  margin: 0 0 35px;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .news_body .title {
    margin: 0 0 15px;
  }
}
nav#menuCircle .news_body .title span {
  display: inline-block;
  position: relative;
  padding-right: 95px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #999;
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .news_body .title span {
    font-size: 1.4rem;
  }
}
nav#menuCircle .news_body .title span:after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #999;
}
nav#menuCircle .news_body li {
  overflow: hidden;
  margin: 0 0 20px;
}
nav#menuCircle .news_body li a {
  display: inline-block;
  text-decoration: none;
}
nav#menuCircle .news_body li a span {
  display: block;
  margin: 0 0 3px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #999;
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (max-width: 768px) {
  nav#menuCircle .news_body li a span {
    font-size: 12px;
  }
}
nav#menuCircle .news_body li a time {
  display: block;
  letter-spacing: 0.025em;
  color: #999;
}

/*=========================================================*/
/*	FOOTER*/
/*=========================================================*/
footer {
  position: relative;
}
footer .footerTopMenu ._in .inMenu {
  border-top: 1px solid #005ab7;
  text-align: center;
  padding: 3rem 0;
}
@media only screen and (max-width: 768px) {
  footer .footerTopMenu ._in .inMenu {
    display: none;
  }
}
footer .footerTopMenu ._in .inMenu ul {
  display: inline-block;
  text-align: center;
}
footer .footerTopMenu ._in .inMenu ul li {
  display: inline-block;
}
footer .footerTopMenu ._in .inMenu ul li a {
  display: inline-block;
  padding: 2rem 2rem 0 2rem;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.1rem;
}
footer .footerTopMenu ._in .inMenu ul li a::before {
  content: "";
  background: #005ab7;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
footer .footerTopMenu ._in .footer__wrap {
  position: relative;
  z-index: 0;
}
footer .footerTopMenu ._in .footer__wrap::before {
  position: absolute;
  right: 5rem;
  content: "";
  width: 100vw;
  height: 100%;
  background: #eee;
  z-index: -1;
  right: 10rem;
  border-radius: 0 10rem 0 0;
  -webkit-border-radius: 0 10rem 0 0;
  -moz-border-radius: 0 10rem 0 0;
}
footer .footerTopMenu ._in .footer__wrap .footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  footer .footerTopMenu ._in .footer__wrap .footer__inner {
    display: block;
    padding: 5rem 0;
  }
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info {
  position: relative;
  -webkit-flex-basis: 34rem;
  flex-basis: 34rem;
  margin-bottom: 0;
  padding: 0 5rem 0 0;
}
@media only screen and (max-width: 768px) {
  footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info {
    margin-bottom: 3rem;
    padding: 0;
  }
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-logo {
  width: 28rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-logo {
    width: 28rem;
    margin: 0 auto 4rem;
  }
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-logo a {
  display: block;
}
@media only screen and (max-width: 768px) {
  footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-add {
    /* text-align: center; */
    width: 26rem;
    margin: 0 auto;
  }
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-add .footer-add__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.1rem;
  margin-bottom: 1rem;
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-add .footer-add__txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-add .footer-tel {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-add .footer-tel a {
  color: #000;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.1rem;
  letter-spacing: 0.08rem;
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-add .footer-tel a .numnum {
  font-size: 2.4rem;
  font-weight: bold;
  display: inline;
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-info .footer-add .footer-add__link a {
  position: relative;
  color: #003894;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  background: #fff;
  padding: 1rem 3rem;
  border-radius: 5rem;
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-schedule {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-schedule {
    margin-bottom: 4rem;
  }
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-schedule .footer-schedule__catch {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.1rem;
}
footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-schedule .footer-schedule-caution {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.1rem;
}
@media only screen and (max-width: 768px) {
  footer .footerTopMenu ._in .footer__wrap .footer__inner .footer-schedule .footer-schedule-caution {
    margin-top: 2rem;
  }
}
footer .footerTopMenu ._in .footer__wrap .copy {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime .tbl_scroll {
    overflow-y: scroll;
  }
}
footer .profileIn .footerDTime table {
  width: 100%;
  border-bottom: 1px solid #333;
  margin: 2rem 0 2rem 0;
  text-align: center;
}
footer .profileIn .footerDTime table .fs9 {
  font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime table {
    width: 516px;
  }
}
footer .profileIn .footerDTime table tr th {
  color: #222;
  font-weight: normal;
  font-size: 1.4rem;
  padding: 2rem 0;
  text-align: center;
}
footer .profileIn .footerDTime table tr th:first-child {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime table tr th:first-child {
    width: 150px;
  }
}
footer .profileIn .footerDTime table tr td {
  font-weight: normal;
  padding: 2rem 0;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime table tr td {
    text-align: center;
    font-size: 12px !important;
  }
}
footer .profileIn .footerDTime table tr td:last-child {
  border-right: none;
  font-size: 1.6rem !important;
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime table tr td:last-child {
    text-align: center;
    font-size: 12px !important;
  }
}
footer .profileIn .footerDTime table tr td:first-child {
  font-size: 1.6rem !important;
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime table tr td:first-child {
    font-size: 12px !important;
  }
}
footer .profileIn .footerDTime table tr:first-child th {
  border-top: 1px solid #333;
}
footer .profileIn .footerDTime table tr:last-child td {
  border-top: 1px solid #333;
}
footer .profileIn .footerDTime table tr td:nth-child(5) {
  font-size: 1.6rem !important;
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime table tr td:nth-child(5) {
    font-size: 12px !important;
  }
}
footer .profileIn .footerDTime p {
  text-align: left;
  color: #ddd;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime p {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 768px) {
  footer .profileIn .footerDTime .tbl_scroll {
    width: 100%;
    margin: 0px auto 0px;
    overflow: auto;
  }
  footer .profileIn .footerDTime .tbl_scroll:before {
    content: "※表はタッチして横移動できます。";
    color: #333;
    text-align: left;
    display: block;
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  /*<start>==========================================================*/
  body {
    font-size: 80%;
  }
  .sp,
  br.s {
    display: none !important;
  }
  .text {
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 0.04em;
  }
  .text00 {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: 500;
    font-feature-settings: "palt" 1;
  }
  .text01 {
    font-size: 1.6rem;
    line-height: 3.6rem;
    font-weight: 500;
    font-feature-settings: "palt" 1;
  }
  .text02 {
    font-size: 1.6rem;
    line-height: 3.6rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
    font-feature-settings: "palt" 1;
  }
  .text03 {
    font-size: 1.6rem;
    line-height: 3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .text14 {
    font-size: 1.3rem;
    line-height: 2.3rem;
    letter-spacing: 0.04em;
  }
  .text13 {
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }
  /*=========================================================*/
  /*	○○○*/
  /*=========================================================*/
  /*	○○○○
  ---------------------------------------------------------------*/
  /*	○○○○○
  -----------------------------------------------------------*/
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  html {
    font-size: 75%;
  }
  body {
    font-size: 0.9rem;
  }
  html,
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
  }
  .pc,
  br.p {
    display: none !important;
  }
  .text00 {
    font-size: 1.6rem;
    line-height: 2.7rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
  }
  .text01 {
    font-size: 1.6rem;
    line-height: 3.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .text02 {
    font-size: 1.6rem;
    line-height: 3.4rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
  }
  .text03 {
    font-size: 1.6rem;
    line-height: 3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .text,
  .text16 {
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: 0.04em;
  }
  .text14 {
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.02em;
  }
  img {
    width: 100%;
    height: auto;
  }
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.980644vw;
  }
}
@media screen and (min-width: 769px) {
  /*PC <start>==========================================================*/
  html {
    font-size: 0.7806442167vw;
  }
  body {
    font-size: 1.6rem;
  }
  .sp,
  br.s {
    display: none !important;
  }
  /*<end>============================================================*/
}
@media screen and (min-width: 1401px) {
  /*<start>==========================================================*/
  html {
    font-size: 63.5%;
  }
  /*<end>============================================================*/
}