@charset "utf-8";

/*
Theme Name: アライカツラdeco
*/


/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 126.6rem;
  --mainColor: #726358;
  --subColor: #1F4A58;
  --subColor2: #0B2A34;
  --black: #212121;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1439px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #212121;
  height: 100%;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  background: #F1F1F1;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}


table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #212121;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
  outline: none;
}

section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.small_container {
  /*max-width: 112.6rem;*/
  max-width: 116rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
  #grid {
    background: repeating-linear-gradient(90deg, #DDDDDD, #DDDDDD 1px, rgba(255,255,255,0) 1px, rgba(255,255,255,0) 25.2rem);
  }
}
@media print, screen and ( min-width : 768px ) {
  .container {
    padding-left: 0;
    padding-right: 0;
    max-width: var(--inner);
  }
  .section {
    padding: 60px 0;
  }
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

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

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

.text-center {
  text-align: center !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
.lang-switcher {
  background: #F1F1F1;
  z-index: 999;
  width: 12rem;
  font-size: 1.2rem;
  position: relative;
}
.selected-lang {
  border: 1px solid #212121;
  height: 2.5rem;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2.8rem;
  cursor: pointer;
}
.selected-lang:before {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: url(./img/ico-lang.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}
.selected-lang:after {
  content: "";
  width: .7rem;
  height: .6rem;
  background: url(./img/acc-arrow.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  transition: .3s;
}
.selected-lang.open:after {
  transform: translateY(-50%) rotate(180deg);
}

.lang-switcher ul {
  display: none;
  border: 1px solid #212121;
  position: absolute;
  width: 100%;
  top: calc(100% - 1px);
  left: 0;
  background: #fff;
}
.lang-switcher ul li {
  height: 2.5rem;
  display: flex;
  align-items: center;
  padding-left: 2.8rem;
}
.lang-switcher ul li .bogoflags {
  display: none;
}
.lang-switcher ul li.current {
  display: none;
}


#nav {
  background: #212121;
  position: fixed;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
#nav .nav__inner {
  position: relative;
}
.nav__index {
  position: absolute;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 .5em;
  left: 0;
  top: -1.5rem;
}
#nav__list {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
}

#nav__list li a {
  color: #fff;
}
.nav__lang-switcher,
.nav__lang-switcher a {
  color: #fff;
}
.nav__lang-switcher a {
  display: block;
  padding: 0 .2em;
}
.nav__lang-switcher .bogo-language-switcher {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: .7rem;
  border-left: 1px solid #fff;
  padding-left: 1rem;
  font-size: 1.2rem;
}


.nav__lang-switcher .bogoflags {
  display: none;
}
.nav__lang-switcher .bogo-language-switcher .current a {
  background: #F24671;
}


@media only screen and ( max-width : 767px ) {
  #nav {
    left: 2rem;
    bottom: 1.5rem;
    width: calc(100% - 4rem);
    padding: 0 1.5rem;
  }
  #nav .nav__inner {
    justify-content: space-between;
    height: 3.5rem;
  }
  #nav__list {
    overflow-x: auto;
    width: calc(100% - 7rem);
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  #nav__list::-webkit-scrollbar {
    display: none;
  }
  #nav__list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #nav__list li {
    margin-right: 2.5rem;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .nav__lang-switcher {
    width: 6rem;
    margin-left: 1rem;
    flex-shrink: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  #nav {
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    width: 62rem;
  }
  #nav .nav__inner {
    height: 4rem;
  }
  #nav__list li {
    margin-right: 4rem;
    font-size: 1.4rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer_content {
  position: relative;
  background: #212121;
  color: #fff;
}
#footer_content .container {
  position: relative;
  z-index: 2;
}

.footer_logo img {
  animation: rotate 20s linear infinite;
}
#footer .copyright {
  color: #ccc;
  background-color: #F1F1F1;
  font-size: 1.2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer__title {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 2;
}
.footer__title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  line-height: 1;
}
.footer__title-space {
  width: 0.3em;
}

.footer_nav_item {
  position: relative;
}

.footer_nav_link {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  color: #fff;
  position: relative;
  display: inline-block;
}
.footer_nav_link:before {
  content: "";
  background: url(./img/arrow.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.5rem;
  height: 1.2rem;
}

.footer_sns_link img {
  width: 100%;
}
#footer .footer_sns_text {
  color: #ccc;
  font-size: 1.2rem;
}
#footer .footer_subnav li a {
  color: #ccc;
  text-decoration: underline;
  font-size: 1.4rem;
}

#footer .copyright {
  font-size: clamp(12px, 0.88vw, 14px);
}

@media only screen and ( max-width : 767px ) {
  #footer {
    margin-top: 5rem;
  }
  .footer_logo {
    width: 25.87vw;
    margin: 0 auto 2.5rem;
    padding-top: 2.5rem;
  }
  .footer_nav_list {
    margin-bottom: 2rem;
  }
  .footer_nav_link {
    padding-left: 2rem;
  }
  .footer_nav_list li {
    margin-bottom: 2.5rem;
    font-size: 5.33vw;
  }
  .footer_nav_list li:nth-child(1),.footer_nav_list li:nth-child(3) {
    width: 60%;
  }
  .footer_nav_list li:last-child {
    margin-bottom: 0;
  }
  .footer__sp_bg {
    padding-top: 3rem;
    background: url(./img/footer__bg_sp.svg) repeat-y left top / 100% 100% #212121;
    background-size: cover;
    z-index: 1;
  }
  .footer_sns_link {
    width: 3.4rem;
    margin-right: 1.5rem;
  }
  .footer_subnav_item {
    margin: 2rem 0 2.5rem;
  }
  .footer__title {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 8vw;
  }
  .footer__title-char:nth-child(13) {
    display: none;
  }
  .footer__title-char:nth-child(14) {
    margin-top: 1rem;
  }
  #footer .copyright {
    padding: .5rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    width: 92.7%;
    margin: 0 auto;
  }
  #footer_content {
    padding: 5rem 0 0;
  }
  #footer_content:after {
    content: "";
    width: 38%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: url(./img/footer__bg.svg) repeat-x left top / auto 100% #212121;
    z-index: 1;
  }
  #footer_content .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .footer_logo {
    position: absolute;
    top: 0;
    right: 5rem;
    width: 15rem;
  }
  .footer_nav {
    margin-bottom: 11rem;
  }
  .footer_nav_list {
    max-width: 56rem;
  }
  .footer_nav_item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2rem;
  }
  .footer_nav_item:nth-child(3n) {
    margin-right: 0;
  }
  .footer_nav_link {
    font-size: 2.4rem;
    padding-left: 2.6rem;
  }
  .footer_nav_bottom {
    margin-bottom: 5rem;
  }
  .footer_sns_link {
    width: 3.4rem;
    margin-right: 1.5rem;
  }
  .footer__title {
    display: flex;
    justify-content: center;
    font-size: 5.86vw;
    bottom: -0.07em;
  }
  #footer .copyright {
    padding: 1.5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CONTACT

--------------------------------------------------------------------------------------------- */
#contact {
  position: relative;
  z-index: 64;
}
#contact .sec__title {
  text-align: right;
}

@media only screen and ( max-width : 767px ) {
  #contact {
    padding-top: 5rem;
  }
  #contact .sec__title {
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #212121;
  }
  #contact .contact__title {
    width: 52.27vw;
    margin-bottom: 2.5rem;
  }
  #contact .contact__right a {
    margin-right: auto;
    margin-left: auto;
  }
  .contact__text {
    line-height: 2.3;
  }
  #contact .btn {
    margin-top: 3.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #contact {
    border-top: .3rem solid #212121;
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
  #contact .sec__title {
    margin-bottom: 8rem;
  }
  #contact .contact__title {
    margin-bottom: 5rem;
  }
  .contact__text {
    line-height: 2.5;
  }
}



/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
.sec__title {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  color: #ccc;
}
.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
}
.contain {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain;';
  width: 100%;
  height: 100%;
}
.btn {
  background: #212121;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  border-radius: 5rem;
  position: relative;
  width: 26rem;
  height: 5rem;
}
.btn:hover {
  opacity: 1;
}
.btn:before,
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  width: 2rem;
  transition: 0.3s;
}
.btn:before {
  background: #fff;
  border-radius: 50%;
  height: 2rem;
  z-index: 1;
}
.btn:hover:before {
  transform: translateY(-50%) scale(1.2);
}
.btn:after {
  background: url(./img/arrow.svg) no-repeat center / contain;
  height: .8rem;
  z-index: 2;
}
.btn_center {
  margin: 0 auto;
}

@media only screen and ( max-width : 767px ) {
  .sec__title {
    letter-spacing: .3em;
    font-size: 1.1em;
  }
  .btn {
    height: 4.5rem;
    width: 24rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #main {
    width: 92.7%;
    margin: 0 auto;
  }
  .sec__title {
    letter-spacing: .3em;
    font-size: 2rem;
  }
  .btn_center_pc {
    margin: 0 auto;
  }
}


/* ---------------------------------------------------------------------------------------------

　   pagenavi

--------------------------------------------------------------------------------------------- */

.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-pagenavi .pages,
.previouspostslink,
.nextpostslink {
  display: none;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 6rem;
  height: 6rem;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  color: #212121;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  border: 1.5px solid #212121;
}
.wp-pagenavi .page:hover {
  background: #212121;
  color: #fff;
}
.wp-pagenavi .current {
  background: #212121;
  color: #fff;
}
/* .wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
} */
.wp-pagenavi .extend {
  display: flex;
  align-items: center; 
}
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: flex;
  align-items: center;
  padding-top: .7em;
}
@media only screen and ( max-width : 767px ) {
  .wp-pagenavi {
    margin-top: 5rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 4rem;
    height: 4rem;
    line-height: 3.5rem;
    margin: 0 .5rem;
    font-size: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .wp-pagenavi {
    margin-top: 10rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    line-height: 5.5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

