@charset "UTF-8";

/*
Theme Name: DREAM HAIR
Theme URI: https://web-creator02.com/dream-hair-asahikawa/info/
Description: ドリームヘアの公式ホームページです。
Version: 1.1
Author: owndmedia-lab
*/

/* ************************************************************************************************
   共通
   ************************************************************************************************ */

html,
body {
  width: 100%;
  height: 100%;
  font-size: 62.5%; /*ベースを10pxに設定*/
  letter-spacing: 0.2em;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','Iowan Old Style',sans-serif;
  font-weight: 500;
  color: #4d4136;
  background: #fff;
}

h2 {
  font-size: 3.2rem;
}
h3 {
  font-size: 2.8rem;
  line-height: 1.8;
}
h4 {
  font-size: 2.5rem;
  line-height: 1.8;
}
h5 {
  font-size: 2rem;
  line-height: 1.8;
}

p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}

a {
  font-size: 1.4rem;
  text-decoration: none;
}

/* 改行 */
.br_sp {
  display: none;
} /*スマホだけ改行 */
.br_pc {
  display: block;
} /*PCだけ改行 */

/* マウスドラッグした時の文字色 */
::selection {
  background: #ae4610;
  color: #fff;
}

/* ページ全体の余白など */
#page {
  overflow: hidden;
  width: 100%;
}

.container {
  width: 960px;
  margin: 0 auto;
}

.container02 {
  width: 1300px;
  margin: 0 auto;
}

.container03 {
  width: 1500px;
  max-width: 90%;
  margin: 0 auto;
}

/* 装飾線 */
.main__line {
  display: block;
  margin: 1rem auto 2rem;
}

.sub__line {
  display: block;
  margin: 1.5rem auto 3rem;
}

/***** 見出し *****/
.index__ttl {
  text-align: center;
  margin-bottom: 6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* スクロールバー */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #ae4610;
  border-radius: 8px;
}

/***** ヘッダー *****/
header {
  height: 66px;
  background-color: rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 10;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav {
  margin-left: 5rem;
}

.header-nav__list,
.header-nav__list--single {
  display: inline-block;
  text-align: center;
  margin-left: 20px;
  transition: 0.5s;
}

.header-nav__item,
.header-nav__item--single {
  display: block;
  padding: 0.2rem 0;
  transition: 0.4s;
}

.header-nav__item:first-child,
.header-nav__item--single:first-child {
  font-size: 1.5rem;
}

.header-nav__item:last-child,
.header-nav__item--single:nth-child(2) {
  font-size: 1.1rem;
}

#nav-drawer {
  display: none;
}

/* sp-btn */
/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  opacity: 0.8;
  z-index: 99;
  left: 0;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

#sp-fixed-menu li {
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 0;
  margin: 0;
  font-size: 14px;
  border-right: 1px solid #fff;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child {
  background: #877d7d;
}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child {
  background: #877d7d;
}

/*ボタンを調整*/
#sp-fixed-menu li a {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  padding: 20px;
}

#sp-fixed-menu img {
  width: 10%;
}


/***** 下層ページヘッダー部分 *****/
.header-sub {
  background-image: url(images/common/header_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 50vh;
  position: relative;
}

.header-sub__item {
  text-align: center;
  position: absolute;
  width: 70%;
  height: 100px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.header-sub__ttl {
  margin-bottom: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.header-sub__txt {
  letter-spacing: 0.1em;
}

/***** フッター *****/
footer {
  text-align: center;
  margin-top: 8rem;
}

.footer__sns {
  margin-bottom: 4rem;
}

.footer__icon {
  margin: 0 0.7rem;
}

small {
  font-size: 1.2rem;
}

/***** アクセス *****/
.index__ttl {
  text-align: center;
  margin-bottom: 5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.access {
  background-image: url(images/common/footer_bg.jpg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 8rem 0 3rem;
}

.access__container {
  border: 1px solid #cba265;
  width: 800px;
  background: #fff;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.access__contents {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.access__ttl {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.access__txt {
  margin-bottom: 2rem;
}

.access__tel {
  font-size: 2.5rem;
  color: #8b0000;
  font-weight: bold;
  margin-top: 4rem;
  text-align: center;
  display: block;
  transition: 0.3s;
}

.access__item {
  margin-top: 4rem;
}

.map-inner{
  margin-bottom: 4rem;
}

.access .flex{
  justify-content: space-around;
}

.access .flex .flex__item{
  width: 50%;
}

@media screen and (min-width:961px){
.access .flex .flex__item.mw-280{
  max-width: 280px;
}
}

.access .flex .flex__item img{
  max-width: 200px;
  width: 100%;
}

.access .flex .flex__item strong{
  display: block;
  font-size: calc(1em + 4px);
}

/* ************************************************************************************************
   index.php
   ************************************************************************************************ */

/***** 余白 *****/
.main,
.menu,
.news,
.access {
  padding: 8rem 0;
}


.header-main__bg {
  height: 100%;
}

.header-main__bg img {
  -o-object-fit: cover;
     object-fit: cover;
}

.header-main__bg .swiper-slide img{
  border:none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-main__bg .slide-img {
    height: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}

.header-main__bg .swiper-slide-active .slide-img,
.header-main__bg .swiper-slide-duplicate-active .slide-img,
.header-main__bg .swiper-slide-prev .slide-img{
animation: zoomUp 10s linear 0s 1 normal both;
}

.header-main__bg .slide-img img{
  display: block;
}

/***** メインイメージ *****/
.header-main {
  background-image: url(images/index/index_header_bg01.jpg);
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}

.header-main__img {
  position: absolute;
  width: 30%;
  top: 18%;
  right: 12%;
}

/***** メインコンテンツ *****/
.main {
  padding: 8rem 0 2rem;
}

.main__contents1,
.main__contents2 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
}

.main__item {
  width: 46%;
}

.main__ttl {
  text-align: center;
}

/***** 髪のお悩み編 *****/
.worries {
  padding: 8rem 0;
}

.worries02 {
  padding: 2rem 0 10rem;
}

.worries__wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.worries__item {
  width: 280px;
  height: 280px;
  margin: 2rem;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #251509;
}

.worries__item img {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.2;
}

.worries__item img.active {
  opacity: 1;
}

.worries__inner {
  z-index: 1;
}

.worries__inner ul {
  margin-bottom: 2.5rem;
}

.worries__inner ul li {
  font-size: 15px;
  line-height: 2;
  color: #fff;
}

.worries__inner a {
  font-size: 16px;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

/***** メニュー *****/
.menu {
  background-image: url(images/index/index_menu_bg.jpg);
  background-size: cover;
  background-position: center;
}

.menu__sub {
  display: block;
  font-size: 0.7em;
  margin-top: 1.5rem;
}

.menu__wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}

.menu__item {
  width: 45%;
  margin: 0 2%;
  text-align: center;
}

.menu__heading {
  font-size: 20px;
  color: #8b0000;
}

.menu__item img {
  width: 85%;
  max-width: 250px;
  margin: 1rem 0 2rem;
}

.menu__txt {
  text-align: left;
}

/***** ニュース *****/
.news__line {
  display: block;
  margin: 0 auto;
}

.news__contents {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
}

.news__item {
  width: 25%;
  text-align: center;
}

.news__item + .news__item{
  padding-left: 2em;
}

@media screen and (max-width:961px){
  .news__item + .news__item{
  padding-left: 0;
}
}


.news__thumbnail {
  margin-bottom: 2rem;
}

.news__thumbnail img {
  width: 220px;
  height: auto;
  max-width: 100%;
}

.news__date {
  font-size: 1.2rem;
  color: #8b0000;
}

.news__ttl {
  margin-top: 0.5rem;
}

/***** スクロールコンテンツ *****/
.index__nav {
  position: fixed;
  bottom: 0;
  left: 2%;
  display: none;
  z-index: 10;
}

.index__nav__line {
  position: relative;
  display: inline-block;
  margin: 3em 0;
  padding: 10px 15px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  background: #fff;
  border: solid 3px rgba(174, 70, 16, 0.6);
  box-sizing: border-box;
  border-radius: 20px;
}

.index__nav__line:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #fff;
  z-index: 2;
}

.index__nav__line:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid rgba(174, 70, 16, 0.6);
  z-index: 1;
}

.index__nav__line p {
  margin: 0;
  padding: 0;
}

.index__pic {
  display: block;
}

/* ************************************************************************************************
   straight-parm.php
   ************************************************************************************************ */

/***** 余白 *****/
.concept01 {
  padding: 5rem 0 8rem;
}

.concept02 {
  padding: 8rem 0;
}

/***** コンセプトその１ *****/
.concept01__item {
  text-align: center;
}

.concept01__txt {
  margin-top: 3rem;
}

/***** メインコンテンツ *****/
.subpage .main__item {
  width: 55%;
}

.subpage .main__img {
  width: 40%;
  height: calc(600px - 8vw);
  object-fit: cover;
}

/***** パララックス画像 *****/
.concept__bg {
  background-image: url(images/subpage/delimiter-bg001.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.concept__bg02{
  background-image: url(images/subpage/delimiter-bg02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.concept__bg03{
  background-image: url(images/subpage/delimiter-bg03.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.concept__bg04{
  background-image: url(images/subpage/delimiter-bg08.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.concept__bg05{
  background-image: url(images/subpage/delimiter-bg005.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.concept__bg06{
  background-image: url(images/subpage/delimiter-bg06.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.concept__bg07{
  background-image: url(images/subpage/delimiter-bg04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.separate {
  padding-top: 100px;
}


/******* ストーリー *********/
.flow-container{
  text-align: center;
  margin-bottom: 6rem;
}
/*
.flow-container .service-step_item {
  position: relative;
  padding: 2rem 2rem;
  background: #ffffffb3;
  box-sizing: border-box;
  box-shadow: 5px 4px 5px rgb(0 0 0 / 5%);
  border: 1px solid #f18787;
  margin-bottom: 2rem;
}

.flow-container .service-step_item h3 {
  font-size: 1.4rem;
  font-family: "Klee One", cursive;
  font-weight: 700;
  color: #8b0000;
}

span.step_number {
  color: #8a0000;
  font-weight: 700;
  padding-right: 0.5rem;
}

.service-step_item {
  width: 50%;
  margin: 0 auto;
}

.service-step_item img{
  width: 100%;
}

.service-step_item:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-color: #8a0000 transparent transparent;
  border-style: solid;
  border-width: 12px 15px 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  margin: auto;
}

.service-step_item.last_item:after {
  display: none;
}
*/

.step01__wrap {
  width: 80%;
}

.step01__wrap-inner{
  width: 60%;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-evenly;
}

.flex.flex--rev {
  flex-direction: row-reverse;
  /* justify-content: flex-end; */
}

.step01__wrap {
  margin: 60px auto 0;
}

.step01__wrap .step01__container {
  margin-bottom: 50px;
  align-items: center;
}

.step01__wrap .step01__container img {
  max-width: 150px;
  width: 150px;
  max-height: 150px;
  height: 150px;
}

.step01__wrap .step01__container img {
  border-radius: 50%;
}

.step01__wrap .step01__container .step01__box {
  /* margin-left: 4%; */
  order: 1;
}

.flex.flex--rev .step01__box {
  /* margin-right: 4%; */
}

.step01__wrap .step01__container .step01__box h4 {
  color: #4d4136;
  margin-bottom: 25px;
  font-size: calc(1em + 10px);
  font-weight: bold;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体",
    "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Iowan Old Style", sans-serif;
}

.step01__wrap .step01__container .step01__box h4 .step01__number {
  font-size: calc(1em + 62px);
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体",
    "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Iowan Old Style", sans-serif;
  width: 35px;
  height: 35px;
  color: rgb(211 176 125 / 30%);
  text-align: center;
  line-height: 40px;

  display: inline-block;
  margin-right: 15px;
}


/* ************************************************************************************************
   menu.php
   ************************************************************************************************ */

/***** 余白 *****/
.menu02 {
  margin: 0 0 10rem;
}

.menu03 {
  margin: 0 0 8rem;
}

/***** メニュー *****/
.menu02__img {
  display: block;
  margin: 0 auto;
}

.menu02__ttl {
  margin: 5rem 0;
  text-align: center;
}

.menu02__ttl-en {
  font-weight: bold;
}

.menu02__txt {
  text-align: center;
}

.menu02__subttl-ja{
  font-size: 2rem;
  text-align: center;
}

.notes-content__txt,
.notes-content ul{
  margin-bottom: 1em;
}

.menu02__table {
  margin: 5rem auto 0;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
}

.menu02__table tr {
  border-bottom: 1px dashed #bc8d9f;
}

.menu02__table th {
  text-align: left;
  width: 50%;
  padding: 2rem 1rem 1rem;
  font-weight: 500;
  vertical-align: middle;
}

.menu02__table td {
  text-align: right;
  width: 50%;
  padding: 2rem 1rem 1rem;
  vertical-align: middle;
}

.notes-content,.notes-content .notes-content__txt{
  font-size: 1.6rem;
}

.notes-content li{
  padding-bottom: 1em;
}

/***** その他メニュー *****/
.menu03__item {
  width: 350px;
  height: 350px;
  margin: 0 auto 3rem;
  border: 5px solid #f7ebec;
  padding: 4rem;
}

.menu03__ttl-en {
  text-align: center;
}

.menu03__ttl-ja {
  margin-bottom: 3rem;
  text-align: center;
}

.menu03__table {
  margin: 0 auto;
  font-size: 1.4rem;
  width: 200px;
}

.menu03__table th {
  text-align: left;
  width: 50%;
  padding: 1rem;
  font-weight: 500;
}

.menu03__table td {
  text-align: right;
  width: 50%;
  padding: 1rem;
}

.menu03__txt {
  text-align: center;
}

.menu_content{
  margin-bottom: 8rem;
  padding: 4rem;
}

.menu_content .main__item{
  width: 100%;
}
/***** メニュー表 *****/
.menu-tbl{
  width: 100%;
  font-size: calc(1em + 16px);
}

.menu-tbl tr{
  border-bottom: 1px solid #000;
}

.menu-tbl th,.menu-tbl td{
  padding: 15px;
}

.menu-tbl th{
  width: 85%;
}

.menu-tbl td{
  width: 15%;
}

.menu_content .required-text{
  font-weight: bold;
  color: red;
}

/* ************************************************************************************************
   staff.php
   ************************************************************************************************ */

/***** 余白 *****/
.staff {
  padding: 0 0 8rem;
}

/***** スタッフ *****/
.staff .container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.staff__item {
  width: 250px;
  text-align: center;
  margin-bottom: 6rem;
}

.staff__img {
  margin-bottom: 2rem;
}

.staff__ttl {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: #8b0000;
}

.staff__name {
  margin-bottom: 2rem;
}

.staff__txt {
  text-align: left;
}

/* ************************************************************************************************
   recruit.php
   ************************************************************************************************ */

/***** 余白 *****/
.recruit01,
.recruit02 {
  padding: 0 0 8rem;
}

.recruit03 {
  padding: 8rem 0;
}

/***** メッセージ *****/
.recruit01__movie {
  width: 900px;
  margin: 0 auto;
}

.recruit01__movie video {
  width: 100%;
  height: 100%;
}

.recruit01__item {
  margin-top: 5rem;
  text-align: center;
}

/***** コンテンツ *****/
.recruit02__box {
  width: 800px;
  margin: 0 auto 5rem;
  border: 10px double #f7ebec;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4rem;
}

.recruit02__box:last-child {
  margin-bottom: 0;
}

.recruit02__item {
  width: 300px;
  text-align: center;
}

.recruit02__line {
  border-bottom: 5px solid #f7ebec;
  width: 80%;
  margin: 0.5rem auto 0;
}

.recruit02__txt {
  text-align: left;
  margin-top: 3rem;
}

/***** 背景画像 *****/
.recruit__bg {
  background-image: url(images/subpage/recruit_main_bg01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

/***** 募集要項 *****/
.recruit03__ttl {
  margin: 0 0 5rem;
  text-align: center;
}

.recruit03__ttl-en {
  font-weight: bold;
}

.recruit03__table {
  width: 650px;
  margin: 0 auto 8rem;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}

.recruit03__table tr {
  border-bottom: 1px dashed #bc8d9f;
}

.recruit03__table th {
  width: 25%;
  padding: 2rem;
  vertical-align: middle;
}

.recruit03__table td {
  width: 75%;
  padding: 2rem;
  vertical-align: middle;
}

.recruit03__contact {
  width: 700px;
  margin: 0 auto;
  background: #f7ebec;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-around;
  padding: 4rem 0;
}

.recruit03__contact--mail a {
  font-size: 1.2rem;
}

.recruit03__txt {
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.recruit__tel {
  font-size: 2rem;
  line-height: 50px;
  color: #8b0000;
  font-weight: bold;
  display: block;
  transition: 0.3s;
}

/* ************************************************************************************************
   access.php
   ************************************************************************************************ */
.access02__img {
  width: 100%;
  display: block;
  margin: 0 auto 5rem;
}

.access02__table {
  width: 650px;
  margin: 0 auto 8rem;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}

.access02__table tr {
  border-bottom: 1px dashed #bc8d9f;
}

.access02__table th {
  width: 26%;
  padding: 2rem;
  vertical-align: middle;
}

.access02__table td {
  width: 74%;
  padding: 2rem;
  vertical-align: middle;
}

.access02__footer {
  background-position: center;
  padding: 1rem 0 8rem;
  margin-top: -4rem;
}

/* ************************************************************************************************
   news
   ************************************************************************************************ */
/***** 共通 *****/
.footer__widget {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer__widget h2 {
  font-size: 2.5rem;
}

.footer__widget h5 {
  margin-bottom: 1rem;
}

.footer__widget li {
  line-height: 1.8;
  font-size: 1.4rem;
}

.widget-area {
  text-align: center;
  margin-bottom: 3rem;
  width: 30%;
}

.nocomments {
  display: none;
}

/***** 新着情報一覧ページ（index.php） *****/
.news02 {
  margin: 0 0 8rem;
}

/* サムネイルサイズ */
.news02__thumbnail {
  display: block;
  height: 270px;
  overflow: hidden;
}
.news02__thumbnail img {
  width: 100%;
  height: auto;
}

/* 記事一覧 */
.news02 .container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news02__post {
  width: 45%;
  text-align: center;
  margin: 0 2rem 5rem;
  border: 7px double #f7ebec;
}

.news02__contents {
  padding: 1rem 2rem 2rem;
}

.news02__blog_info {
  text-align: right;
  font-size: 1.2rem;
}

.news02__ttl {
  margin-bottom: 1rem;
}

.news02__cal {
  margin-bottom: 0.5rem;
}

.news02__txt {
  text-align: left;
}

.nav-below {
  margin-top: 3rem;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
}

/***** 個別投稿ページ（single.php） *****/
.single02 {
  margin: 0 0 8rem;
}

.single__ttl {
  font-weight: normal;
}

.single .header-sub__item {
  padding-top: 6rem;
}

.single02__thumbnail img {
  width: 100%;
  height: auto;
}

.single02__contents {
  width: 90%;
  margin: 3rem auto 6rem;
}

.single02__blog_info {
  text-align: right;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.single02__cal {
  margin-bottom: 1rem;
}

.single02__cat {
  margin-bottom: 2rem;
}

.single__line {
  display: block;
  margin: 6rem auto 3rem;
}

/***** カテゴリーページ（category.php） *****/
.category__ttl a {
  font-size: 3.2rem;
  font-weight: normal;
}
/* ************************************************************************************************
   contact
   ************************************************************************************************ */
.contact-bg-inner{
  margin-bottom: 6rem;
}

.contact-bg-inner .concept__bg,
.contact-bg-inner .concept__bg02,
.contact-bg-inner .concept__bg03,
.contact-bg-inner .concept__bg04,
.contact-bg-inner .concept__bg05,
.contact-bg-inner .concept__bg06,
.contact-bg-inner .concept__bg07{
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.text--marker{
  background:linear-gradient(transparent 60%, #f1cf9d 60%);
  font-weight: bold;
}
/***** お問い合わせフォーム *****/
.contact {
  margin: 0 0 8rem;
}

.contact__link {
  text-decoration: underline;
  color: #ae4610;
  margin: 1rem 0;
  display: inline-block;
  transition: all 0.4s;
}

.contact__link:hover {
  color: #8b0000;
  transition: all 0.3s;
}

.contact__consent a {
  text-decoration: underline;
  color: #ae4610;
  transition: all 0.4s;
}

.contact__consent a:hover {
  color: #8b0000;
  transition: all 0.3s;
}

/* Contactform - お問い合わせフォーム */
.contact__box {
  text-align: center;
  margin-bottom: 6rem;
}

.contact__box img{
  width: 10%;
}

.required {
  font-size: smaller;
  color: #ae4610;
}

.hyphen {
  margin: 0 0.5rem;
  vertical-align: text-bottom;
}

.wpcf7 {
  width: 100%;
  margin: 0 0 2.5em !important;
  padding: 0;
  font-size: 1.4rem;
}

.wpcf7 form {
  margin: 1.5em auto 0;
  width: 70%;
}

.wpcf7 p {
  margin-bottom: 1em;
}

.wpcf7 input,
.wpcf7 textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 1rem;
  border: 1px solid #ae4610;
  background: #fff;
  line-height: 1.5;
  margin: 0.5rem auto 2rem;
}

.wpcf7 select,
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: auto;
  max-width: 97%;
  padding: 1rem;
  border: 1px solid #ae4610;
  background: #fff;
  margin: 0.5rem auto 2rem;
}

.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
  line-height: 1.5;
}

.wpcf7 .wpcf7-list-item {
  display: block;
  text-align: center;
}

.wpcf7 textarea {
  height: 300px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border: 1px solid #ae4610;
  outline: none;
}

.wpcf7 .wpcf7-submit {
  -webkit-transition: all 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 200px;
  height: 48px;
  margin: 5rem auto 0;
  border: none !important;
  outline: none;
  background-color: #ae4610;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.wpcf7 .wpcf7-submit:before,
.wpcf7 .wpcf7-submit:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.wpcf7 .wpcf7-submit:hover {
  opacity: 0.6;
}

.wpcf7 .wpcf7-submit .wpcf7-not-valid {
  background: pink;
}

.wpcf7 .wpcf7-submit .wpcf7-response-output {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  margin: 1rem 0 0;
  padding: 0.8rem 3.5rem 0.8rem 1.4rem;
  border-radius: 4px;
}

.wpcf7 .wpcf7-submit .wpcf7-validation-errors {
  border: 1px solid #eed3d7;
  background-color: #f2dede;
  color: #b94a48;
}

.wpcf7 .wpcf7-submit .wpcf7-mail-sent-ok {
  border: 1px solid #bce8f1;
  background-color: #d9edf7;
  color: #3a87ad;
}

input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number.smallform {
  width: 11%;
}

.wpcf7 input[type="checkbox"] {
  margin: 0.5rem auto 1rem;
}

/* プライバシーポリシーの埋め込み */
@media only screen and (max-width: 550px) {
  [class*="grid-"].noGutter > .col {
    padding: 0%;
  }
}

.blk-iframe {
  border: 1px solid #e4e4e4;
  background-color: #fff;
  width: 700px;
  max-width: 100%;
  height: 20em;
  margin: 3em auto;
  overflow: auto;
  /*  -webkit-overflow-scrolling: touch;*/
}

.privacy {
  font-size: 0.9em;
  line-height: 1.8;
  padding: 5%;
}

.privacy h4 {
  text-align: center;
  border-bottom-style: none;
  margin-top: 0;
  padding: 0;
}

.privacy h4::after {
  content: none;
}

.privacy h5 {
  margin: 1em 0 0.5em;
}

.policy h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 5rem;
}

.policy h3 {
  font-size: 2rem;
  margin: 2rem 0 0.5rem 0;
}

/* ************************************************************************************************
   アニメーション
   ************************************************************************************************ */
/***** ローディングアニメーション *****/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 120px;
  height: 120px;
}

.type5 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ae4610;
  animation: spinner5_1 1.2s infinite linear forwards;
}

@keyframes spinner5_1 {
  0% {
    opacity: 0.2;
    transform: translate(-50%, -50%) rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 21px 21px rgba(174, 70, 16, 0.8),
      -21px -21px rgba(174, 70, 16, 0.8), 21px -21px rgba(174, 70, 16, 0.8),
      -21px 21px rgba(174, 70, 16, 0.8);
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/***** ホバーアニメーション *****/
.header-nav__list:hover .header-nav__item,
.header-nav__list--single:hover .header-nav__item--single,
.header-nav__item--second li:hover,
.access__tel:hover,
.recruit__tel:hover,
.news02 a:hover,
.single02 a:hover {
  color: #ae4610;
  transition: 0.3s;
}
.news__ttl a:hover {
  color: #ae4610;
  transition: 0.3s;
}

.header-nav__item--second li,
.news02 a,
.single02 a,
.news__ttl a {
  transition: 0.5s;
}

a:hover img {
  opacity: 0.6;
  transition: 0.6s;
}

img {
  transition: 0.6s;
}

/***** ボタン *****/
.btn1,
.btn2 {
  display: block;
  width: 219px;
  height: 50px;
  border: 1px solid #ae4610;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 2;
  color: #333;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn1 {
  font-size: 1.6rem;
}

.btn1::before,
.btn2::before,
.btn1::after,
.btn2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.btn1,
.btn2,
.btn1::before,
.btn2::before,
.btn1::after,
.btn2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn1:hover,
.btn2:hover {
  color: #fff;
}

.btn1::after,
.btn2::after {
  top: -100%;
  width: 100%;
  height: 100%;
}

.btn1:hover::after,
.btn2:hover::after {
  top: 0;
  background-color: rgba(174, 70, 16, 0.7);
}

.nav-previous,
.nav-next {
  display: block;
  width: 180px;
  height: 50px;
  border: 1px solid #ae4610;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 20px;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 2;
  color: #333;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-previous,
.nav-next {
  font-size: 1.4rem;
}

.nav-previous a,
.nav-next a {
  display: block;
}

.nav-previous,
.nav-next,
.nav-previous::before,
.nav-next::before,
.nav-previous::after,
.nav-next::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: #fff;
  background: rgba(188, 141, 160, 0.7);
}

.nav-previous:hover::after,
.nav-next:hover::after,
.nav-previous:hover::after,
.nav-next:hover::after {
  top: 0;
  background-color: rgba(188, 141, 160, 0.7);
}

/***** ヘッダースクロール *****/
header.hide {
  top: -66px;
}

/***** ハンバーガーメニュー *****/
#nav-drawer {
  position: relative;
}

.nav-unshown {
  display: none;
}

#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 3px; /*線の太さ*/
  width: 25px; /*長さ*/
  border-radius: 3px;
  background: #333;
  display: block;
  content: "";
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*ハンバーガーメニュー閉じる用のカバー*/
#nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*ハンバーガーメニュー中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999; /*最前面に*/
  width: 90%; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px; /*最大幅（調整してください）*/
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /*背景色*/
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(105%); /*右に隠しておく*/
}

#header-sp {
  margin-top: 5rem;
  position: relative;
}

.header-sp__list {
  margin-bottom: 4rem;
}

.header-sp__item {
  display: block;
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

#nav-input:checked ~ #nav-close {
  display: block; /*カバーを表示*/
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%); /*中身を表示（左へスライド）*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#nav-input2:checked ~ #nav-content {
  display: none;
}

/***** ページトップに戻るボタン *****/
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 100;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(174, 70, 16, 0.7);
  opacity: 0.6;
  border-radius: 50%;
}

#page_top:hover {
  background: rgba(174, 70, 16, 1);
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 2.5rem;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/***** concept.html/スライダー *****/
/* .swiper-container {
  padding-bottom: 5rem !important;
}

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: #8b0000 !important;
}

.swiper-slide img {
  width: 100%;
  max-width: 100%;
} */
