@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap);
.t-color1 {
  color: #E58D00;
}

.t-color2 {
  color: #FFEB31;
}

/* テンプレファイル */
/* 一括指定、すべてのページに適用するスタイルなどはここに記述 */
/* containerの指定などは全サイト共通にするのでこのファイルを使いまわす。 */
body {
  overflow-x: hidden !important;
  position: relative;
}

.scroll-lock {
  overflow-y: hidden;
}

body .slick-next {
  display: none;
}

/* reCAPTHA関係 */
.grecaptcha-badge {
  visibility: hidden;
}

#reCaptcha {
  font-size: 12px;
  text-align: center;
  margin: 12px 0;
}

#reCaptcha > a {
  color: #005EAD;
}

body {
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ ProN", "メイリオ", "MS UI Gothic", Sans;
  color: #251E1C;
  background-color: #fff;
  line-height: 1.8em;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  text-align: justify;
}

.container-wrap {
  position: relative;
  width: 100%;
}

.container {
  position: relative;
  margin: auto;
}

.container-right,
.container-left {
  position: relative;
}

@media screen and (min-width: 576px) {
  body {
    font-size: 15px;
    line-height: 2em;
  }
  body h1 {
    font-size: 24px;
  }
  body h2 {
    font-size: 18px;
  }
  body h3 {
    font-size: 18px;
  }
  body h4 {
    font-size: 18px;
  }
  .container {
    width: 540px;
    padding: 64px 0;
  }
  .container-right {
    margin-left: calc((100% - 540px) / 2);
    padding: 64px 50px;
  }
  .container-left {
    margin-right: calc((100% - 540px) / 2);
    padding: 64px 50px;
    padding-right: calc((100% - 540px) / 2 + 50px);
  }
  section {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  body h1 {
    font-size: 30px;
  }
  body h2 {
    font-size: 24px;
  }
  body h3 {
    font-size: 20px;
  }
  body h4 {
    font-size: 18px;
  }
  .container {
    width: 740px;
    padding: 64px 0;
  }
  .container-right {
    margin-left: calc((100% - 740px) / 2);
    padding: 64px 50px;
    padding-right: calc((100% - 740px) / 2 + 40px);
  }
  .container-left {
    margin-right: calc((100% - 740px) / 2);
    padding: 64px 50px;
    padding-left: calc((100% - 740px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 960px;
  }
  .container-right {
    margin-left: calc((100% - 960px) / 2);
    padding: 64px 50px;
    padding-right: calc((100% - 960px) / 2);
  }
  .container-left {
    margin-right: calc((100% - 960px) / 2);
    padding: 64px 50px;
    padding-left: calc((100% - 960px) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .container {
    width: 960px;
  }
  .container-right {
    margin-left: calc((100% - 1060px) / 2);
    padding: 64px 50px;
    padding-right: calc((100% - 960px) / 2);
  }
  .container-left {
    margin-right: calc((100% - 1060px) / 2);
    padding: 64px 50px;
    padding-left: calc((100% - 960px) / 2);
  }
}
@media screen and (max-width: 575px) {
  body {
    font-size: 14px;
    line-height: 1.8em;
  }
  body h1 {
    font-size: 24px;
  }
  body h2 {
    font-size: 18px;
  }
  body h3 {
    font-size: 18px;
  }
  body h4 {
    font-size: 16px;
  }
  .container {
    padding: 64px 20px;
  }
  .container-right,
  .container-left {
    border-radius: 0;
    padding: 64px 20px;
  }
}
/*========= ローディング画面 ===============*/
#splash {
  position: fixed;
  display: block;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999999;
  text-align: center;
  top: 0;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash-logo:before {
  content: "";
  width: 284px;
  height: 67px;
  display: block;
  background-image: url(../img/title-logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto 20px;
}

.fadeIn {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 1.5s ease;
}

.fadeIn.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeBottom {
  opacity: 0;
  transform: translate(0, -50%);
  transition: 1.5s ease;
}

.fadeBottom.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeLeft {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1.5s ease;
}

.fadeLeft.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeRight {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1.5s ease;
}

.fadeRight.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/****************** レスポンシブ　非表示 ************************/
@media screen and (min-width: 769px) {
  .sp-hidden {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-hidden {
    display: none !important;
  }
}
/****************** タイトル ************************/
small {
  font-size: 13px;
}

.heading {
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.heading p {
  font-size: 13px;
  text-align: center;
  font-weight: 700;
}
.heading .heading-title {
  font-size: 30px;
  position: relative;
  margin-top: 10px;
  font-weight: 600 !important;
  color: #091429;
  position: relative;
  line-height: 1em;
}
@media only screen and (max-width: 993px) {
  .heading .heading-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .heading .heading-title {
    font-size: 18px;
  }
}
.heading + p {
  margin-top: 64px;
}
.heading .heading-deco {
  display: block;
  line-height: 1.67em;
  position: relative;
  font-weight: 700;
}
.heading .heading-deco:after {
  content: "";
  position: absolute;
  background: url(../img/heading-deco.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 608px;
  height: 73px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .heading .heading-deco:after {
    width: 100%;
    background: url(../img/heading-deco-sp.png);
    background-size: 80% 100%;
    background-position: center;
    background-repeat: no-repeat;
    bottom: -10%;
    height: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .heading .heading-deco:after {
    background-size: 80% 100%;
  }
}
.heading .eng {
  color: #0082c3;
  margin-top: 10px;
  font-size: 13px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .heading .eng {
    margin-top: 0;
  }
}
.heading .btn {
  line-height: 14.5px;
  background: none;
  border: 1px solid #848484;
  color: #848484;
  font-weight: bold;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 12px;
}
@media only screen and (max-width: 768px) {
  .heading .btn {
    margin: 0 auto;
  }
}
.heading a {
  background: linear-gradient(270deg, rgb(237, 141, 42) 0%, rgb(225, 79, 142) 100%);
  border-radius: 10px;
  width: 203px;
}

.heading02 {
  display: flex;
  align-items: flex-start;
}
.heading02 .eng {
  color: #0082c3;
  font-weight: 700;
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .heading02 {
    display: block;
  }
}
.heading02 h1,
.heading02 h2,
.heading02 h3 {
  font-weight: bold;
  position: relative;
  flex: none;
  font-size: 33px;
  position: relative;
}
@media only screen and (max-width: 993px) {
  .heading02 h1,
  .heading02 h2,
  .heading02 h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .heading02 h1,
  .heading02 h2,
  .heading02 h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .heading02 h1,
  .heading02 h2,
  .heading02 h3 {
    font-size: 18px;
  }
}
.heading02 h1:after,
.heading02 h2:after,
.heading02 h3:after {
  margin-left: auto;
  margin-right: auto;
}
.heading02 > div + p {
  margin-left: 30px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .heading02 > div + p {
    margin-left: 0;
  }
}
.heading02 .heading-deco,
.heading02 .heading-deco-short {
  line-height: 1.67em;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.heading02 .heading-deco:after,
.heading02 .heading-deco-short:after {
  content: "";
  position: absolute;
  background: url(../img/heading02-deco.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 264px;
  height: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .heading02 .heading-deco:after,
  .heading02 .heading-deco-short:after {
    left: 0;
    transform: translateX(0);
    height: 44px !important;
  }
}
@media only screen and (max-width: 575px) {
  .heading02 .heading-deco:after,
  .heading02 .heading-deco-short:after {
    height: 31px !important;
  }
}
@media only screen and (max-width: 768px) {
  .heading02 .heading-deco:after {
    width: 180px;
    height: 34px;
  }
}
@media only screen and (max-width: 575px) {
  .heading02 .heading-deco:after {
    background-size: contain;
    width: 149px;
  }
}
.heading02 .heading-deco-short:after {
  width: 133px;
  height: 54px;
  background: url(../img/heading02-deco-02.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.heading03 .heading03-title {
  text-align: center;
  line-height: 1.8em;
}
.heading03 .heading03-title:after {
  content: "";
  display: block;
  margin: 0 auto 40px;
  width: 253px;
  height: 34px;
  background: url(../img/heading03-deco.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.heading04 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.heading04:before {
  content: "";
  display: inline-block;
  height: 19px;
  width: 5px;
  background: #0082c3;
  margin-right: 10px;
}

#news_single .content h2 {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 30px;
}
#news_single .content h2:before {
  content: "";
  display: inline-block;
  align-self: stretch;
  min-width: 5px;
  background: #0082c3;
  margin: 3px 10px 3px 0;
}
#news_single .content h3 {
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #0082c3;
  margin-bottom: 30px;
  margin-top: 40px;
}
#news_single .content strong {
  background: linear-gradient(0, #FFEB31 80%, white 20%);
}
#news_single .content a {
  color: #0082c3;
}

.heading05 {
  padding-bottom: 10px;
  border-bottom: 3px solid #0082c3;
  margin-bottom: 30px;
  margin-top: 40px;
}

.high-light {
  background: #FFEB31;
  font-weight: 700;
}

#page-tag {
  position: relative;
  z-index: 5;
  margin-top: -44px !important;
}

.btn-round_arrow {
  position: relative;
  display: block;
  width: 250px;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 30px;
  background: #E58D00;
  color: #fff;
  font-size: 16px !important;
  line-height: 1.8em !important;
  box-shadow: 2px 2px 0 0 #f1f1f1;
}
.btn-round_arrow:hover {
  opacity: 1;
}
.btn-round_arrow::after, .btn-round_arrow::before {
  transition: 0.3s;
  position: absolute;
  display: block;
  right: 15px;
  content: "";
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
}
.btn-round_arrow::after {
  top: 18px;
  transform: rotate(45deg);
}
.btn-round_arrow::before {
  bottom: 18px;
  transform: rotate(-45deg);
}
.btn-round_arrow:hover::after, .btn-round_arrow:hover::before {
  right: 8px;
}

.btn-round_arrow_02 {
  position: relative;
  display: block;
  width: 250px;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 30px;
  background: #0082c3;
  color: #FFEB31;
  font-size: 16px !important;
  line-height: 1.8em !important;
}
.btn-round_arrow_02:hover {
  opacity: 1;
}
.btn-round_arrow_02::after, .btn-round_arrow_02::before {
  transition: 0.3s;
  position: absolute;
  display: block;
  right: 15px;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #FFEB31;
  border-radius: 3px;
}
.btn-round_arrow_02::after {
  top: 24px;
  transform: rotate(45deg);
}
.btn-round_arrow_02::before {
  transform: rotate(0deg);
  bottom: 17px;
  right: 17px;
  width: 30px;
}
.btn-round_arrow_02:hover::after {
  right: 10px;
}
.btn-round_arrow_02:hover::before {
  right: 12px;
}

.btn-round_arrow_03 {
  position: relative;
  display: block;
  max-width: 250px;
  width: 100%;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 30px;
  background: #0082c3;
  color: #fff;
  font-size: 16px !important;
  line-height: 1.8em !important;
}
.btn-round_arrow_03:hover {
  opacity: 1;
}
.btn-round_arrow_03::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  content: "";
  height: 15px;
  width: 17px;
  background-image: url("../img/btn-arrow-right.svg");
  background-repeat: no-repeat;
  right: 19px;
  top: 18px;
}
.btn-round_arrow_03:hover::after {
  right: 10px;
}

.btn-round_arrow_03-b {
  position: relative;
  display: block;
  max-width: 250px;
  width: 100%;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(270deg, rgb(237, 141, 42) 0%, rgb(225, 79, 142) 100%);
  color: #fff;
  transition: all 0.3s;
  font-size: 16px !important;
  line-height: 1.8em !important;
}
.btn-round_arrow_03-b:before, .btn-round_arrow_03-b:after {
  position: absolute;
  display: block;
  content: "";
  height: 3px;
  width: 10px;
  background: #fff;
  background-image: none;
  right: 19px;
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-round_arrow_03-b:before {
  transform: rotate(45deg);
  top: 20px;
}
.btn-round_arrow_03-b:after {
  transform: rotate(-45deg);
  top: 26px;
}
.btn-round_arrow_03-b:hover:after, .btn-round_arrow_03-b:hover:before {
  right: 10px;
}
.btn-round_arrow_03-b:hover {
  transform: scale(1.05);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.btn-round_arrow_05 {
  position: relative;
  display: block;
  width: 280px;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  background: #091429;
  color: #fff;
  font-size: 18px !important;
  line-height: 1.8em !important;
  font-weight: 500;
  letter-spacing: .2em;
}
.btn-round_arrow_05 span {
  width: 13px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition: all 0.3s;
}
.btn-round_arrow_05:hover {
  opacity: 1;
}
.btn-round_arrow_05::after, .btn-round_arrow_05::before {
  transition: 0.3s;
  position: absolute;
  display: block;
  right: 15px;
  content: "";
  width: 16px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}
.btn-round_arrow_05::after {
  top: 20px;
  transform: rotate(45deg);
}
.btn-round_arrow_05::before {
  bottom: 20px;
  transform: rotate(-45deg);
}
.btn-round_arrow_05:hover::after, .btn-round_arrow_05:hover::before {
  right: 8px;
}
.btn-round_arrow_05:hover span {
  width: 15px;
}

.arrow_05 {
  position: relative;
  display: block;
  width: 30px;
  height: 15px;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 30px;
  color: #fff;
}
.arrow_05 span {
  width: 13px;
  height: 3px;
  border-radius: 10px;
  background: #0082c3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.3s;
}
.arrow_05:hover {
  opacity: 1;
}
.arrow_05::after, .arrow_05::before {
  transition: 0.3s;
  position: absolute;
  display: block;
  right: 0;
  content: "";
  width: 13px;
  height: 3px;
  background: #0082c3;
  border-radius: 3px 1px 1px 3px;
}
.arrow_05::after {
  top: 2px;
  transform: rotate(45deg);
}
.arrow_05::before {
  bottom: 2px;
  transform: rotate(-45deg);
}
.arrow_05:hover::after, .arrow_05:hover::before {
  right: 5px;
}
.arrow_05:hover span {
  width: 15px;
}

.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: block;
  padding: 10px 0;
  width: 200px;
  margin: auto;
  text-align: center;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  border-radius: 30px;
  background-color: #f1f1f1;
}

.btn_02 {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: block;
  padding: 6px 0;
  width: 180px;
  margin: auto;
  text-align: center;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  border-radius: 30px;
  color: #0082c3;
  border: 2px solid #0082c3;
  transition: all 0.3s;
}
.btn_02:hover {
  background: #0082c3;
  color: #fff;
  transform: scale(1.1);
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.btn:hover span {
  color: #fff;
}

/*== 背景が流れる（下から上） */
.bgbottom:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #E58D00;
  /*背景色*/
  width: 100%;
  height: 0;
  /*アニメーション*/
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

/*hoverした際の形状*/
.bgbottom:hover:before {
  height: 100%;
  background-color: #E58D00;
}

@media screen and (min-width: 1280px) {
  .header-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .header-fixed {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .header-pc {
    display: none !important;
  }
}
.tel {
  position: relative;
  z-index: 1;
  margin-left: 20px;
  display: block;
  margin-right: 40px;
}

.c-footer-fixed_list .tel {
  margin-left: 0;
  margin-right: 0;
}

.tel .icon-tel-wrap {
  font-size: 38px;
  transition: all 0.3s;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .tel .icon-tel-wrap {
    justify-content: center;
  }
}
.tel .icon-tel-wrap svg {
  margin-right: 6px;
  fill: #E58D00;
}
.tel .icon-tel-wrap span {
  color: #E58D00;
}
.tel .icon-tel-wrap + P {
  font-size: 13px;
  margin-left: 57px;
}

#header {
  position: relative;
  z-index: 999;
  width: 100%;
  transition: all 2s;
}
#header .logo {
  text-align: center;
  float: left;
  height: 147px;
  width: 325px;
  clear: both;
  z-index: 10000;
  padding: 30px;
  position: relative;
  top: 0;
  left: 0;
  letter-spacing: 0;
  color: #0082c3;
  text-align: left;
  line-height: 1.46;
}
@media screen and (max-width: 1515px) {
  #header .logo {
    width: 271px;
    padding: 45px 30px;
    height: 147px;
  }
}
@media only screen and (max-width: 993px) {
  #header .logo {
    width: 181px;
  }
}
#header .logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  z-index: 10000;
}
@media screen and (max-width: 1279px) {
  #header .logo {
    padding: 20px 20px;
    height: 68px;
    width: 200px;
  }
}
#header .header-pc {
  display: block;
  z-index: 500;
  background-color: #fff;
}
#header .header-pc .containerL {
  display: flex;
  align-items: center;
  height: 147px;
  width: -moz-fit-content;
  width: fit-content;
}
#header .header-pc .containerL nav {
  text-align: center;
  width: 525px;
  margin-right: 31px;
  /*下の階層を持っているulの指定*/
  /*hoverしたら表示*/
  /*ナビゲーションaタグの形状*/
}
@media screen and (max-width: 1399px) {
  #header .header-pc .containerL nav {
    width: 488px;
  }
}
#header .header-pc .containerL nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header-pc .containerL nav ul .deco-line {
  width: 1px;
  height: 15px;
  background-color: #0082c3;
  display: inline-block;
}
#header .header-pc .containerL nav ul ul {
  display: block;
}
#header .header-pc .containerL nav ul li {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
#header .header-pc .containerL nav ul li a {
  display: block;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s;
  text-align: left;
  font-weight: 700;
}
#header .header-pc .containerL nav ul li a span {
  color: #848484;
  font-weight: normal;
  font-size: 13px;
}
#header .header-pc .containerL nav ul li a:after {
  content: "";
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: #0082c3;
  display: block;
  transition: all 0.3s;
  position: absolute;
}
#header .header-pc .containerL nav ul li a:hover span {
  color: #0082c3;
}
#header .header-pc .containerL nav ul li a:hover:after {
  right: 30px;
  padding-right: 20px;
}
#header .header-pc .containerL nav ul li.has-child::before {
  content: "";
  position: absolute;
  right: -10px;
  margin: auto;
  bottom: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #251E1C;
  border-right: 2px solid #251E1C;
  transform: rotate(135deg);
  transition: 0.3s;
}
#header .header-pc .containerL nav ul li.has-child:hover::before {
  border-top: 2px solid #0082c3;
  border-right: 2px solid #0082c3;
  bottom: 10px;
  transition: 0.3s;
}
#header .header-pc .containerL nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: -20px;
  top: 80px;
  z-index: 4;
  /*形状を指定*/
  background: #E58D00;
  width: 180px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}
#header .header-pc .containerL nav li.has-child ul li {
  text-align: left;
  width: 100%;
}
#header .header-pc .containerL nav li.has-child ul li a {
  padding: 10px;
}
#header .header-pc .containerL nav li.has-child:hover > ul,
#header .header-pc .containerL nav li.has-child ul li:hover > ul,
#header .header-pc .containerL nav li.has-child:active > ul,
#header .header-pc .containerL nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
#header .header-pc .containerL nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
#header .header-pc .containerL nav li.has-child ul li:last-child a {
  border-bottom: none;
}
#header .header-pc .containerL nav li.has-child ul li a:hover,
#header .header-pc .containerL nav li.has-child ul li a:active {
  background: #f1f1f1;
  color: #251E1C;
}
#header .header-pc .containerR {
  position: absolute;
  top: 0;
  right: 0;
  padding: 18px;
  padding-left: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*==ナビゲーション全体の設定*/
}
#header .header-pc .containerR:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../img/header-bg.jpg);
  opacity: 0.35;
}
@media only screen and (min-width: 1400px) {
  #header .header-pc .containerR {
    padding-left: 3%;
  }
}
@media screen and (max-width: 1399px) {
  #header .header-pc .containerR .tel {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1399px) {
  #header .header-pc .containerR .tel .icon-tel-wrap {
    font-size: 30px;
  }
  #header .header-pc .containerR .tel .icon-tel-wrap + P {
    margin-left: 0;
  }
}
@media screen and (max-width: 1399px) {
  #header .header-pc .containerR .tel svg {
    width: 30px;
    height: 30px;
  }
}
#header .header-pc .containerR .access {
  position: relative;
  z-index: 1;
  font-size: 13px;
  text-align: center;
  width: 60px;
  height: 60px;
  background: #E58D00;
  border-radius: 50%;
  margin-right: 20px;
  margin-bottom: 2em;
  transition: all 0.3s;
}
#header .header-pc .containerR .access svg {
  height: 31px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  fill: #fff;
}
#header .header-pc .containerR .access:hover {
  transform: scale(1.08);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#header .header-pc .containerR .access::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -2.5em;
  color: #E58D00;
  font-weight: bold;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#header .header-pc .containerR .calendar-icon::after {
  content: "営業日";
}
#header .header-pc .containerR .contact-icon::after {
  content: "お問合せ";
}
#header .header-pc .containerR .estimate-icon::after {
  content: "お見積";
}
#header .header-sp {
  position: relative;
  z-index: 998;
  top: 0;
  height: 68px;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(187, 187, 187, 0.37);
  /*×に変化*/
}
#header .header-sp .telbtn,
#header .header-sp .mailbtn,
#header .header-sp .openbtn1 {
  position: absolute;
  width: 68px;
  height: 68px;
  cursor: pointer;
}
#header .header-sp .telbtn {
  top: 0;
  right: 100px;
  background-color: #f1f1f1;
  padding: 10px 0;
}
#header .header-sp .telbtn > img {
  display: block;
  width: 50%;
  margin: auto;
}
#header .header-sp .mailbtn {
  top: 0;
  right: 50px;
  background-color: #0082c3;
  padding: 14px 0;
}
#header .header-sp .mailbtn > img {
  display: block;
  width: 50%;
  margin: auto;
}
#header .header-sp .openbtn1 {
  z-index: 9999;
  top: 0;
  right: 0;
  margin-left: auto;
}
#header .header-sp .openbtn1 span {
  display: inline-block;
  position: absolute;
  right: 20px;
  height: 3px;
  border-radius: 2px;
  background-color: #0082c3;
  width: 40%;
}
#header .header-sp .openbtn1 span:nth-of-type(1) {
  top: 21px;
}
#header .header-sp .openbtn1 span:nth-of-type(2) {
  top: 32px;
}
#header .header-sp .openbtn1 span:nth-of-type(3) {
  top: 43px;
}
#header .header-sp .openbtn1.active span {
  background-color: #0082c3;
}
#header .header-sp .openbtn1.active span:nth-of-type(1) {
  top: 25px;
  right: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
#header .header-sp .openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
#header .header-sp .openbtn1.active span:nth-of-type(3) {
  top: 37px;
  right: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
#header .header-sp .containerR {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  margin-right: 68px;
}
@media only screen and (max-width: 768px) {
  #header .header-sp .containerR {
    display: none;
  }
}
#header .header-sp .containerR .access {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  background: #E58D00;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}
#header .header-sp .containerR .access svg {
  fill: #fff;
  width: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#header .header-sp #g-nav_sp {
  position: fixed;
  z-index: 1111;
  right: -100vw;
  width: 100%;
  top: 68px;
  height: 100%;
  color: #fff;
  background: #0082c3;
  transition: all 0.6s;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
#header .header-sp #g-nav_sp p {
  height: 50px;
  font-weight: 700;
  padding: 14px 0 0 10px;
}
#header .header-sp #g-nav_sp > p {
  background: #0082c3;
}
#header .header-sp #g-nav_sp > ul > li {
  border-bottom: 1px solid #fff;
}
#header .header-sp #g-nav_sp > ul > li > a {
  display: block;
  padding: 10px 10px;
}
#header .header-sp #g-nav_sp > ul > li .has-child {
  font-weight: 400;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
#header .header-sp #g-nav_sp > ul > li .has-child::before, #header .header-sp #g-nav_sp > ul > li .has-child::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  top: 23px;
  right: 15px;
  transition: 0.3s;
  background-color: #fff;
}
#header .header-sp #g-nav_sp > ul > li .has-child::before {
  transform: rotate(0deg);
}
#header .header-sp #g-nav_sp > ul > li .has-child::after {
  transform: rotate(90deg);
}
#header .header-sp #g-nav_sp > ul > li .has-child.close {
  background-color: #0082c3;
  transition: 0.3s;
}
#header .header-sp #g-nav_sp > ul > li .has-child.close::after {
  transform: rotate(0deg);
}
#header .header-sp #g-nav_sp > ul > li .child {
  display: none;
  background-color: #0082c3;
}
#header .header-sp #g-nav_sp > ul > li .child > li {
  transition: 0.3s;
  border-top: 1px solid #fff;
}
#header .header-sp #g-nav_sp > ul > li .child > li > a {
  padding: 10px 9px;
  padding-left: 25px;
  display: block;
}
#header .header-sp #g-nav_sp > ul > li .show-subnav {
  display: block !important;
}
#header .header-sp #g-nav_sp > ul + div {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
#header .header-sp #g-nav_sp > ul + div .access {
  width: 52px;
  height: 52px;
  position: relative;
  background: #E58D00;
  border-radius: 100%;
  margin-right: 10px;
}
#header .header-sp #g-nav_sp > ul + div .access:last-child {
  background: #20C755;
  margin-right: 0;
}
#header .header-sp #g-nav_sp > ul + div .access svg {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#header .header-sp #g-nav_sp .tel {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 126px;
  letter-spacing: 0;
}
#header .header-sp #g-nav_sp .tel p {
  padding: 0;
}
#header .header-sp #g-nav_sp .tel .icon-tel-wrap + P {
  font-weight: normal;
}
#header .header-sp #g-nav_sp.panelactive {
  top: 68px;
  right: 0px;
}

.header-fixed {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  width: 100vw;
  background-color: #E58D00;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
}
.header-fixed:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/pattern.jpg);
  background-position: left -10px top;
  opacity: 0.35;
}
.header-fixed .container {
  position: relative;
  z-index: 1;
  height: 63px;
  width: auto;
  padding: 0;
}
.header-fixed .container .inner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.header-fixed .container .inner .deco-line {
  min-width: 1px;
  height: 63px;
  background-color: #fff;
  display: block;
  z-index: 1;
}
.header-fixed .container .inner .access {
  text-align: center;
  font-size: 13px;
  color: #fff;
  line-height: 1.5em;
  width: 100%;
  align-self: stretch;
}
.header-fixed .container .inner .access:nth-last-of-type(2) {
  background: #20C755;
}
.header-fixed .container .inner .access:last-of-type {
  background: #0082c3;
}
.header-fixed .container .inner .access img {
  width: 28px;
}
.header-fixed .container .inner .access svg {
  fill: #fff;
  height: 25px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.background-dark {
  background-color: #fff !important;
}

#header.HeightMin {
  position: fixed;
  z-index: 999999;
  /*最前面へ*/
  animation: DownAnime 1s;
  top: 0;
}

@media only screen and (min-width: 768px) {
  @keyframes DownAnime {
    from {
      opacity: 0;
      transform: translateY(-200px);
    }
    to {
      opacity: 1;
      transform: translateY(-1px);
    }
  }
}
#mainvisual {
  position: relative;
  padding-top: 0;
}
#mainvisual .container-wrap:first-child {
  background: #0082c3;
}
#mainvisual .container-wrap:first-child .container {
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #mainvisual .container-wrap:first-child .container {
    padding-top: 32px;
  }
}
#mainvisual .container-wrap:first-child .container .main-title {
  text-align: center;
}
#mainvisual .container-wrap:first-child .container .main-title .title {
  color: #fff;
  display: block;
  line-height: 1.8em;
}
@media only screen and (min-width: 768px) {
  #mainvisual .container-wrap:first-child .container .main-title .title {
    font-size: 35px;
  }
}
@media screen and (min-width: 1280px) {
  #mainvisual .container-wrap:first-child .container .main-title .title br {
    display: none;
  }
}
#mainvisual .container-wrap:first-child .container .main-title .text {
  color: #fff;
  font-size: 15px;
  display: block;
}
@media only screen and (max-width: 768px) {
  #mainvisual .container-wrap:first-child .container .main-title .text {
    text-align: left;
    font-size: 14px;
  }
}
#mainvisual .container-wrap:first-child .container .main-title + div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#mainvisual .container-wrap:first-child .container .main-title + div a {
  display: inline-block;
  color: #fff;
  margin: 40px 20px 0;
}
#mainvisual .container-wrap:first-child .container .main-title + div a:first-child {
  background: #0054A8;
}
#mainvisual .container-wrap:first-child .container .main-title + div a:last-child {
  background: #E58D00;
}
#mainvisual .container-wrap:first-child .container .main-title:before {
  content: "";
  width: 195px;
  height: 231px;
  position: absolute;
  left: -68px;
  top: 37px;
  background: url(../img/main-visual-deco-img-01.png);
  background-size: contain;
}
@media screen and (max-width: 1279px) {
  #mainvisual .container-wrap:first-child .container .main-title:before {
    width: 110px;
    height: 130px;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  #mainvisual .container-wrap:first-child .container .main-title:before {
    width: 76px;
    height: 90px;
    position: relative;
    display: block;
    top: 0;
    left: 0;
    margin: 0 auto 20px;
  }
}
#mainvisual .container-wrap:last-child {
  overflow-x: hidden;
}
@media screen and (max-width: 1600px) {
  #mainvisual .container-wrap:last-child #mainvisual-multiple-items {
    width: 1742px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 575px) {
  #mainvisual .container-wrap:last-child #mainvisual-multiple-items {
    width: 1089px;
  }
}
#mainvisual .container-wrap:last-child > .deco-image-box {
  width: 100%;
  background: #0082c3;
  position: absolute;
  top: 0;
  padding-top: 64px;
}
#mainvisual .container-wrap:last-child > .deco-image-box img {
  width: 100%;
  height: auto;
  position: relative;
  bottom: -1px;
}
#mainvisual .container-wrap:last-child .slick-list {
  overflow: visible !important;
}
#mainvisual .container-wrap:last-child .slick-current {
  transform: rotate(-8deg);
  top: 72px;
  right: 68px;
}
#mainvisual .container-wrap:last-child .slick-current + .slick-active {
  transform: rotate(-4deg);
  top: 20px;
  right: 30px;
}
#mainvisual .container-wrap:last-child .slick-current + .slick-active + .slick-active + .slick-active {
  transform: rotate(4deg);
  top: 20px;
  left: 30px;
}
#mainvisual .container-wrap:last-child .slick-current + .slick-active + .slick-active + .slick-active + .slick-active {
  transform: rotate(8deg);
  top: 72px;
  left: 68px;
}
#mainvisual .container-wrap:last-child .inner .image-box {
  width: 293px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 10px 10px #0054A8;
  margin: 0 10px;
}
#mainvisual .container-wrap:last-child .inner .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#mainvisual .container-wrap:last-child .inner .image-box:after {
  content: "";
  display: block;
  padding-top: 137%;
}

#sub-mainvisual {
  background: #0082c3;
  padding-top: 0;
  position: relative;
}
#sub-mainvisual:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: url(../img/mainvisual-deco-bottom.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 1980px;
}
@media only screen and (min-width: 1400px) {
  #sub-mainvisual:after {
    background-size: 1980px;
  }
}
@media only screen and (max-width: 768px) {
  #sub-mainvisual:after {
    background-position: bottom center;
  }
}
#sub-mainvisual:before {
  content: " ";
  position: absolute;
  width: 194px;
  height: 230px;
  background: url(../img/main-visual-deco-img-01.png) no-repeat;
  right: 0;
  top: 70px;
  background-size: contain;
  opacity: 0.5;
}
@media only screen and (max-width: 768px) {
  #sub-mainvisual:before {
    width: 76px;
    height: 90px;
    top: auto;
    bottom: 85px;
  }
}
#sub-mainvisual .heading div {
  color: #E58D00;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#sub-mainvisual .heading .heading-title {
  color: #fff;
  font-weight: 500;
}
#sub-mainvisual .container-wrap .deco-image-box {
  height: 88px;
  position: relative;
  top: 0;
  padding-top: 64px;
  z-index: 2;
  overflow: hidden;
}
#sub-mainvisual .container-wrap .deco-image-box img {
  width: 100%;
  min-width: 600px;
  height: 88px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
}

#page-tag .container {
  padding-top: 0;
  padding-bottom: 0;
  text-align: right;
}

#front_news_page {
  padding-top: 64px;
}
#front_news_page .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 993px) {
  #front_news_page .container {
    flex-direction: column;
    padding-bottom: 0;
  }
}
#front_news_page .inner {
  display: none;
  opacity: 0;
  margin-left: 0px;
  margin-top: 40px;
  width: 100%;
  max-width: 644px;
}
@media only screen and (min-width: 992px) {
  #front_news_page .inner {
    margin-left: 40px;
    margin-top: 0px;
  }
}
#front_news_page .inner article {
  padding-bottom: 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
  position: relative;
  left: 0;
  border-bottom: 1px solid #D5D5D5;
}
#front_news_page .inner article:last-child {
  margin-bottom: 0;
}
#front_news_page .inner article .image-box {
  margin-right: 30px;
  max-width: 82px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#front_news_page .inner article .image-box:after {
  content: "";
  display: block;
  padding-top: 100%;
}
#front_news_page .inner article .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#front_news_page .inner article a {
  align-items: center;
  display: flex;
}
#front_news_page .heading02 {
  margin-bottom: 53px;
}
@media only screen and (max-width: 768px) {
  #front_news_page .heading02 {
    margin-bottom: 20px;
  }
}
#front_news_page .tab li:not(:first-child) {
  color: #848484;
  font-weight: bold;
}
@media only screen and (max-width: 993px) {
  #front_news_page .tab li:not(:first-child) {
    display: inline-block;
    margin-right: 20px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 350px) {
  #front_news_page .tab li:not(:first-child) {
    margin-right: 10px;
  }
}
#front_news_page .tab li:not(:first-child):last-child {
  margin-right: 0px;
}
#front_news_page .tab li:not(:first-child).active {
  color: #251E1C;
}
#front_news_page .btn-round_arrow_05 {
  background: none;
  color: #0082c3 !important;
  align-self: flex-start;
  width: 150px;
  display: block;
  top: 310px;
  text-align: left;
  position: absolute;
}
@media only screen and (max-width: 993px) {
  #front_news_page .btn-round_arrow_05 {
    position: relative;
    margin-left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  #front_news_page .btn-round_arrow_05 {
    margin-left: 0;
    transform: scale(0.85);
  }
}
#front_news_page .btn-round_arrow_05 span, #front_news_page .btn-round_arrow_05:after, #front_news_page .btn-round_arrow_05:before {
  background: #0082c3;
}
#front_news_page .inner.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#news_page .inner article .text-box .time,
#front_news_page .inner article .text-box .time {
  color: #848484;
  font-size: 13px;
}
#news_page .inner article .text-box .category,
#front_news_page .inner article .text-box .category {
  margin-left: 20px;
  color: #E58D00;
}
#news_page .inner article .text-box h3,
#front_news_page .inner article .text-box h3 {
  font-size: 15px;
}

#news_page .heading02 {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #news_page .heading02 {
    flex-direction: column;
  }
}
#news_page .heading02 span {
  color: #f1f1f1;
  margin-left: 20px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "游明朝体", "MS明朝", "MSP明朝", serif;
}
#news_page .heading02 .btn-round_arrow_03-b {
  background: #E58D00;
}
@media only screen and (min-width: 768px) {
  #news_page .heading02 .btn-round_arrow_03-b {
    margin: 0;
    margin-left: auto;
  }
}
#news_page .inner {
  display: flex;
  flex-wrap: wrap;
}
#news_page .inner article {
  width: 100%;
}
#news_page .inner article a {
  position: relative;
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 30px;
  position: relative;
  transition: all 0.3s;
  left: 0;
}
#news_page .inner article a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #D5D5D5;
}
#news_page .inner article .image-box {
  width: 90px;
  min-width: 90px;
  height: 90px;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}
#news_page .inner article .image-box:after {
  content: "";
  display: block;
  padding-top: 100%;
}
#news_page .inner article .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#news_page .inner h3 {
  font-size: 13px;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ ProN", "メイリオ", "MS UI Gothic", Sans;
}

#point {
  margin-bottom: 64px;
}
#point .container-left {
  background: #f1f1f1;
  background-image: url(../img/bg-pattern-03.svg);
  background-repeat: repeat;
  position: relative;
  border-radius: 0 15px 15px 0;
}
@media only screen and (min-width: 768px) {
  #point .container-left {
    padding-top: 0px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) {
  #point .container-left {
    padding-top: 45px;
  }
}
@media only screen and (max-width: 768px) {
  #point .container-left {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
#point .container-left .inner {
  display: flex;
  align-items: center;
  padding-top: 50px;
}
@media only screen and (max-width: 768px) {
  #point .container-left .inner {
    display: block;
    margin-left: 0;
    border-radius: 0;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  #point .container-left .inner {
    border-radius: 0;
  }
}
#point .container-left .innerL {
  position: relative;
}
#point .container-left .innerL .image-box {
  position: relative;
  overflow: hidden;
  width: 415px;
  border-radius: 15px;
}
@media only screen and (max-width: 993px) {
  #point .container-left .innerL .image-box {
    position: relative;
    width: 275px;
  }
}
@media only screen and (max-width: 768px) {
  #point .container-left .innerL .image-box {
    width: 100%;
    max-width: 415px;
    margin: 0 auto;
  }
}
#point .container-left .innerL .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#point .container-left .innerL .image-box:after {
  content: "";
  display: block;
  padding-top: 69%;
}
#point .container-left .innerL .image-box:first-of-type {
  z-index: 2;
}
#point .container-left .innerL .image-box:last-of-type {
  background: #0082c3;
  transform: rotate(7deg);
  transform-origin: bottom right;
}
@media only screen and (max-width: 993px) {
  #point .container-left .innerL .image-box:last-of-type {
    width: 275px;
  }
}
@media only screen and (max-width: 768px) {
  #point .container-left .innerL .image-box:last-of-type {
    width: 100%;
  }
}
#point .container-left .innerL .image-box-shadow {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 768px) {
  #point .container-left .innerL .image-box-shadow {
    width: 72vw;
    max-width: 363px;
  }
}
#point .container-left .innerR {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 62px;
}
#point .container-left .innerR .heading {
  text-align: left;
}
@media only screen and (max-width: 993px) {
  #point .container-left .innerR .heading {
    margin-top: 40px;
  }
}
#point .container-left .innerR .heading h2 {
  line-height: 1.79em;
  font-weight: 700;
  font-size: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #point .container-left .innerR .heading h2 {
    font-size: 18px;
    text-align: center;
  }
}
#point .container-left .innerR .heading h2 + p {
  text-align: left;
}
#point .container-left .innerR .heading + P {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  #point .container-left .innerR {
    margin-left: 0px;
  }
}
#point .container-left .slick-dots {
  margin-top: 20px;
}

.blockE a {
  position: relative;
}
.blockE .inner {
  overflow: hidden;
}
.blockE .inner .image-box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.blockE .inner .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.blockE .inner .image-box:after {
  content: "";
  display: block;
  padding-top: 46.8%;
}
.blockE .inner .text-box {
  padding: 20px 40px 40px;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .blockE .inner .text-box {
    padding: 30px 20px;
  }
}
.blockE .inner .text-box .time {
  font-size: 13px;
  color: #848484;
}
.blockE .inner .text-box .time + h3 {
  margin-top: 20px;
}
.blockE .inner .text-box .hashtag {
  font-size: 14px;
}
.blockE .inner .text-box .hashtag .deco:after {
  content: "／";
  display: inline-block;
}
.blockE .inner .text-box .hashtag .deco:last-of-type:after {
  display: none;
}
.blockE .inner .text-box h3 {
  text-align: left;
  font-size: 20px;
  line-height: 2em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .blockE .inner .text-box h3 {
    font-size: 20px;
  }
}
.blockE .inner .text-box h3 + p {
  margin-top: 5px;
}
.blockE .inner .text-box address {
  text-align: center;
}
.blockE .inner .text-box address span {
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .blockE .inner .text-box address span {
    margin-left: 0;
    display: block;
  }
}

#lineup .container-wrap .container,
#service .container-wrap .container,
#guide .container-wrap .container {
  padding-top: 40px;
  padding-bottom: 0;
}
#lineup .container-right,
#service .container-right,
#guide .container-right {
  position: relative;
}
@media only screen and (max-width: 768px) {
  #lineup .container-right,
  #service .container-right,
  #guide .container-right {
    margin-left: 0;
    padding-top: 40px;
  }
}
#lineup .container-right:after,
#service .container-right:after,
#guide .container-right:after {
  content: "";
  background: #f1f1f1;
  position: absolute;
  left: 0;
  right: 0;
  top: 174px;
  bottom: 174px;
  z-index: -1;
  border-radius: 15px 0 0 15px;
}
@media only screen and (max-width: 768px) {
  #lineup .container-right:after,
  #service .container-right:after,
  #guide .container-right:after {
    border-radius: 0;
    bottom: 0px;
  }
}
#lineup .heading02 h2:after,
#service .heading02 h2:after,
#guide .heading02 h2:after {
  margin-bottom: 0;
}
#lineup .blockE,
#service .blockE,
#guide .blockE {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #lineup .blockE,
  #service .blockE,
  #guide .blockE {
    max-width: 540px;
    margin: auto;
  }
}
#lineup .blockE .inner,
#service .blockE .inner,
#guide .blockE .inner {
  width: 48%;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}
@media only screen and (max-width: 768px) {
  #lineup .blockE .inner,
  #service .blockE .inner,
  #guide .blockE .inner {
    width: 100%;
    margin-bottom: 0;
  }
}
#lineup .blockE .text-box,
#service .blockE .text-box,
#guide .blockE .text-box {
  flex-grow: 1;
  background: #0082c3;
  color: #fff;
}
#lineup .blockE .text-box h3,
#service .blockE .text-box h3,
#guide .blockE .text-box h3 {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  #lineup .blockE,
  #service .blockE,
  #guide .blockE {
    display: flex;
    flex-wrap: wrap;
  }
  #lineup .blockE > a,
  #service .blockE > a,
  #guide .blockE > a {
    width: 48%;
  }
  #lineup .blockE > a:first-child, #lineup .blockE > a:nth-of-type(2),
  #service .blockE > a:first-child,
  #service .blockE > a:nth-of-type(2),
  #guide .blockE > a:first-child,
  #guide .blockE > a:nth-of-type(2) {
    margin-bottom: 40px;
  }
  #lineup .blockE > a .inner,
  #service .blockE > a .inner,
  #guide .blockE > a .inner {
    width: 100%;
    height: 100%;
  }
}
#lineup .blockE .inner,
#service .blockE .inner,
#guide .blockE .inner {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}
#lineup .blockE .inner:after,
#service .blockE .inner:after,
#guide .blockE .inner:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0082c3;
  opacity: 0;
  transition: all 0.3s;
}
#lineup .blockE > a .btn-round_arrow_05,
#service .blockE > a .btn-round_arrow_05,
#guide .blockE > a .btn-round_arrow_05 {
  display: none;
  position: absolute;
  z-index: 1;
  background: none;
  left: 45%;
  margin-top: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
#lineup .blockE > a:hover .inner:after,
#service .blockE > a:hover .inner:after,
#guide .blockE > a:hover .inner:after {
  content: "";
  opacity: 0.9;
}
#lineup .blockE > a:hover .btn-round_arrow_05,
#service .blockE > a:hover .btn-round_arrow_05,
#guide .blockE > a:hover .btn-round_arrow_05 {
  display: block;
  top: 50%;
  right: 50%;
}
#lineup .blockE > a:hover .btn-round_arrow_05 span,
#service .blockE > a:hover .btn-round_arrow_05 span,
#guide .blockE > a:hover .btn-round_arrow_05 span {
  right: 53px;
}
#lineup .blockE > a:hover .btn-round_arrow_05:before, #lineup .blockE > a:hover .btn-round_arrow_05:after,
#service .blockE > a:hover .btn-round_arrow_05:before,
#service .blockE > a:hover .btn-round_arrow_05:after,
#guide .blockE > a:hover .btn-round_arrow_05:before,
#guide .blockE > a:hover .btn-round_arrow_05:after {
  right: 38px;
}
#lineup .blockE > a:hover .btn-round_arrow_05:hover::after, #lineup .blockE > a:hover .btn-round_arrow_05:hover::before,
#service .blockE > a:hover .btn-round_arrow_05:hover::after,
#service .blockE > a:hover .btn-round_arrow_05:hover::before,
#guide .blockE > a:hover .btn-round_arrow_05:hover::after,
#guide .blockE > a:hover .btn-round_arrow_05:hover::before {
  right: 38px;
}
#lineup .blockE > a:hover .btn-round_arrow_05:hover span,
#service .blockE > a:hover .btn-round_arrow_05:hover span,
#guide .blockE > a:hover .btn-round_arrow_05:hover span {
  width: 13px;
}

#lineup .text-box h2,
#lineup .text-box h3,
#service .text-box h2,
#service .text-box h3 {
  font-size: 20px;
  text-align: center;
}
#lineup .text-box h2 + p,
#lineup .text-box h3 + p,
#service .text-box h2 + p,
#service .text-box h3 + p {
  margin-top: 20px;
}
#lineup a:first-of-type img, #lineup a:nth-of-type(3) img,
#service a:first-of-type img,
#service a:nth-of-type(3) img {
  -o-object-position: center -35px;
     object-position: center -35px;
}

@media only screen and (max-width: 768px) {
  #service .inner:first-child, #service .inner:nth-of-type(2) {
    margin-bottom: 40px;
  }
}

#lineup .slick-dots {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  #lineup .btn-round_arrow_05 {
    display: none;
  }
}

#guide .blockE > a {
  width: 100%;
  margin-bottom: 40px;
}
#guide .blockE > a:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  #guide .blockE > a {
    width: 48%;
    max-width: 48%;
  }
  #guide .blockE > a:last-of-type {
    margin: 0 auto;
  }
}
#guide .blockE .btn-round_arrow_05 {
  margin-top: 0;
}
#guide .blockE .inner {
  margin-bottom: 0 !important;
}
#guide .blockE .inner .text-box {
  padding: 20px 40px;
}
#guide .blockE .inner .image-box:after {
  padding-top: 72%;
}

.case .case-multiple-items {
  width: 1742px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 575px) {
  .case .case-multiple-items {
    width: 100%;
    left: 0;
    transform: translateX(0);
    padding: 64px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .case .case-multiple-items + .container {
    padding-top: 32px;
  }
}
.case .container-wrap {
  background: #f1f1f1;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  .case .container-wrap .container:first-of-type {
    padding-bottom: 64px;
  }
}
@media only screen and (max-width: 575px) {
  .case .container-wrap .container:first-of-type {
    padding-bottom: 32px;
  }
}
.case .blockE a:hover .image-box img {
  transform: scale(1.1);
}
.case .blockE article {
  opacity: 0.6;
  margin: 0 auto;
  max-width: 480px;
}
@media only screen and (max-width: 575px) {
  .case .blockE article {
    width: 86%;
  }
}
.case .blockE article .hashtag {
  font-size: 15px;
}
.case .blockE .image-box:after {
  padding-top: 60%;
}
.case .blockE .text-box {
  padding: 0;
}
.case .blockE .text-box > h3 {
  font-size: 18px;
  text-align: left;
  letter-spacing: 0;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .case .blockE .text-box > h3 {
    font-size: 16px;
  }
}
.case .blockE .text-box > h3 + P {
  color: #0082c3;
}
.case .btn {
  background: #0082c3;
}
.case .slick-list {
  overflow: visible;
}
.case .slick-current {
  position: relative;
}
.case .slick-current:before {
  background: url(../img/case-deco-01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.case .slick-current:after {
  background: url(../img/case-deco-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
.case .slick-current:before, .case .slick-current:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -40px;
  left: -5px;
  right: -5px;
  bottom: -40px;
}
.case .slick-current article {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .case .btn-round_arrow_05 {
    margin-top: 0;
  }
}

#case {
  margin-bottom: 64px;
}
@media only screen and (max-width: 575px) {
  #case {
    margin-bottom: 0;
  }
}

#column .container-right,
#column-all .container-right {
  overflow-x: hidden;
}
#column .container-right:after,
#column-all .container-right:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #f1f1f1;
  z-index: -1;
  border-radius: 15px 0 0 15px;
  top: 165px;
}
#column .container-right .blockE,
#column-all .container-right .blockE {
  align-items: stretch;
}
#column .container-right .blockE .inner,
#column-all .container-right .blockE .inner {
  border-radius: 15px;
  display: block;
}
@media only screen and (max-width: 993px) {
  #column .container-right .blockE .inner,
  #column-all .container-right .blockE .inner {
    width: 100%;
  }
}
#column .container-right .blockE .inner:hover .image-box img,
#column-all .container-right .blockE .inner:hover .image-box img {
  transform: scale(1.1);
}
#column .container-right .blockE .image-box:after,
#column-all .container-right .blockE .image-box:after {
  padding-top: 50%;
}
#column .container-right .blockE .text-box,
#column-all .container-right .blockE .text-box {
  background: #fff;
  height: 100%;
  line-height: 1.5em;
}
#column .container-right .blockE .text-box h2,
#column .container-right .blockE .text-box h3,
#column-all .container-right .blockE .text-box h2,
#column-all .container-right .blockE .text-box h3 {
  line-height: 1.5em;
  margin-top: 10px;
}
#column .container-right .blockE .text-box .hashtag,
#column-all .container-right .blockE .text-box .hashtag {
  color: #E58D00;
  margin-top: 10px;
  font-size: 13px;
}

#column-all .container-right .blockE .image-box:after {
  padding-top: 61%;
}

#column {
  position: relative;
}
#column .container-wrap {
  position: absolute;
  top: 0;
  z-index: 1;
}
#column .container-wrap .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 993px) {
  #column .container-wrap .container {
    display: block;
  }
}
#column .container-wrap .container .btn-round_arrow_05 {
  background: none;
  color: #0082c3;
  width: 148px;
  text-align: left;
  right: -20px;
  margin: 0;
  margin-top: -30px;
}
@media only screen and (max-width: 993px) {
  #column .container-wrap .container .btn-round_arrow_05 {
    margin-top: 30px;
    display: inline-block;
    margin-left: 85px;
  }
}
@media only screen and (max-width: 402px) {
  #column .container-wrap .container .btn-round_arrow_05 {
    margin-top: 9px;
  }
}
#column .container-wrap .container .btn-round_arrow_05 span {
  background: #0082c3;
}
#column .container-wrap .container .btn-round_arrow_05:before, #column .container-wrap .container .btn-round_arrow_05:after {
  background: #0082c3;
}
#column .container-right {
  padding-right: 0;
  padding-top: 267px;
}
@media only screen and (max-width: 993px) {
  #column .container-right {
    padding-top: 298px;
  }
}
@media only screen and (max-width: 575px) {
  #column .container-right {
    padding-top: 285px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 469px) {
  #column .container-right {
    padding-top: 291px;
  }
}
#column .container-right:after {
  top: 343px;
}
#column .container-right .text-box {
  min-height: 215px;
}
#column .slick-current + .slick-active {
  left: 64px;
}
#column .slick-current + .slick-active + .slick-active {
  left: 128px;
}
#column .slick-prev {
  background: url(../img/arrow-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: calc(100% - 960px + 255px);
  left: auto;
}
@media only screen and (min-width: 1400px) {
  #column .slick-prev {
    right: calc(100% - 960px + 210px);
  }
}
@media only screen and (max-width: 993px) {
  #column .slick-prev {
    left: -40px;
  }
}
@media only screen and (max-width: 575px) {
  #column .slick-prev {
    left: 0;
  }
}
#column .slick-next {
  background: url(../img/arrow-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: calc(100% - 960px + 208px);
}
@media only screen and (min-width: 1400px) {
  #column .slick-next {
    right: calc(100% - 960px + 155px);
  }
}
@media only screen and (max-width: 993px) {
  #column .slick-next {
    left: 8px;
  }
}
@media only screen and (max-width: 575px) {
  #column .slick-next {
    left: 65px;
  }
}
#column .slick-prev {
  display: flex;
  align-items: center;
}
#column .slick-prev:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 16px;
  background: #848484;
  position: relative;
  right: -31px;
}
@media only screen and (max-width: 575px) {
  #column .slick-prev:after {
    right: -38px;
  }
}
#column .slick-prev,
#column .slick-next {
  width: 16px;
  height: 16px;
  z-index: 2;
  top: -175px;
}
#column .slick-prev:before,
#column .slick-next:before {
  content: "";
}
@media only screen and (max-width: 993px) {
  #column .slick-prev,
  #column .slick-next {
    right: auto;
    top: -96px;
  }
}
@media only screen and (max-width: 768px) {
  #column .slick-prev,
  #column .slick-next {
    top: -59px;
  }
}
@media only screen and (max-width: 575px) {
  #column .slick-prev,
  #column .slick-next {
    top: -70px;
  }
}
@media only screen and (max-width: 469px) {
  #column .slick-prev,
  #column .slick-next {
    top: -74px;
  }
}
@media only screen and (max-width: 402px) {
  #column .slick-prev,
  #column .slick-next {
    top: -70px;
  }
}

#cases-all .container-right,
#column-all .container-right {
  padding-bottom: 10px;
}
#cases-all .blockE,
#column-all .blockE {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media only screen and (max-width: 993px) {
  #cases-all .blockE,
  #column-all .blockE {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  #cases-all .blockE,
  #column-all .blockE {
    justify-content: center;
  }
}
#cases-all .blockE .inner,
#column-all .blockE .inner {
  max-width: 293px;
  width: calc((100% - 80px) / 3);
  margin-bottom: 40px;
}
@media screen and (min-width: 993px) {
  #cases-all .blockE .inner,
  #column-all .blockE .inner {
    margin-right: 40px;
  }
}
@media screen and (min-width: 993px) {
  #cases-all .blockE .inner:nth-of-type(3n),
  #column-all .blockE .inner:nth-of-type(3n) {
    margin-right: 0;
  }
}
#cases-all .blockE .inner .text-box h3,
#cases-all .blockE .inner .text-box p,
#column-all .blockE .inner .text-box h3,
#column-all .blockE .inner .text-box p {
  margin-top: 0;
}
#cases-all .blockE .inner .text-box .hashtag,
#column-all .blockE .inner .text-box .hashtag {
  font-size: 13px;
}
#cases-all + .container,
#column-all + .container {
  padding-bottom: 0;
}

#cases-all {
  margin-top: 64px;
}
#cases-all .container {
  background: #f1f1f1;
  padding: 40px;
  border-radius: 15px;
}
@media screen and (min-width: 1060px) {
  #cases-all .container {
    width: 1040px;
  }
}
#cases-all .blockE .inner {
  display: block;
}
@media only screen and (max-width: 768px) {
  #cases-all .blockE .inner {
    width: 100%;
  }
}
#cases-all .blockE .image-box:after {
  padding-top: 59%;
}
#cases-all .blockE .text-box {
  padding: 0;
}
#cases-all .blockE .text-box h2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
#cases-all .blockE .text-box .hashtag {
  color: #0082c3;
}

.blockA {
  margin: 40px 0;
}
.blockA .text-box {
  background: #f1f1f1;
  border-radius: 15px;
  padding: 40px;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .blockA .text-box {
    padding: 40px 30px;
  }
}
.blockA .text-box .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .blockA .text-box .inner {
    display: block;
  }
}
.blockA .text-box .inner .inner-text {
  width: calc((100% - 40px) / 2);
}
@media only screen and (max-width: 768px) {
  .blockA .text-box .inner .inner-text {
    width: 100%;
  }
}
.blockA .text-box .inner .inner-text img {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.blockA .text-box .inner p {
  text-align: left;
}
.blockA .text-box .inner img {
  display: block;
  width: calc((100% - 40px) / 2);
}
@media only screen and (max-width: 768px) {
  .blockA .text-box .inner img {
    margin: 40px auto 0;
    width: 100%;
    max-width: 420px;
  }
}

#payment img {
  max-width: 263px;
  display: block;
  margin: 40px auto 0;
}

#payment .li-dots,
#important_point .li-dots {
  line-height: 2em;
}
#payment .blockA,
#important_point .blockA {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #payment .blockA,
  #important_point .blockA {
    display: block;
  }
}
#payment .blockA .text-box,
#important_point .blockA .text-box {
  width: calc((100% - 40px) / 2);
}
@media only screen and (max-width: 768px) {
  #payment .blockA .text-box,
  #important_point .blockA .text-box {
    width: 100%;
  }
  #payment .blockA .text-box:last-of-type,
  #important_point .blockA .text-box:last-of-type {
    margin-top: 40px;
  }
}

#important_point #important_point03 {
  width: 100%;
}

#how_to_importimg .text-box,
#how_to_outline .text-box {
  margin-top: 40px;
}

.heading + .blockA {
  margin-top: 64px;
}

#draft-menu-pc {
  width: 304px;
}
@media only screen and (max-width: 1279px) {
  #draft-menu-pc {
    top: 550px;
  }
}
@media only screen and (max-width: 768px) {
  #draft-menu-pc {
    display: none;
  }
}
#draft-menu-pc .menu-title {
  background: #0082c3;
  color: #fff;
  width: 54px;
  height: 414px;
  padding: 10px;
  border-radius: 0 15px 15px 0;
  transition: all 0.3s;
  position: relative;
}
#draft-menu-pc .menu-title span {
  writing-mode: vertical-rl;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#draft-menu-pc .menu-content {
  transition: all 0.3s;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  top: 0;
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding: 40px 37px;
  background: #fff;
}
#draft-menu-pc .menu-content .heading04 {
  font-size: 20px;
}
#draft-menu-pc .menu-content ul {
  width: 100%;
}
#draft-menu-pc .menu-content ul li {
  color: #848484;
  width: max-width;
}
#draft-menu-pc .menu-content ul li a:hover {
  color: #0082c3;
}
#draft-menu-pc img {
  display: block;
  text-align: right;
  margin-left: auto;
  width: 13.5px;
  height: 13.5px;
}
#draft-menu-pc .menu-title.active {
  transform: translateX(-100%);
}
#draft-menu-pc .menu-content.active {
  transform: translateX(-100%);
}

.dropdown-menu {
  margin-top: 64px;
}
.dropdown-menu .has-child2 {
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  padding: 10px 9px;
  background: #0082c3;
  border-radius: 30px;
  font-weight: bold;
}
.dropdown-menu i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.dropdown-menu .has-child2.close {
  transition: 0.3s;
  border-radius: 30px 30px 0 0;
  border-bottom: 1px solid white;
}
.dropdown-menu .has-child2.close i {
  top: 32%;
  transform: rotate(180deg);
}
.dropdown-menu .child2 {
  flex-wrap: wrap;
  justify-content: space-evenly;
  display: none;
}
.dropdown-menu .child2 li {
  transition: 0.3s;
  border-top: 1px solid #fff;
  background: #0082c3;
  text-align: center;
  font-weight: 600;
  color: #fff;
  padding: 8px;
  position: relative;
}
.dropdown-menu .child2 li:last-of-type {
  border-radius: 0 0 30px 30px;
}

@media only screen and (min-width: 768px) {
  #draft-menu-sp,
  #draft-menu-sp-2 {
    display: none !important;
  }
}
#draft-menu-sp .child2 li:first-of-type, #draft-menu-sp .child2 li:nth-of-type(5), #draft-menu-sp .child2 li:nth-of-type(9),
#draft-menu-sp-2 .child2 li:first-of-type,
#draft-menu-sp-2 .child2 li:nth-of-type(5),
#draft-menu-sp-2 .child2 li:nth-of-type(9) {
  background: #f1f1f1;
  color: #0082c3;
}

#draft-menu-sp-2 {
  width: calc(100% - 40px);
}

#flow .text-box {
  position: relative;
}
@media only screen and (min-width: 768px) {
  #flow .text-box {
    padding-left: 80px;
    margin-left: 45px;
  }
}
@media only screen and (max-width: 768px) {
  #flow .blockA {
    margin-top: 90px;
  }
}
#flow .blockA + svg {
  margin: 40px auto 0;
  display: block;
}
#flow .icon {
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #0082c3;
  border-radius: 100%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 8px;
}
@media only screen and (max-width: 768px) {
  #flow .icon {
    top: 0;
    left: 50%;
    transform: translate(-50%, -65%);
  }
}
#flow .icon > span {
  line-height: 1.5em;
  display: block;
}
#flow .icon > span > span {
  font-size: 30px;
  display: block;
}
#flow .icon img {
  max-width: 25px;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .font-product .heading + .blockA .inner-text {
    margin-top: 20px;
  }
}
.font-product .heading + .blockA img {
  border-radius: 15px;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .font-product .heading + .blockA img {
    max-width: 275px;
  }
}
@media only screen and (min-width: 768px) {
  .font-product .heading + .blockA img + .inner-text {
    width: calc(100% - 315px);
  }
}
.font-product .blockA:last-of-type .heading05 {
  margin-top: 0;
}
.font-product .blockA:last-of-type .image-box {
  width: calc((100% - 40px) / 2);
}
@media only screen and (max-width: 768px) {
  .font-product .blockA:last-of-type .image-box {
    width: 100%;
  }
}
.font-product .blockA:last-of-type .image-box img {
  width: 100%;
  max-width: 100%;
}

.product-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 10px !important;
}
.product-btns a {
  width: 280px;
}

.form {
  display: flex;
  align-items: center;
  position: relative;
}
.form dd,
.form dt {
  padding: 10px;
  font-weight: normal;
}
.form dt {
  padding-left: 0;
  width: 78px;
}
.form dt:after {
  content: "";
  border-bottom: 1px solid #DDDDDD;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78px;
}
.form dd {
  flex-grow: 1;
  border-bottom: 1px solid #DDDDDD;
}
.form + p small {
  text-align: left;
}

#font_sample ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#font_sample li {
  display: inline-block;
  width: 48%;
  max-width: 420px;
  font-weight: 18px;
  font-weight: 500;
}
#font_sample li > span {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #font_sample li > span {
    display: block;
  }
  #font_sample li > span p {
    padding-left: 23px;
  }
}
@media only screen and (max-width: 575px) {
  #font_sample li {
    width: 100%;
  }
}
#font_sample li .image-box {
  background: #fff;
  padding: 30px 10px;
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
}
#font_sample li .image-box img,
#font_sample li .image-box svg {
  margin: 0 auto;
  height: 110px;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 80%;
  width: auto;
  display: block;
}
@media only screen and (max-width: 768px) {
  #font_sample li .image-box img,
  #font_sample li .image-box svg {
    max-width: 95%;
    width: 95%;
    height: auto;
  }
}

#CMF #sheetColorLineup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  padding: 20px 0;
  margin: 30px auto;
}
#CMF .sheetColor {
  position: relative;
  width: 150px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 20px;
  margin-left: 20px;
}
@media only screen and (max-width: 575px) {
  #CMF .sheetColor {
    width: 30%;
  }
}
#CMF .sheetColor .colorSample {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 50px;
  border: solid 1px #000000;
}
#CMF .sheetColor .colorId {
  font-weight: bold;
  margin-right: 5px;
}
#CMF .table-01 {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  #CMF .inner > img {
    margin-right: 40px;
  }
}
#CMF .inner .text-inner {
  width: 100%;
}
#CMF .inner .text-inner > p {
  font-weight: 500;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  #CMF .inner .text-inner > p {
    margin-top: 40px;
  }
}
#CMF .inner .text-inner > img {
  width: 100%;
  margin-top: 30px;
}
#CMF .inner + p {
  margin-top: 40px;
}

#law .form {
  align-items: stretch;
}
#law .form:first-of-type {
  margin-top: 64px;
}
#law .form dt,
#law .form dd {
  padding: 20px 30px;
}
@media only screen and (max-width: 768px) {
  #law .form dt,
  #law .form dd {
    padding: 20px 15px;
  }
}
#law .form dt {
  min-width: 150px;
  text-align: center;
  background: #f1f1f1;
}
@media only screen and (min-width: 768px) {
  #law .form dt {
    min-width: 200px;
  }
}
@media only screen and (max-width: 575px) {
  #law .form dt {
    min-width: 120px;
  }
}
#law .form dt:after {
  width: 200px;
}

#privacy-policy .li-dots {
  margin-top: 20px;
}
#privacy-policy .li-dots + P {
  margin-top: 20px;
}

#contact h2,
#thanks h2 {
  font-size: 15px;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  #contact h2,
  #thanks h2 {
    text-align: left;
  }
}
#contact h2 + br + p,
#thanks h2 + br + p {
  text-align: center;
}
@media only screen and (max-width: 575px) {
  #contact h2 + br + p,
  #thanks h2 + br + p {
    text-align: left;
  }
}
#contact .inner .li-dots,
#thanks .inner .li-dots {
  line-height: 2em;
}
#contact .inner .li-dots li,
#thanks .inner .li-dots li {
  margin-top: 20px;
}
#contact .inner .li-dots li:first-of-type,
#thanks .inner .li-dots li:first-of-type {
  margin-top: 0;
}
#contact .inner .tel,
#thanks .inner .tel {
  margin: 0 auto 15px;
  width: -moz-fit-content;
  width: fit-content;
}
#contact .inner .tel + P,
#thanks .inner .tel + P {
  text-align: center;
}
@media only screen and (max-width: 575px) {
  #contact .inner .tel .icon-tel-wrap svg,
  #thanks .inner .tel .icon-tel-wrap svg {
    width: 25px;
  }
}
@media only screen and (max-width: 575px) {
  #contact .inner .tel .icon-tel-wrap span,
  #thanks .inner .tel .icon-tel-wrap span {
    font-size: 25px;
  }
}
#contact .inner .tel .icon-tel-wrap + p,
#thanks .inner .tel .icon-tel-wrap + p {
  margin-left: 0;
}
#contact .inner .btn-line,
#thanks .inner .btn-line {
  background: #06C755;
  color: #fff;
  font-weight: 500;
  display: flex;
  max-width: 216px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin: 15px auto 0;
  border-radius: 10px;
}
#contact .inner .btn-line svg,
#thanks .inner .btn-line svg {
  margin-right: 10px;
}
@media only screen and (min-width: 768px) {
  #contact .inner,
  #thanks .inner {
    display: flex;
    justify-content: space-between;
  }
  #contact .inner .text-box,
  #thanks .inner .text-box {
    width: calc((100% - 40px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 993px) {
  #contact .inner .tel .icon-tel-wrap svg,
  #thanks .inner .tel .icon-tel-wrap svg {
    width: 32px;
  }
  #contact .inner .tel .icon-tel-wrap span,
  #thanks .inner .tel .icon-tel-wrap span {
    font-size: 32px;
  }
}
@media only screen and (max-width: 993px) {
  #contact .inner .text-box,
  #thanks .inner .text-box {
    margin-top: 40px;
  }
}
#contact .inner + .blockA,
#thanks .inner + .blockA {
  margin-bottom: 40px;
}

#thanks h2 + br + p + br + p {
  text-align: center;
}
@media only screen and (max-width: 575px) {
  #thanks h2 + br + p + br + p {
    text-align: left;
  }
}

.simcal-no-events,
.simcal-events-dots {
  display: none !important;
}

.simcal-day-void {
  opacity: 0;
  border: none;
}

.simcal-default-calendar-grid.simcal-default-calendar-light .simcal-day-void {
  background-color: #f4f9fd !important;
}

.simcal-default-calendar-grid .simcal-day-void.simcal-day-void-last {
  border-right-width: none !important;
}

.simcal-day-label {
  font-weight: bold;
  font-size: 14px;
}

.simcal-day .simcal-day-number {
  background: none !important;
  padding: 10px 0px !important;
  color: #0082c3;
}

.simcal-today .simcal-day-label {
  color: #0082c3 !important;
}

.simcal-today.simcal-day-has-events .simcal-day-label,
.simcal-day-has-events .simcal-day-label {
  background: none !important;
  color: #fff !important;
  border-radius: 100%;
  position: relative;
  z-index: 2;
}
.simcal-today.simcal-day-has-events .simcal-day-label:after,
.simcal-day-has-events .simcal-day-label:after {
  content: "";
  width: 21px;
  height: 21px;
  background: #E58D00;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 100%;
}

.simcal-default-calendar-grid > table {
  border-radius: 15px;
  background: none;
  position: relative;
}
.simcal-default-calendar-grid > table:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 20px;
  border-radius: 0 0 15px 15px;
  width: 100%;
  border: 2px solid #0082c3;
  border-top: none;
}

.simcal-present div {
  border: none !important;
}

.simcal-calendar-head {
  position: relative;
  background: #0082c3;
  color: #fff;
}
.simcal-calendar-head tr {
  position: relative;
  z-index: 2;
}

tr {
  position: relative;
  z-index: 1;
}
tr .simcal-nav:first-of-type {
  border-radius: 15px 0 0 0;
}
tr .simcal-nav:last-of-type {
  border-radius: 0 15px 0 0;
}

.simcal-month {
  border-radius: 0 0 15px 15px !important;
  overflow: hidden !important;
  background: #fff;
}

.simcal-week:last-of-type td .simcal-day .simcal-day-number {
  padding-bottom: 20px !important;
}
.simcal-week:last-of-type td:first-of-type {
  border-radius: 0 0 0 15px;
}
.simcal-week:last-of-type td:last-of-type {
  border-radius: 0 0 15px 0;
}

.simcal-default-calendar-grid > table {
  margin-top: 20px;
  margin-bottom: 20px;
}

.simcal-icon-left,
.simcal-icon-right {
  color: #fff;
}

.simcal-ajax-loader.simcal-spinner-top {
  opacity: 0;
  display: none;
}
.simcal-ajax-loader.simcal-spinner-top .simcal-icon-spinner.simcal-icon-spin {
  display: none;
}

#test {
  max-width: 292px;
  margin-top: -20px;
}

.price .container {
  padding-top: 40px;
  padding-bottom: 0;
}
.price #option_price {
  margin-top: 100px;
}
.price #price-menu-sp {
  display: block;
  margin: 64px auto 0;
}
@media only screen and (max-width: 768px) {
  .price #price-menu-sp {
    margin-top: 40px;
  }
}
.price #price-menu-sp .has-child2 {
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  background: #0082c3;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
@media only screen and (min-width: 768px) {
  .price #price-menu-sp .has-child2 {
    display: none;
  }
}
.price #price-menu-sp i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.price #price-menu-sp .has-child2.close {
  transition: 0.3s;
}
.price #price-menu-sp .has-child2.close i {
  top: 32%;
  transform: rotate(180deg);
}
.price #price-menu-sp .child2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: bold;
  gap: 9px 4px;
  overflow: hidden;
  padding-bottom: 5px;
}
.price #price-menu-sp .child2 li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 10px 10px 0 0;
  padding: 0 20px;
  background-color: #0082c3;
  text-align: center;
  color: #fff;
}
.price #price-menu-sp .child2 li a::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #0082c3;
  height: 5px;
  width: 100vw;
  bottom: -5px;
}
@media only screen and (max-width: 768px) {
  .price #price-menu-sp .child2 {
    padding-bottom: 0;
    gap: 4px;
    justify-content: flex-start;
  }
  .price #price-menu-sp .child2 li {
    width: calc(50% - 2px);
  }
  .price #price-menu-sp .child2 li a {
    height: 70px;
    padding-inline: 5px;
  }
  .price #price-menu-sp .child2 li a::before {
    display: none;
  }
}
.price article {
  margin-top: 64px;
  display: none;
}
.price article.is-active {
  display: block;
}
.price small {
  text-align: right;
  display: block;
}
.price .tab01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: bold;
  position: relative;
  align-items: stretch;
}
@media only screen and (min-width: 992px) {
  .price .tab01 {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 768px) {
  .price .tab01 {
    justify-content: space-between;
  }
}
.price .tab01:before, .price .tab01:after {
  content: " ";
  border-bottom: 5px solid #848484;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .price .tab01:before, .price .tab01:after {
    min-width: 740px;
  }
}
@media only screen and (min-width: 992px) {
  .price .tab01:before, .price .tab01:after {
    min-width: 960px;
  }
}
@media only screen and (max-width: 575px) {
  .price .tab01:before, .price .tab01:after {
    border-bottom: none;
  }
}
.price .tab01:before {
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  z-index: 1;
}
.price .tab01 li {
  text-align: left;
  margin-right: 20px;
  color: #848484;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .price .tab01 li {
    text-align: center;
    margin-right: 0;
  }
}
.price .tab01 li:nth-of-type(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 575px) {
  .price .tab01 li {
    margin-top: 10px;
  }
  .price .tab01 li:first-of-type, .price .tab01 li:nth-of-type(2) {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .price .tab01 li:nth-of-type(3n+1) a {
    width: 130px;
  }
}
@media only screen and (min-width: 992px) {
  .price .tab01 li:nth-of-type(3n+2) a {
    width: 207px;
  }
}
@media only screen and (min-width: 992px) {
  .price .tab01 li:nth-of-type(3n+3) a {
    width: 370px;
  }
}
.price .tab01 li a {
  display: block;
  height: 60px;
  border-radius: 10px 10px 0 0;
  padding: 10px 10px 0;
  background-color: #f1f1f1;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 993px) {
  .price .tab01 li a {
    width: 210px;
  }
}
@media only screen and (max-width: 767px) {
  .price .tab01 li a {
    width: 163.3333333333px;
    font-size: 13px;
    padding: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .price .tab01 li a {
    width: calc((100vw - 50px) / 2);
    height: 70px;
  }
}
@media screen and (max-width: 375px) {
  .price .tab01 li a {
    height: 90px;
  }
}
.price .tab01 li a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
  letter-spacing: -1.2px;
}
.price .tab01 li.active:after {
  width: 100%;
  content: "";
  border-bottom: 5px solid #E58D00;
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (max-width: 575px) {
  .price .tab01 li.active:after {
    border-bottom: none;
  }
}
.price .tab01 li.active:last-of-type:after, .price .tab01 li.active:nth-of-type(5):after, .price .tab01 li.active:nth-of-type(4):after {
  top: auto;
  bottom: 0;
  transform: translateY(0);
}
.price .tab01 li.active a {
  background-color: #E58D00;
  color: #fff;
}
.price .alumi-tab.tab01:before {
  display: none;
}
.price .alumi-tab.tab01:after {
  border-bottom: none;
}
.price .alumi-tab.tab01 li.active {
  border-bottom: none;
}
.price .alumi-tab.tab01 li.active:after {
  bottom: -2px;
  top: auto;
}
.price .area {
  display: none;
  opacity: 0;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media only screen and (max-width: 993px) {
  .price .area {
    overflow-x: scroll;
    margin-top: 20px;
  }
}
.price .area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.price table {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
}
.price table thead tr {
  background: #f1f1f1;
}
.price table td,
.price table th {
  border-top: 0;
  border-right: solid 1px #e9e9ea;
  border-bottom: solid 1px #e9e9ea;
  border-left: 0;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  box-sizing: border-box;
  width: 13%;
}
.price table td:last-child,
.price table th:last-child {
  border-right: 0;
}
.price table tbody th {
  font-weight: normal;
}
.price .btn-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 993px) {
  .price .btn-inner {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575px) {
  .price .btn-inner {
    display: block;
  }
}
.price .btn-inner .btn {
  background: #E58D00;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s;
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  .price .btn-inner .btn {
    margin-right: 15px;
  }
  .price .btn-inner .btn:last-of-type {
    margin-right: 0;
  }
  .price .btn-inner .btn:nth-of-type(3) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .price .btn-inner .btn {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
}
.price .btn-inner .btn i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.price .btn-inner .btn:hover i {
  right: 20px;
}

.li-count-01 {
  list-style: none;
  padding-left: 50px;
  counter-reset: my-awesome-counter;
  justify-content: space-between;
  padding-left: 2.2em;
  font-size: 13px;
}
.li-count-01 li {
  counter-increment: my-awesome-counter;
}
.li-count-01 li:before {
  content: "(*" counter(my-awesome-counter) ")";
  width: 1.5em;
  margin-left: -2.2em;
  padding-right: 0.6em;
}

.li-count-02 {
  list-style: none;
  padding-left: 50px;
  justify-content: space-between;
  padding-left: 1.5em;
  font-size: 13px;
}
.li-count-02 li:before {
  content: "※";
  width: 1.5em;
  margin-left: -1.5em;
}

.li-dots {
  list-style: none;
  padding-left: 50px;
  counter-reset: my-awesome-counter;
  justify-content: space-between;
  padding-left: 20px;
  line-height: 3em;
}
.li-dots li:before {
  content: "•";
  color: #0082c3;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

#product_finishing .li-dots li:not(:first-of-type) {
  margin-top: 20px;
}

#option_price .heading05 {
  margin-top: 0;
}
#option_price table th {
  background: #f1f1f1;
}
#option_price .li-count-01 {
  margin-top: 30px;
}

.table-01 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
}
.table-01 thead tr {
  background: #f1f1f1;
}
.table-01 td,
.table-01 th {
  border-top: 0;
  border-right: solid 1px #e9e9ea;
  border-bottom: solid 1px #e9e9ea;
  border-left: 0;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  box-sizing: border-box;
  width: 13%;
}
.table-01 td:last-child,
.table-01 th:last-child {
  border-right: 0;
}
.table-01 img.icon-checked {
  width: 35px !important;
  height: auto !important;
  margin: 0 auto;
}
.table-01 img.icon-no {
  width: 25px !important;
  height: auto !important;
  margin: 0 auto;
}
.table-01 tbody th {
  font-weight: normal;
  background: #f1f1f1;
}

#question .text-box {
  position: relative;
}
@media only screen and (max-width: 575px) {
  #question .text-box {
    padding-bottom: 100px;
  }
}
#question .heading04 {
  margin-bottom: 0;
}

.accordion2 {
  cursor: pointer;
  text-align: left;
  outline: none;
  font-weight: bold;
  font-size: 35px;
  transition: 0.4s;
  position: absolute;
  right: 40px;
  top: 28px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 100%;
}
.accordion2:after {
  content: "+";
  color: #0082c3;
  font-weight: 400;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 575px) {
  .accordion2 {
    right: 50%;
    bottom: 30px;
    top: auto;
    transform: translateX(50%);
  }
}

.accordion:hover {
  background-color: #7abcff;
}

.accordion2.active + .panel {
  margin-top: 30px;
}
.accordion2.active:after {
  content: "−";
}

.accordion2 span {
  margin-right: 5px;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
}
.panel span {
  font-size: inherit;
  font-weight: bold;
}

.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*2.上下の動きを指定*/
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

#footer {
  padding-top: 120px;
  margin-right: 60px;
}
@media only screen and (max-width: 993px) {
  #footer {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  #footer {
    padding-top: 145px;
    margin-right: 0;
  }
}
#footer h2 {
  font-size: 33px;
  line-height: 1.68em;
}
@media only screen and (max-width: 993px) {
  #footer h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  #footer h2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  #footer .container {
    max-width: 741px;
  }
}
#footer .container .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 993px) {
  #footer .container .inner {
    justify-content: center;
  }
}
#footer .container .inner .innerL,
#footer .container .inner .innerR {
  display: inline-block;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #footer .container .inner .innerL,
  #footer .container .inner .innerR {
    width: 100%;
  }
}
#footer .container .inner .innerL {
  position: relative;
  max-width: 292px;
}
@media only screen and (max-width: 768px) {
  #footer .container .inner .innerL {
    border-right: 0;
    margin-right: 0;
    padding-bottom: 33px;
  }
}
#footer .container-wrap:first-child {
  background: #0082c3;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  #footer .container-wrap:first-child {
    border-radius: 0 20px 0 0;
  }
}
#footer .container-wrap:first-child .container:before {
  content: "";
  width: 195px;
  height: 231px;
  position: absolute;
  left: 20px;
  top: -16%;
  background: url(../img/main-visual-deco-img-01.png);
  background-size: contain;
}
@media only screen and (max-width: 1279px) {
  #footer .container-wrap:first-child .container:before {
    width: 110px;
    height: 130px;
    left: 0;
    top: -40px;
  }
}
@media only screen and (max-width: 768px) {
  #footer .container-wrap:first-child .container:before {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
}
#footer .container-wrap:first-child h2 {
  text-align: center;
}
#footer .container-wrap:first-child h2 + p {
  text-align: center;
  margin-top: 20px;
}
#footer .container-wrap:first-child .inner {
  color: #fff;
}
#footer .container-wrap:first-child .inner .innerL,
#footer .container-wrap:first-child .inner .innerR {
  max-width: 292px;
}
#footer .container-wrap:first-child .inner .innerL {
  padding-bottom: 0px;
}
#footer .container-wrap:first-child .inner .innerL a {
  background: #0054A8;
}
#footer .container-wrap:first-child .inner .innerR a {
  background: #E58D00;
  color: #fff;
}
#footer .container-wrap:first-child .inner .innerR a span, #footer .container-wrap:first-child .inner .innerR a:before, #footer .container-wrap:first-child .inner .innerR a:after {
  background: #fff;
}
#footer .container-wrap:nth-of-type(2) {
  background: #f1f1f1;
}
#footer .container-wrap:nth-of-type(2) .container {
  padding-bottom: 0;
}
#footer .container-wrap:nth-of-type(2) .container .inner {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  #footer .container-wrap:nth-of-type(2) .container .inner {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  #footer .container-wrap:nth-of-type(2) .container .innerL {
    margin-right: 40px;
  }
}
#footer .container-wrap:nth-of-type(2) .container .innerL > div {
  display: flex;
  align-items: center;
}
#footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05 {
  margin: 0 20px;
}
#footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05:first-of-type {
  margin-left: auto;
  transform: rotate(180deg);
}
#footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05:first-of-type:before, #footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05:first-of-type:after,
#footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05:first-of-type span {
  background: #848484;
}
#footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05:last-of-type {
  margin-right: auto;
}
#footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05:last-of-type:before, #footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05:last-of-type:after,
#footer .container-wrap:nth-of-type(2) .container .innerL > div > .arrow_05:last-of-type span {
  background: #251E1C;
}
#footer .container-wrap:nth-of-type(2) .container .innerR {
  display: flex;
  justify-content: space-between;
  line-height: 2.5em;
}
@media only screen and (max-width: 768px) {
  #footer .container-wrap:nth-of-type(2) .container .innerR {
    display: none;
  }
}
#footer .container-wrap:nth-of-type(2) .container .innerR li {
  font-weight: bold;
}
#footer .container-wrap:nth-of-type(2) .container .innerR li > ul {
  padding-left: 15px;
}
#footer .container-wrap:nth-of-type(2) .container .innerR li > ul li {
  font-weight: normal;
}
#footer .container-wrap:nth-of-type(2) .container .innerR li a:hover {
  color: #0082c3;
}
#footer .footer-logo {
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #footer .footer-logo {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  #footer .footer-logo {
    letter-spacing: 0.5px;
  }
}
#footer .footer-logo .logo > p {
  padding-left: 80px;
}
#footer .footer-logo img {
  max-width: 308px;
  height: auto;
  width: 100%;
}
#footer .footer-logo img + p {
  margin-left: 20px;
}
#footer .footer-logo img + p span {
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  #footer .footer-logo img + p span {
    display: block;
    margin-left: 0px;
  }
}
@media only screen and (max-width: 768px) {
  #footer .footer-logo img + p {
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
  }
}
#footer .footer-logo .logo {
  text-align: center;
  font-size: 13px;
  color: #0082c3;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  #footer .footer-logo .logo + .tel {
    margin: 20px auto 0;
    letter-spacing: 0;
  }
  #footer .footer-logo .logo + .tel span {
    font-size: 34px;
  }
  #footer .footer-logo .logo + .tel svg {
    width: 36px;
  }
}
#footer .container-wrap + p {
  text-align: center;
  color: #848484;
  background: #f1f1f1;
  padding: 30px 0 40px;
}
@media screen and (max-width: 1279px) {
  #footer .container-wrap + p {
    padding-bottom: 103px;
  }
}
#footer .container-wrap + p small {
  font-size: 13px;
}

#line-btn,
#back-to-top {
  width: 60px;
  transition: 0.3s;
  background: #06C755;
}
@media only screen and (max-width: 768px) {
  #line-btn,
  #back-to-top {
    display: none !important;
  }
}

#mail-btn,
#back-to-top {
  width: 60px;
  transition: 0.3s;
  background: #E58D00;
}
@media only screen and (max-width: 768px) {
  #mail-btn,
  #back-to-top {
    display: none !important;
  }
}

#mail-btn.access svg {
  fill: #fff;
}

#mail-btn,
#line-btn {
  border-radius: 25px 0 0 25px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
#mail-btn span,
#line-btn span {
  writing-mode: vertical-lr;
  text-orientation: upright;
  font-weight: bold;
  color: #fff;
}

#back-to-top {
  border-radius: 100%;
  margin-bottom: 0px;
  background: #0082c3;
  height: 60px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
#back-to-top span {
  width: 5px;
  height: 14px;
  display: block;
  border-radius: 5px;
  background: #fff;
  margin-top: 5px;
  top: 54%;
}
#back-to-top span,
#back-to-top svg {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#back-to-top:before, #back-to-top:after {
  position: absolute;
  display: block;
  content: "";
  height: 5px;
  width: 22px;
  background: #fff;
  top: 34%;
  border-radius: 5px;
}
#back-to-top:before {
  transform: rotate(-47deg);
  left: 13px;
}
#back-to-top:after {
  transform: rotate(47deg);
  right: 13px;
}

#header {
  z-index: 1001;
}
#header .header-pc .containerR nav ul li a {
  color: #0082c3;
}
#header .header-pc .containerR nav ul li a:hover {
  color: #f1f1f1;
}
#header .header-sp {
  box-shadow: none;
}
#header .header-sp .openbtn1.active {
  width: 68px;
}
#header .header-sp .openbtn1.active span {
  width: 50% !important;
}
#header .header-sp .openbtn1.active span:nth-of-type(1) {
  top: 25px;
}
#header .header-sp .openbtn1.active span:nth-of-type(3) {
  top: 38px;
}

#news_single .post-btn a {
  line-height: 56px;
}

#sub-mainvisual + section > .container-wrap > .container {
  padding-top: 0;
}

.btns .previous.post-btn:before {
  left: 19px;
  top: 23px;
  transform: rotate(-45deg);
  width: 15px;
}
.btns .previous.post-btn:hover:before {
  left: 10px;
}
.btns .previous.post-btn:after {
  transform: rotate(45deg) !important;
  top: 32px;
  width: 15px;
}
.btns .previous.post-btn span {
  right: auto;
  left: 32px;
}
.btns .next.post-btn:before {
  bottom: 24px;
  width: 15px;
}
.btns .next.post-btn:after {
  top: 22px;
  width: 15px;
}
.btns .post-btn {
  height: 58px;
  padding: 13px 0;
}
.btns .post-btn:last-child {
  background: #E58D00;
}
.btns .post-btn:last-child:after {
  transform: rotate(-45deg) !important;
  right: 26px !important;
  left: auto;
  top: 25px;
}
.btns .post-btn:last-child:before {
  transform: rotate(45deg);
  top: 25px;
  right: 16px;
}
.btns .post-btn:last-child:hover:after {
  top: 13px !important;
  right: 26px !important;
}
.btns .post-btn:last-child:hover:before {
  top: 13px !important;
  right: 16px !important;
}
.btns .post-btn:last-child span {
  top: 61%;
  width: 3px;
  right: 27px;
  height: 11px;
}
.btns .post-btn:last-child span:hover {
  height: 15px !important;
}

@media screen and (max-width: 380px) {
  #contact form table .th-title {
    display: inline-block;
    width: 100%;
  }
}
.example-require {
  margin-top: 64px;
  margin-bottom: 20px;
}

.example-require,
.required:before {
  background: #FFEB31;
}

.btns {
  background: #0082c3;
}

.pager span.pages,
.pager span.current {
  background: #0082c3;
  border-radius: 14px;
  color: #fff;
}

.pager span.pages,
.pager a.larger,
.pager a.smaller {
  background: #f1f1f1;
  color: black;
  border-radius: 14px;
}

.pager .nextpostslink,
.pager .previouspostslink {
  color: #0082c3;
}

#news_page .container .inner dl a dt {
  padding-left: 40px;
}

#reCaptcha > a {
  color: #0082c3;
}

#news_single .date .news {
  color: #E58D00;
}

.slick-dots li button:before {
  border-radius: 5px;
  color: #848484 !important;
}

.slick-dots li.slick-active button:before {
  color: #0082c3 !important;
}

.slick-dots {
  bottom: 0px !important;
  position: relative !important;
}

.case-multiple-items .slick-dots {
  bottom: -32px !important;
  position: absolute !important;
  left: 0;
}

#single-cases-slick-for .image-box,
#single-cases-slick-nav .image-box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#single-cases-slick-for .image-box img,
#single-cases-slick-nav .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#single-cases-slick-for .image-box:after,
#single-cases-slick-nav .image-box:after {
  content: "";
  display: block;
  padding-top: 70%;
}

#single-cases-slick-for {
  max-width: 680px;
  margin: 35px auto 0;
  padding: 21px;
  position: relative;
}
#single-cases-slick-for:before, #single-cases-slick-for:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
}
#single-cases-slick-for:before {
  background: url(../img/case-deco-01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#single-cases-slick-for:after {
  background: url(../img/case-deco-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

#single-cases-slick-nav {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  #single-cases-slick-nav .slick-list {
    transform: scale(0.7);
  }
}
#single-cases-slick-nav .image-box:after {
  padding-top: 100%;
}
#single-cases-slick-nav .image-box:first-of-type {
  left: -40px;
}
#single-cases-slick-nav .image-box:nth-of-type(2) {
  left: -20px;
}
#single-cases-slick-nav .image-box:nth-of-type(4) {
  left: 20px;
}
#single-cases-slick-nav .image-box:nth-of-type(5) {
  right: -40px;
}

.t-blue {
  color: #0082c3;
}

.t-orange {
  color: #E58D00;
}

#news_single .date span:after {
  content: "／";
  display: inline-block;
}
#news_single .date span:last-of-type:after {
  display: none;
}

footer .slick-prev,
footer .slick-next {
  z-index: 1;
}
footer .slick-prev:before,
footer .slick-next:before {
  content: " " !important;
  width: 14px;
  height: 11px;
  opacity: 1;
  background: url(../img/slick-arrow-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  display: block;
}
footer .slick-prev:before {
  left: 20px;
}
footer .slick-next:before {
  right: 16px;
  transform: rotate(180deg);
  transform-origin: center center;
}

.st-bg {
  background: black;
}

.st-bg-today {
  background: yellow;
  border-left: 1px solid yellow;
  border-right: 1px solid yellow;
}

.st-dtitle {
  background: white;
}

.view-cap,
.view-container-border {
  background-color: black;
}

.mv-daynames-table {
  color: white;
  background: black;
}

.mv-event-container {
  border-top: 1px solid black;
}

.example-require {
  background: #0082c3;
}

.example-require {
  margin-top: 64px;
  margin-bottom: 20px;
}

.example-require,
.required:before {
  background: #0082c3;
}

#contact {
  /*# response-output */
  /*# response-output */
}
#contact ul {
  margin-top: 40px;
}
#contact .wpcf7-spinner {
  position: relative;
  bottom: -50px;
}
#contact .wpcf7-submit {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: bold;
}
#contact #reCaptcha {
  margin: 0;
  padding: 12px 0 64px;
  border-top: 1px solid #DBDBDB;
}
#contact .btn-round_arrow_03-b {
  height: 50px;
}
#contact .btn-round_arrow_03-b input {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
#contact .wpcf7 form.invalid .wpcf7-response-output,
#contact .wpcf7 form.unaccepted .wpcf7-response-output,
#contact .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #0082c3 !important;
  color: #0082c3 !important;
}
#contact .wpcf7-not-valid-tip {
  color: #0082c3 !important;
}
#contact .wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}
#contact .wpcf7-list-item.first {
  margin-left: 0;
}

/* On mouse-over, add a grey background color */
/* When the radio button is checked, add a blue background */
/* Create the indicator (the dot/circle - hidden when not checked) */
/* Show the indicator (dot/circle) when checked */