@charset "UTF-8";
/* Foundation
   ========================================================================== */
/*
html5doctor.com Reset Stylesheet
v1.4.1
2010-03-01
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tfoot, thead, th,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

table {
  float: left;
}

.fc-header-title {
  font-size: 20px;
  font-weight: normal;
}

/* Base
   ========================================================================== */
html {
  font-size: 62.5%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
}
@media (min-width: 1260px) and (max-width: 1359px) {
  html {
    font-size: 57.5%;
  }
}
@media (min-width: 1080px) and (max-width: 1259px) {
  html {
    font-size: 49.5%;
  }
}
@media (min-width: 769px) and (max-width: 1079px) {
  html {
    font-size: 45.5%;
  }
}
@media screen and (max-width: 739px) {
  html {
    font-size: 62.5%;
  }
}
html.wf-active, html.loading-delay {
  visibility: visible;
}

body {
  color: #000000;
  font-family: zen-old-mincho, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 4.6rem;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  background-color: #f9f9f9;
}

img {
  border: none;
  vertical-align: bottom;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
a:before, a:after {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

hr {
  display: none;
  clear: both;
}

.left {
  float: left !important;
}

.clear_both {
  float: none !important;
}

.right {
  float: right !important;
}

/******************** アニメーション ********************/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* 4-1 ふわっ（その場で） */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  /*ゆっくり出現するため数値変更*/
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.blurTrigger,
.fadeInTrigger {
  opacity: 0;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
  opacity: 0;
}

/*==================================================
動かしたい動き（今回は" ふわっ" を採用）
===================================*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* Layout
   ========================================================================== */
/* Header - リファクタリング版（デスクトップファースト + SP上書き）
   ========================================================================== */
header {
  width: 100%;
  height: 11.8rem;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}
@media screen and (max-width: 739px) {
  header {
    height: 8rem;
    overflow: hidden;
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  header {
    padding: 0 1.7rem;
  }
}
header .headerbox {
  width: 100%;
  height: 100%;
  position: relative;
  border-bottom: 0.1rem solid #ececec;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header #mainnavi {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  display: none;
}
header #mainnavi .navibox {
  float: left;
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header #mainnavi .navibox h2 {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 739px) {
  header #mainnavi .navibox h2 {
    margin-bottom: 4rem;
  }
  header #mainnavi .navibox h2 img {
    max-width: 60%;
  }
}
header #mainnavi .navibox .navi01 {
  float: left;
  width: 37%;
  position: relative;
}
@media screen and (max-width: 739px) {
  header #mainnavi .navibox .navi01 {
    width: 50%;
  }
}
header #mainnavi .navibox .navi01 li {
  float: left;
  width: 100%;
  position: relative;
}
header #mainnavi .navibox .navi01 li a {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  header #mainnavi .navibox .navi01 li a {
    font-size: 1.4rem !important;
    letter-spacing: 0.02em !important;
  }
}
header #mainnavi .navibox .navi01 li a:before {
  content: "";
  width: 0;
  height: 0.1rem;
  position: absolute;
  bottom: -1rem;
  left: 0;
  background-color: #333333;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  z-index: -1;
}
header #mainnavi .navibox .navi01 li a:hover {
  padding: 0 0.5rem;
}
header #mainnavi .navibox .navi01 li a:hover:before {
  width: 100%;
}
header #mainnavi .navibox .en_btn {
  display: inline-block;
  position: relative;
  font-weight: 700;
  line-height: 2.8rem;
  background-image: url("../images/icon_arrow01.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0.6rem auto;
  padding-left: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  header #mainnavi .navibox .en_btn {
    font-size: 1.5rem;
  }
}
header #mainnavi .navibox .en_btn:hover {
  text-decoration: underline;
}
header #mainnavi .navibox .sns {
  display: inline-block;
  width: 11rem;
  position: relative;
  top: 0.4rem;
  margin-right: 6rem;
}
@media screen and (max-width: 739px) {
  header #mainnavi .navibox .sns {
    margin-right: 2rem;
  }
}
header #mainnavi .navibox .sns li {
  float: left;
  width: 2.8rem;
  text-align: center;
  margin-right: 1.3rem;
}
@media screen and (max-width: 739px) {
  header #mainnavi .navibox .sns li {
    margin-right: 0.8rem;
  }
}
header #mainnavi .navibox .sns li a {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
header #mainnavi .navibox .sns li a img {
  float: left;
}
header #mainnavi .navibox .sns li:last-child {
  margin-right: 0;
  padding-top: 0.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header-logo {
  display: inline-block;
  position: relative;
  width: 16%;
  max-width: 20rem;
}
.header-logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 739px) {
  .header-logo {
    width: 38%;
    max-width: 15rem;
    min-width: 12rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-logo h1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header-menu {
  padding-right: 20.2rem;
}
@media screen and (max-width: 739px) {
  .header-menu {
    display: none;
  }
}
.header-menu .header-menu-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
.header-menu .header-menu-list li a {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000;
  text-decoration: none;
}
.header-menu .header-menu-list li a:hover {
  opacity: 0.5;
}

.openbtn {
  width: 12.2rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.5rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 739px) {
  .openbtn {
    width: 8rem;
    position: fixed;
    top: 3.9rem;
  }
}
.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 0.1rem;
  background: #000000;
  width: 60%;
}
.openbtn span:nth-of-type(1) {
  top: 1.1rem;
}
.openbtn span:nth-of-type(2) {
  top: 1.9rem;
}
.openbtn span:nth-of-type(2)::after {
  content: "MENU";
  position: absolute;
  top: -1.3rem;
  right: -5rem;
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 739px) {
  .openbtn span:nth-of-type(2)::after {
    right: -4.5rem;
  }
}
.openbtn.active span:nth-of-type(1) {
  -webkit-transform: translateY(0.6rem) rotate(-18deg);
          transform: translateY(0.6rem) rotate(-18deg);
  width: 53%;
}
.openbtn.active span:nth-of-type(2) {
  top: 1.1rem;
  -webkit-transform: translateY(0.6rem) rotate(18deg);
          transform: translateY(0.6rem) rotate(18deg);
  width: 53%;
}
.openbtn.active span:nth-of-type(2)::after {
  content: "Close";
  -webkit-transform: translateY(0) rotate(-18deg);
          transform: translateY(0) rotate(-18deg);
  top: -3rem;
  right: -5.5rem;
}
@media screen and (max-width: 739px) {
  .openbtn.active span:nth-of-type(2)::after {
    top: -2.4rem;
    right: -4.5rem;
  }
}

/* Footer - リファクタリング版（デスクトップファースト + SP上書き）
   ========================================================================== */
footer {
  float: left;
  width: 100%;
  position: relative;
  padding: 13rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  footer {
    padding: 7rem 0;
  }
}
footer .footer_wrap {
  width: 89.3%;
  min-width: 134rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 739px) {
  footer .footer_wrap {
    width: 90%;
    min-width: initial;
  }
}
footer .footer_wrap h3 {
  width: 24.7rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 739px) {
  footer .footer_wrap h3 {
    float: left;
    position: relative;
    margin-bottom: 3rem;
  }
}
footer .footer_wrap .footer_navibox {
  float: left;
  width: 100%;
  position: relative;
  padding-left: 30.7rem;
  padding-top: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 739px) {
  footer .footer_wrap .footer_navibox {
    display: none;
  }
}
footer .footer_wrap .footer_navibox .footer_navi {
  float: left;
  width: 82rem;
  position: relative;
  line-height: 2.6rem;
  margin-right: 5.5rem;
}
@media screen and (max-width: 739px) {
  footer .footer_wrap .footer_navibox .footer_navi {
    width: 77.2%;
  }
}
footer .footer_wrap .footer_navibox .footer_navi:before {
  content: "";
  width: 2.9rem;
  height: 2.9rem;
  position: absolute;
  top: 1rem;
  right: -5.2rem;
  background-image: url("../images/icon_slash.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
footer .footer_wrap .footer_navibox .footer_navi li {
  display: inline-block;
  position: relative;
  margin-right: 0.8rem;
}
footer .footer_wrap .footer_navibox .footer_navi li:last-child {
  margin-right: 0;
}
footer .footer_wrap .footer_navibox .footer_navi li a {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
footer .footer_wrap .footer_navibox .footer_navi li a:hover {
  text-decoration: underline;
}
footer .footer_wrap .footer_navibox .en_btn {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  footer .footer_wrap .footer_navibox .en_btn {
    padding: 1rem 2rem;
  }
}
footer .footer_wrap .footer_navibox .en_btn:hover {
  text-decoration: underline;
}
footer .footer_wrap .address {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 739px) {
  footer .footer_wrap .address {
    margin-bottom: 2rem;
  }
}
footer .footer_wrap .address dt {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-right: 3rem;
}
@media screen and (max-width: 739px) {
  footer .footer_wrap .address dt {
    width: 100%;
    font-size: 1.4rem;
    line-height: 3.2rem;
  }
}
footer .footer_wrap .address dd {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 739px) {
  footer .footer_wrap .address dd {
    width: 100%;
  }
}
footer .footer_wrap .copyright {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
footer .footer_info {
  float: left;
  width: 91.05%;
  max-width: 122rem;
  position: relative;
}
@media screen and (max-width: 739px) {
  footer .footer_info {
    width: 100%;
    max-width: initial;
    margin-bottom: 2rem;
  }
}
footer .sns {
  width: 11rem;
  position: absolute;
  top: 1rem;
  right: 0;
}
@media screen and (max-width: 739px) {
  footer .sns {
    float: left;
    width: 11rem;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
  }
}
footer .sns li {
  float: left;
  width: 2.8rem;
  text-align: center;
  margin-right: 1.3rem;
}
footer .sns li a {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
footer .sns li a img {
  float: left;
}
footer .sns li:last-child {
  margin-right: 0;
  padding-top: 0.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Contact
========================================================================== */
#contact {
  float: left;
  width: 100%;
  height: 54rem;
  position: relative;
  margin-top: 16rem;
}
@media screen and (max-width: 739px) {
  #contact {
    height: auto;
    margin-top: 10rem;
  }
}
#contact .contactbox {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #333333;
}
@media screen and (max-width: 739px) {
  #contact .contactbox {
    width: 100%;
    background-color: hsla(0, 0%, 20%, 0.5);
  }
}
#contact .contactbox .contact01 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 739px) {
  #contact .contactbox .contact01 {
    float: left;
    width: 100%;
    position: relative;
    color: #FFF;
    text-align: center;
    padding: 7rem 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}
#contact .contactbox .contact01 h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
#contact .contactbox .contact01 h3 span {
  float: left;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.5rem;
}
#contact .contactbox .contact01 .btn {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
#contact .contactbox .contact01 .btn:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#contact .contact_img {
  float: right;
  width: 50%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 739px) {
  #contact .contact_img {
    width: 100%;
    height: 100%;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

/* Information
========================================================================== */
#information {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 16rem;
}
#information .infobox {
  float: left;
  width: 100%;
  position: relative;
}
#information .infobox a {
  float: left;
  width: 49.9%;
  height: 46rem;
  position: relative;
  background-color: #FFF;
  padding: 4.4rem 7rem 7rem 7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #information .infobox a {
    width: 49.8%;
    height: 24rem;
    text-align: center;
    padding: 2rem;
  }
}
#information .infobox a:hover {
  opacity: 0.5;
}
#information .infobox a.philosophy_btn {
  float: right;
}
#information .infobox a h4 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
@media screen and (max-width: 739px) {
  #information .infobox a h4 {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0em;
    margin-bottom: 1rem;
  }
}
#information .infobox a .image {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 739px) {
  #information .infobox a .image {
    display: inline-block;
    max-width: 13rem;
    margin: 0 auto;
  }
}
#information .infobox a .btn {
  min-width: 11rem;
  position: absolute;
  top: 4.4rem;
  right: 6rem;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  background-image: url("../images/icon_arrow01.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 0.6rem auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #information .infobox a .btn {
    display: inline-block;
    bottom: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 1rem;
  }
}

/* Price
========================================================================== */
#price {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 17rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 739px) {
  #price {
    margin-top: 10rem;
    margin-bottom: 2rem;
  }
}
#price .price_btn {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.1em;
  background-color: #FFF;
  background-image: url("../images/icon_arrow01.svg");
  background-position: right 7rem center;
  background-repeat: no-repeat;
  background-size: 0.6rem auto;
  padding: 7.7rem 7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #price .price_btn {
    font-size: 1.6rem;
    background-position: right 4rem center;
    padding: 2.7rem 3rem;
  }
}
#price .price_btn:hover {
  opacity: 0.5;
  background-position: right 6rem center;
}

/* Component
   ========================================================================== */
/* Button
   -------------------------------------------------------------------------- */
.sendbtn01 {
  display: inline-block;
  width: 35.4rem;
  height: 8.6rem;
  position: relative;
  color: #FFF;
  font-size: 1.8rem;
  font-family: zen-old-mincho, sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: #000000;
  background-image: url("../images/icon_arrow03.svg");
  background-position: left 1rem center;
  background-repeat: no-repeat;
  background-size: 6rem auto;
  border: none;
  border-radius: 4.3rem;
  cursor: pointer;
  -webkit-appearance: none;
  padding-bottom: 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* その他のボタンスタイル */
}

.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 0.1rem;
  background: #000000;
  width: 60%;
}

.btn01 {
  display: inline-block;
  min-width: 21rem;
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  background-image: url("../images/icon_arrow01.svg");
  background-position: right 4.7rem center;
  background-repeat: no-repeat;
  background-size: 0.7rem auto;
  padding: 2.7rem 12.6rem 2.7rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn01:before {
  content: "";
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5rem;
  background-color: #FFF;
  border-radius: 5rem;
  -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
  z-index: -1;
}

@media screen and (min-width: 1024px) {
  .btn01:hover {
    background-position: right 3rem center;
    padding: 2.7rem 6rem 2.7rem 3rem;
  }
}

.btn01:hover:before {
  width: 100%;
}

.btn02 {
  display: inline-block;
  min-width: 20rem;
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  background-color: #FFF;
  background-image: url("../images/icon_arrow01.svg");
  background-position: right 3rem center;
  background-repeat: no-repeat;
  background-size: 0.6rem auto;
  border-radius: 10rem;
  -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
  padding: 0.5rem 0 0.9rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn03 {
  display: inline-block;
  min-width: 38rem;
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0em;
  background-color: #000000;
  background-image: url("../images/icon_arrow03.png");
  background-position: left 1.5rem top 1rem;
  background-repeat: no-repeat;
  background-size: 6rem auto;
  border-radius: 4.3rem;
  padding: 1.5rem 6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn03:hover {
  background-position: left 2rem top 1rem;
}

@media screen and (max-width: 739px) {
  .btn01 {
    display: inline-block;
    min-width: 16rem;
    position: relative;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    background-image: url("../images/icon_arrow01.svg");
    background-position: right 2.2rem center;
    background-repeat: no-repeat;
    background-size: 0.7rem auto;
    padding: 1rem 7.6rem 1rem 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .btn01:before {
    content: "";
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -2.5rem;
    background-color: #FFF;
    border-radius: 5rem;
    -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
            box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
    z-index: -1;
  }
  .btn02 {
    display: inline-block;
    min-width: 20rem;
    position: relative;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    background-color: #FFF;
    background-image: url("../images/icon_arrow01.svg");
    background-position: right 3rem center;
    background-repeat: no-repeat;
    background-size: 0.6rem auto;
    border-radius: 10rem;
    -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
            box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
    padding: 0.5rem 0 0.9rem 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .btn03 {
    display: inline-block;
    width: 30rem;
    max-width: 100%;
    position: relative;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0em;
    background-color: #000000;
    background-image: url("../images/icon_arrow03.png");
    background-position: left 1rem top 1.5rem;
    background-repeat: no-repeat;
    background-size: 4rem auto;
    border-radius: 4.3rem;
    padding: 1rem 1rem 1rem 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* Form
   -------------------------------------------------------------------------- */
#mailform input,
#mailform select,
#mailform textarea {
  float: left;
  position: relative;
  font-size: 1.6rem;
  /* その他のフォームスタイル */
}

/* Navigation
   -------------------------------------------------------------------------- */
#mainnavi {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  display: none;
}

/* Pagenavi
   ========================================================================== */
.wp-pagenavi {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  line-height: 1em;
  font-weight: normal;
  margin-top: 12rem;
}
.wp-pagenavi a {
  display: inline-block;
  position: relative;
  border: none;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  line-height: 2.8rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0.1rem solid #1a1a1a;
  padding-bottom: 1.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wp-pagenavi a:hover {
  text-decoration: none;
}
.wp-pagenavi .previouspostslink {
  width: 10rem;
  margin-right: 3.5rem;
}
.wp-pagenavi .larger {
  width: 4rem;
  margin-right: 3.5rem;
  text-align: center;
}
.wp-pagenavi .smaller {
  width: 4rem;
  margin-right: 3.5rem;
  text-align: center;
}
.wp-pagenavi .current {
  width: 4rem;
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  margin-right: 3.5rem;
  font-weight: 400;
  line-height: 2.8rem;
  display: inline-block;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 0.1rem solid #1a1a1a;
  padding-bottom: 1.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wp-pagenavi .current:before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  top: -2rem;
  left: 1.6rem;
  background-color: #000000;
  border-radius: 0.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wp-pagenavi .backpostslink {
  width: 160px;
  letter-spacing: 0.1em;
}
.wp-pagenavi .nextpostslink {
  width: 10rem;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .extend {
  display: none;
}
.wp-pagenavi .first {
  display: none;
}
.wp-pagenavi .last {
  display: none;
}

.pagenavi {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 15rem;
}
.pagenavi a {
  display: inline-block;
  position: relative;
  text-align: center;
  border: none;
  text-decoration: none !important;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-bottom: 0.1rem solid #000000;
  padding-bottom: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pagenavi a:hover {
  text-decoration: none;
}
.pagenavi .previouspostslink a {
  width: 10rem;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.pagenavi .nextpostslink a {
  width: 10rem;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.pagenavi .backpostslink a {
  width: 16rem;
}

/* SP版のスタイルを上書き */
@media screen and (max-width: 739px) {
  .wp-pagenavi {
    margin-top: 10rem;
  }
  .wp-pagenavi a {
    margin-bottom: 2rem;
  }
  .wp-pagenavi .previouspostslink {
    width: 7rem;
    margin-right: 2rem;
  }
  .wp-pagenavi .larger {
    margin-right: 2rem;
  }
  .wp-pagenavi .current {
    margin-right: 2rem;
  }
  .wp-pagenavi .nextpostslink {
    width: 7rem;
  }
  .pagenavi {
    margin-top: 7rem;
  }
  .pagenavi .previouspostslink a {
    width: 7rem;
  }
  .pagenavi .nextpostslink a {
    width: 7rem;
  }
  .pagenavi .backpostslink a {
    width: 12rem;
  }
}
/* ページタイトル
   -------------------------------------------------------------------------- */
#pagetitle, #pagetitle_base, .subtitle01, .subtitle02, .subtitle03, .subtitle04 {
  float: left;
  width: 100%;
  position: relative;
}

#pagetitle {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 16rem;
}
#pagetitle .main_img {
  float: left;
  width: 100%;
  height: 84rem;
  position: relative;
}
#pagetitle h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  padding-bottom: 3.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 7rem;
}
#pagetitle h3:before {
  content: "";
  width: 2.8rem;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
}

#pagetitle_base {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 8rem;
}
#pagetitle_base h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 6rem;
  margin-top: 10rem;
  margin-bottom: 1rem;
}
#pagetitle_base .tag {
  float: left;
  width: 100%;
  position: relative;
}
#pagetitle_base .tag span {
  display: inline-block;
  color: #808080;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.1rem;
  margin-right: 2rem;
}
#pagetitle_base .tag span:last-child {
  margin-right: 0;
}

.subtitle01 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3.8rem;
  margin-bottom: 11rem;
}
.subtitle01 .en {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  margin-right: 2rem;
}

.subtitle02 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 8rem;
}
.subtitle02 .en {
  float: left;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.5rem;
}

.subtitle03 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.5rem;
  margin-bottom: 7rem;
}

.subtitle04 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.2rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 739px) {
  #pagetitle {
    margin-bottom: 10rem;
  }
  #pagetitle .main_img {
    height: 26rem;
    overflow: hidden;
  }
  #pagetitle .main_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #pagetitle h3 {
    font-size: 2.5rem;
    padding-bottom: 2.5rem;
    margin-top: 5rem;
  }
  #pagetitle_base {
    margin-bottom: 4rem;
  }
  #pagetitle_base h3 {
    font-size: 2rem;
    line-height: 4rem;
  }
  .subtitle01 {
    margin-bottom: 4rem;
  }
  .subtitle01 .en {
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .subtitle02 {
    font-size: 2rem;
    line-height: 3.6rem;
    margin-bottom: 4rem;
  }
  .subtitle02 .en {
    margin-top: 0.5rem;
  }
  .subtitle03 {
    margin-bottom: 4rem;
  }
  .subtitle04 {
    margin-bottom: 3rem;
  }
}
/* モーダルウィンドウ
   -------------------------------------------------------------------------- */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.modal__bg {
  background-color: hsla(0, 0%, 0%, 0.6);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 10rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 72%;
  min-width: 108rem;
  max-width: 120rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.modal .close {
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: 6rem;
  right: 6rem;
  background-image: url("../images/close.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
}
.modal .subtitle03 {
  margin-bottom: 3rem;
}
.modal .story01 {
  float: left;
  width: 100%;
  position: relative;
}
.modal .story01:last-child dt:before {
  display: none;
}
.modal .story01:last-child dd {
  padding-bottom: 0;
}
.modal .story01 dt {
  width: 9.7rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.modal .story01 dt:before {
  content: "";
  width: 0.1rem;
  height: 100%;
  position: absolute;
  top: 2rem;
  right: 0;
  background-color: #dddddd;
}
.modal .story01 dt:after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  top: 1.8rem;
  right: -0.4rem;
  border: 0.1rem solid #dddddd;
  background-color: #FFF;
  border-radius: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal .story01 dd {
  float: left;
  width: 100%;
  position: relative;
  padding-left: 12.8rem;
  padding-bottom: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 739px) {
  .modal {
    height: 100%;
  }
  .modal__content {
    float: left;
    width: 90%;
    height: 95%;
    position: relative;
    margin-top: 5%;
    margin-left: 5%;
    padding: 2rem;
    overflow-y: scroll;
    top: 0;
    left: 0;
    min-width: initial;
    max-width: initial;
    -webkit-transform: none;
            transform: none;
  }
  .modal .close {
    width: 2.5rem;
    height: 2.5rem;
    top: 3rem;
    right: 2rem;
  }
  .modal .story01 {
    margin-bottom: 2rem;
  }
  .modal .story01 dt {
    float: left;
    width: 100%;
    position: relative;
    font-size: 1.4rem;
  }
  .modal .story01 dt:before {
    content: none;
  }
  .modal .story01 dt:after {
    content: none;
  }
  .modal .story01 dd {
    font-size: 1.4rem;
    line-height: 3rem;
    padding-left: 0;
  }
  .modal .story01:last-child {
    margin-bottom: 0;
  }
}
/* パンくずリスト
   -------------------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  #breadclumb {
    width: 100%;
    position: absolute;
    right: 6rem;
    text-align: right;
  }
  #breadclumb a {
    display: inline-block;
    position: relative;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    padding-right: 2.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 1rem;
  }
  #breadclumb a:hover {
    text-decoration: underline;
  }
  #breadclumb a:before {
    content: ">";
    position: absolute;
    top: 0;
    right: 0;
  }
  #breadclumb a:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  #breadclumb a:last-child:before {
    display: none;
  }
  #breadclumb span {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
  .top1000 {
    top: 100rem;
  }
  .top160 {
    top: 16rem;
  }
}
@media screen and (max-width: 739px) {
  #breadclumb {
    width: 100%;
    position: absolute;
    right: 0;
    text-align: right;
    line-height: 2rem;
    padding: 0 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .top1000 {
    top: 35rem;
  }
  .top160 {
    top: 9rem;
  }
  #breadclumb a {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding-right: 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 0.5rem;
  }
  #breadclumb a:hover {
    text-decoration: underline;
  }
  #breadclumb a:before {
    content: ">";
    position: absolute;
    top: 0;
    right: 0;
  }
  #breadclumb a:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  #breadclumb a:last-child:before {
    display: none;
  }
  #breadclumb span {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  text-align: center;
}

@media screen and (max-width: 739px) {
  #splash {
    /*fixedで全面に固定*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    text-align: center;
  }
}
/* Container
   ========================================================================== */
#containar {
  float: left;
  width: 100%;
  position: relative;
  padding-top: 11.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contents {
  float: left;
  width: 100%;
  position: relative;
}

.box01 {
  float: left;
  width: 100%;
  position: relative;
}

.box02 {
  float: left;
  width: 47.6%;
  position: relative;
}

.wrapbox01 {
  width: 72%;
  min-width: 108rem;
  max-width: 150rem;
  height: auto;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.wrapbox02 {
  width: 84%;
  min-width: 126rem;
  max-width: 170rem;
  height: auto;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 739px) {
  #containar {
    padding-top: 80px;
    overflow: hidden;
  }
  .box02 {
    width: 100%;
  }
  .wrapbox01 {
    width: 90%;
    min-width: initial;
    max-width: initial;
  }
  .wrapbox02 {
    width: 90%;
    min-width: initial;
    max-width: initial;
  }
}
/* List
   ========================================================================== */
.list001 {
  float: left;
  width: 100%;
  position: relative;
  border-bottom: 0.1rem solid #ddd;
  padding: 3.9rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.list001 dt {
  position: absolute;
  top: 4.2rem;
  left: 5rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.5rem;
  z-index: 1;
}
.list001 dd {
  float: left;
  width: 100%;
  position: relative;
  line-height: 2.8rem;
  padding-left: 21.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.list001:first-child {
  border-top: 0.1rem solid #ddd;
}

.list002 {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 5rem;
}
.list002 dt {
  position: absolute;
  top: 1.5rem;
  left: 0;
  letter-spacing: 0;
  line-height: 2.1rem;
}
.list002 dd {
  float: left;
  width: 100%;
  position: relative;
  padding-left: 28rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.list002:last-child {
  margin-bottom: 0;
}

.list003 {
  float: left;
  width: 47.6%;
  position: relative;
  margin-bottom: 2rem;
}
.list003:nth-child(2n) {
  float: right;
}
.list003 dt {
  float: left;
  width: 100%;
  color: #999;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.8rem;
}
.list003 dd {
  float: left;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.8rem;
}
.list003:last-child {
  margin-bottom: 0;
}

.list004 {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 8rem;
}
.list004 dt {
  position: absolute;
  top: 0;
  left: 0;
  color: #999;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 3.4rem;
}
.list004 dd {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.4rem;
  padding-left: 12.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.list004:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .list001 {
    float: left;
    width: 100%;
    position: relative;
    border-bottom: 0.1rem solid #ddd;
    padding: 3rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .list001 dt {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 0.5rem;
    left: 0;
    top: 0;
  }
  .list001 dd {
    padding-left: initial;
  }
  .list002 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 3rem;
  }
  .list002 dt {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
  }
  .list002 dd {
    padding-left: initial;
  }
  .list003 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
  }
  .list003 dt {
    float: left;
    width: 100%;
  }
  .list003 dd {
    float: left;
    width: 100%;
  }
  .list004 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
  }
  .list004 dt {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
  }
  .list004 dd {
    padding-left: initial;
  }
}
/* Text
   ========================================================================== */
.underline {
  text-decoration: underline;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

.text_bold {
  font-weight: bold;
}

.text_normal {
  font-weight: normal;
}

.text_white {
  color: #FFF;
}

.fs18 {
  font-size: 1.8rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs14 {
  font-size: 1.4rem;
}

/* IMAGE LIGHTBOX SELECTOR */
#imagelightbox {
  cursor: pointer;
  position: fixed;
  z-index: 1000000 !important;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
  /* 50 */
  box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
  /* 50 */
}

#imagelightbox-caption p {
  display: inline !important;
}

/* ACTIVITY INDICATION */
#imagelightbox-loading,
#imagelightbox-loading div {
  border-radius: 50%;
}

#imagelightbox-loading {
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  padding: 0.625em;
  /* 10 */
  margin: -1.25em 0 0 -1.25em;
  /* 20 */
  -webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
}

#imagelightbox-loading div {
  width: 1.25em;
  /* 20 */
  height: 1.25em;
  /* 20 */
  background-color: #fff;
  -webkit-animation: imagelightbox-loading 0.5s ease infinite;
  animation: imagelightbox-loading 0.5s ease infinite;
}

@-webkit-keyframes imagelightbox-loading {
  from {
    opacity: 0.5;
    -webkit-transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  to {
    opacity: 0.5;
    -webkit-transform: scale(0.75);
  }
}
@keyframes imagelightbox-loading {
  from {
    opacity: 0.5;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0.5;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
/* OVERLAY */
#imagelightbox-overlay {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* "CLOSE" BUTTON */
#imagelightbox-close {
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  text-align: left;
  background-color: #666;
  border-radius: 50%;
  position: fixed;
  z-index: 10002;
  top: 2.5em;
  /* 40 */
  right: 2.5em;
  /* 40 */
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border-style: none;
}

#imagelightbox-close:hover,
#imagelightbox-close:focus {
  background-color: #111;
}

#imagelightbox-close:before,
#imagelightbox-close:after {
  width: 2px;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px;
}

#imagelightbox-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#imagelightbox-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* CAPTION */
#imagelightbox-caption {
  text-align: center;
  color: #fff;
  background-color: #666;
  position: fixed;
  z-index: 10001;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.625em;
  /* 10 */
}

/* NAVIGATION */
#imagelightbox-nav {
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  position: fixed;
  z-index: 10001;
  left: 50%;
  bottom: 3.75em;
  /* 60 */
  padding: 0.313em;
  /* 5 */
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#imagelightbox-nav button {
  width: 1em;
  /* 20 */
  height: 1em;
  /* 20 */
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 0.313em;
  /* 5 */
}

#imagelightbox-nav button.active {
  background-color: #fff;
}

/* ARROWS */
.imagelightbox-arrow {
  width: 3.75em;
  /* 60 */
  height: 7.5em;
  /* 120 */
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
  display: none;
  position: fixed;
  z-index: 10001;
  top: 50%;
  margin-top: -3.75em;
  /* 60 */
  border-style: none;
}

.imagelightbox-arrow:hover,
.imagelightbox-arrow:focus {
  background-color: #666;
  background-color: rgba(0, 0, 0, 0.75);
}

.imagelightbox-arrow:active {
  background-color: #111;
}

.imagelightbox-arrow-left {
  left: 2.5em;
  /* 40 */
}

.imagelightbox-arrow-right {
  right: 2.5em;
  /* 40 */
}

.imagelightbox-arrow:before {
  width: 0;
  height: 0;
  border: 1em solid transparent;
  content: "";
  display: inline-block;
  margin-bottom: -0.125em;
  /* 2 */
}

.imagelightbox-arrow-left:before {
  border-left: none;
  border-right-color: #fff;
  margin-left: -0.313em;
  /* 5 */
}

.imagelightbox-arrow-right:before {
  border-right: none;
  border-left-color: #fff;
  margin-right: -0.313em;
  /* 5 */
}

#imagelightbox-loading,
#imagelightbox-overlay,
#imagelightbox-close,
#imagelightbox-caption,
#imagelightbox-nav,
.imagelightbox-arrow {
  -webkit-animation: fade-in 0.25s linear;
  animation: fade-in 0.25s linear;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 41.25em) {
  #container {
    width: 100%;
  }
  #imagelightbox-close {
    top: 1.25em;
    /* 20 */
    right: 1.25em;
    /* 20 */
  }
  #imagelightbox-nav {
    bottom: 1.25em;
    /* 20 */
  }
  .imagelightbox-arrow {
    width: 2.5em;
    /* 40 */
    height: 3.75em;
    /* 60 */
    margin-top: -2.75em;
    /* 30 */
  }
  .imagelightbox-arrow-left {
    left: 1.25em;
    /* 20 */
  }
  .imagelightbox-arrow-right {
    right: 1.25em;
    /* 20 */
  }
}
@media only screen and (max-width: 20em) {
  .imagelightbox-arrow-left {
    left: 0;
  }
  .imagelightbox-arrow-right {
    right: 0;
  }
}
/******************** Slider ********************/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Utility
   ========================================================================== */
/* ==========================================================================
   Utility
   ========================================================================== */
.img100 {
  max-width: 100%;
  height: auto;
}

.h100 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 739px) {
  .pc {
    display: none !important;
  }
}
/* Clearfix
   -------------------------------------------------------------------------- */
.clear_both {
  float: none !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

/* Clearfix
   ========================================================================== */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  color: #CC9900;
}

.clearfix {
  display: inline-table;
  min-height: 1%;
  margin-bottom: 0px;
  overflow: auto;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 739px) {
  /* clearfix */
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    color: #CC9900;
  }
  .clearfix {
    display: inline-table;
    min-height: 1%;
    margin-bottom: 0px;
    overflow: auto;
  }
  /* Hides from IE-mac \*/
  * html .clearfix {
    height: 1%;
  }
  .clearfix {
    display: block;
    overflow: hidden;
  }
  /* clearfix */
}
/* Margin
   ========================================================================== */
.mt150 {
  margin-top: 15rem;
}

.mt60 {
  margin-top: 6rem;
}

.mt30 {
  margin-top: 3rem;
}

.mb340 {
  margin-bottom: 34rem;
}

.mb250 {
  margin-bottom: 25rem;
}

.mb200 {
  margin-bottom: 20rem;
}

.mb170 {
  margin-bottom: 17rem;
}

.mb100 {
  margin-bottom: 10rem !important;
}

.mb80 {
  margin-bottom: 8rem;
}

.mb60 {
  margin-bottom: 6rem !important;
}

.mb50 {
  margin-bottom: 5rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mr20 {
  margin-right: 2rem;
}

@media screen and (max-width: 739px) {
  .mt150 {
    margin-top: 5rem;
  }
  .mt60 {
    margin-top: 3rem;
  }
  .mt30 {
    margin-top: 1.5rem;
  }
  .mb340 {
    margin-bottom: 10rem;
  }
  .mb250 {
    margin-bottom: 10rem;
  }
  .mb200 {
    margin-bottom: 10rem;
  }
  .mb170 {
    margin-bottom: 10rem;
  }
  .mb100 {
    margin-bottom: 5rem !important;
  }
  .mb80 {
    margin-bottom: 4rem;
  }
  .mb60 {
    margin-bottom: 3rem !important;
  }
  .mb50 {
    margin-bottom: 2.5rem;
  }
  .mb40 {
    margin-bottom: 2rem;
  }
  .s_mb40 {
    margin-bottom: 4rem;
  }
  .s_mb20 {
    margin-bottom: 2rem;
  }
  .mr20 {
    margin-right: 2rem;
  }
}
/* Project
   ========================================================================== */
/* Home - リファクタリング版（デスクトップファースト + SP上書き）
   ========================================================================== */
#idx_containar {
  float: left;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 739px) {
  #idx_containar {
    overflow: hidden;
  }
}

#idx_contents {
  float: left;
  width: 100%;
  position: relative;
  padding-top: 17rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #idx_contents {
    padding-top: 10rem;
  }
}

#idx_main {
  width: 90%;
  max-width: 1440px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.8rem;
  gap: 2rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 0;
}
@media screen and (max-width: 739px) {
  #idx_main {
    width: 100%;
    height: 90svh;
    min-height: 630px;
    max-height: 800px;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    display: block;
  }
}
#idx_main #slideshow-area {
  max-width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  container-type: size;
}
@media screen and (max-width: 739px) {
  #idx_main #slideshow-area {
    padding: 0;
    height: 100%;
    min-height: initial;
    max-height: initial;
    display: block;
  }
  #idx_main #slideshow-area:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-radial-gradient(0% 50%, circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    background: radial-gradient(circle at 0% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
  }
}
#idx_main #slideshow-area .slideshow-container {
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 1/1;
  margin: auto;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
}
@supports (container-type: size) {
  #idx_main #slideshow-area .slideshow-container {
    width: min(100cqw, 100cqh);
    height: min(100cqw, 100cqh);
    max-width: none;
  }
}
@media screen and (max-width: 739px) {
  #idx_main #slideshow-area .slideshow-container {
    background-color: hsla(0, 0%, 0%, 0.3);
    aspect-ratio: initial;
    max-width: initial;
    height: 100%;
    width: 100%;
  }
}
#idx_main #slideshow-area .slideshow-container .slideshow-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
#idx_main #slideshow-area .slideshow-container .slideshow-wrapper .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  visibility: hidden;
}
#idx_main #slideshow-area .slideshow-container .slideshow-wrapper .slide-item.active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 2;
  visibility: visible;
}
#idx_main #slideshow-area .slideshow-container .slideshow-wrapper .slide-item.slide-out {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  z-index: 1;
  visibility: visible;
}
#idx_main #slideshow-area .slideshow-container .slideshow-wrapper .slide-item .slideshow-image {
  width: 110%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: -5%;
  left: -5%;
}
#idx_main #slideshow-area .slideshow-container .slideshow-nav {
  display: none;
}
#idx_main #slideshow-area .slideshow-container .dots-container {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 739px) {
  #idx_main #slideshow-area .slideshow-container .dots-container {
    bottom: 2rem;
    right: 2rem;
    gap: 0.8rem;
  }
}
#idx_main #slideshow-area .slideshow-container .dots-container .dot {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  position: relative;
}
#idx_main #slideshow-area .slideshow-container .dots-container .dot:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#idx_main #slideshow-area .slideshow-container .dots-container .dot:hover:before, #idx_main #slideshow-area .slideshow-container .dots-container .dot.active:before {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1.2) translate(-50%, -50%);
          transform: scale(1.2) translate(-50%, -50%);
}
#idx_main .main01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: clamp(250px, 32.2vw + 11.7px, 630px);
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  padding: 3rem 0 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
}
@media screen and (max-width: 739px) {
  #idx_main .main01 {
    width: 24rem;
    height: auto;
    position: absolute;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    top: 50%;
    left: 2.5rem;
    padding: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
#idx_main .main01 .textbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#idx_main .main01 .textbox .text {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(15px, 2svh + 1px, 17px);
  letter-spacing: 0.1em;
  line-height: 2.6;
}
#idx_main .main01 .textbox .text:not(:first-child) {
  margin-top: 1.88em;
}
@media screen and (max-width: 739px) {
  #idx_main .main01 .textbox .text {
    color: #FFF;
    font-size: 1.5rem;
    line-height: 2.4;
    text-shadow: 0.1rem 0.1rem 0.1rem hsla(0, 0%, 0%, 0.3), 0.2rem 0.2rem 0.7rem hsla(0, 0%, 0%, 0.6), 0rem 0rem 4rem hsla(0, 0%, 0%, 0.5);
    margin-bottom: 1rem;
  }
  #idx_main .main01 .textbox .text:not(:first-child) {
    margin-top: 1em;
  }
}
@media screen and (max-width: 739px) {
  #idx_main .main01 .btn01 {
    position: relative;
    color: #FFF;
    text-shadow: 0.1rem 0.1rem 0.3rem hsla(0, 0%, 0%, 0.5);
  }
}

.idx_wrapbox01 {
  width: 72%;
  max-width: 150rem;
  height: auto;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 739px) {
  .idx_wrapbox01 {
    min-width: initial;
    max-width: initial;
  }
}

.idx_wrapbox02 {
  width: 83.3333333333%;
  margin-left: auto;
  margin-right: auto;
  min-width: 126rem;
  max-width: 170rem;
  height: auto;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 739px) {
  .idx_wrapbox02 {
    min-width: initial;
    max-width: initial;
  }
}

#idx_art {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 21rem;
}
@media screen and (max-width: 739px) {
  #idx_art {
    margin-bottom: 10rem;
  }
}
#idx_art .idx_slide {
  float: left;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 739px) {
  #idx_art .idx_slide {
    position: relative;
    margin-bottom: 10rem;
  }
}
#idx_art .idx_slide .textbox {
  width: 34rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 739px) {
  #idx_art .idx_slide .textbox {
    float: left;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 6rem;
  }
}
#idx_art .idx_slide .textbox h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 739px) {
  #idx_art .idx_slide .textbox h3 {
    font-size: 2.4rem;
    line-height: 3.4rem;
    margin-bottom: 2rem;
  }
}
#idx_art .idx_slide .textbox h3 .en {
  float: left;
  width: 100%;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 2.2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 739px) {
  #idx_art .idx_slide .textbox h3 .en {
    font-size: 1rem;
    line-height: 2rem;
    margin-top: 0.5rem;
  }
}
#idx_art .idx_slide .textbox .text {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.8rem;
}
@media screen and (max-width: 739px) {
  #idx_art .idx_slide .textbox .text {
    line-height: 2.8rem;
    margin-bottom: 3rem;
  }
}
#idx_art .idx_slide .slidebox {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 34rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #idx_art .idx_slide .slidebox {
    padding: 0;
  }
}
#idx_art .idx_slide .btn01 {
  float: right;
}
@media screen and (max-width: 739px) {
  #idx_art .idx_slide .btn01 {
    float: left;
    width: 100%;
    text-align: center;
  }
}
#idx_art .idx_slide .btn {
  width: 34rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 739px) {
  #idx_art .idx_slide .btn {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
            transform: none;
    text-align: center;
  }
}

#idx_music {
  margin-bottom: 28rem;
}
@media screen and (max-width: 739px) {
  #idx_music {
    margin-bottom: 10rem;
  }
}

#idx_attitude {
  float: left;
  width: 100%;
  height: 78rem;
  position: relative;
  background-color: #FFF;
  border-top: 0.1rem solid #e6e6e6;
  border-bottom: 0.1rem solid #e6e6e6;
  padding: 5.2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 23rem;
}
@media screen and (max-width: 739px) {
  #idx_attitude {
    height: auto;
    padding: 5rem 0;
    margin-bottom: 10rem;
  }
}
#idx_attitude .attitudebox {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 739px) {
  #idx_attitude .attitudebox {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
}
#idx_attitude .attitude01 {
  width: 43.2rem;
  position: absolute;
  top: 13rem;
  left: 0;
}
@media screen and (max-width: 739px) {
  #idx_attitude .attitude01 {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 5rem;
  }
}
#idx_attitude .attitude01 h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 739px) {
  #idx_attitude .attitude01 h3 {
    font-size: 2rem;
    line-height: 3.2rem;
    margin-bottom: 1.5rem;
  }
}
#idx_attitude .attitude01 .text {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.8rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 739px) {
  #idx_attitude .attitude01 .text {
    line-height: 2.8rem;
    margin-bottom: 2rem;
  }
}
#idx_attitude .attitude_img {
  float: right;
  width: 69.3%;
  position: relative;
  margin-right: -10rem;
}
@media screen and (max-width: 739px) {
  #idx_attitude .attitude_img {
    float: left;
    width: 100%;
    margin-right: 0;
  }
}

#idx_about {
  float: left;
  width: 100%;
  position: relative;
}
#idx_about .aboutbox {
  float: left;
  width: 100%;
  position: relative;
  background-color: #FFF;
  padding: 7.8rem 12rem 8.7rem 12rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #idx_about .aboutbox {
    padding: 5rem 3rem;
  }
}
#idx_about .aboutbox .about01 {
  float: left;
  width: 24.2%;
  position: relative;
  margin-top: 13rem;
}
@media screen and (max-width: 739px) {
  #idx_about .aboutbox .about01 {
    width: 100%;
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
#idx_about .aboutbox .about01 h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 739px) {
  #idx_about .aboutbox .about01 h3 {
    font-size: 2rem;
    line-height: 3.2rem;
    margin-bottom: 1rem;
  }
}
#idx_about .aboutbox .about01 .text {
  float: left;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 739px) {
  #idx_about .aboutbox .about01 .text {
    line-height: 2.8rem;
    margin-bottom: 2rem;
  }
}
#idx_about .aboutbox .about_img {
  float: left;
  width: 53.1%;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 739px) {
  #idx_about .aboutbox .about_img {
    width: 100%;
    margin-bottom: 3rem;
  }
}
#idx_about .aboutbox .about_btn {
  float: right;
  width: 22.7%;
  position: relative;
  margin-top: 13.3rem;
  padding-left: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 0;
}
@media screen and (max-width: 739px) {
  #idx_about .aboutbox .about_btn {
    float: left;
    width: 100%;
    margin-top: 0;
    padding-left: 0;
    text-align: center;
  }
}
#idx_about .aboutbox .about_btn .btn01 {
  float: right;
}
@media screen and (max-width: 739px) {
  #idx_about .aboutbox .about_btn .btn01 {
    float: none;
    display: inline-block;
    background-position: right 2.2rem center;
    background-size: 0.7rem auto;
    padding: 1rem 7.6rem 1rem 0;
  }
}

#idx_blog {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 22rem;
}
@media screen and (max-width: 739px) {
  #idx_blog {
    margin-top: 10rem;
  }
}
#idx_blog h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 739px) {
  #idx_blog h3 {
    font-size: 2.4rem;
    line-height: 4.2rem;
    margin-bottom: 1.5rem;
  }
}
#idx_blog .text {
  float: left;
  width: 100%;
  position: relative;
  letter-spacing: 0.1em;
  line-height: 3.8rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 739px) {
  #idx_blog .text {
    line-height: 3.8rem;
    margin-bottom: 4rem;
  }
}
#idx_blog .blog01:hover {
  padding-top: 1rem;
  margin-bottom: -1rem;
}
#idx_blog .btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 739px) {
  #idx_blog .btn {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    margin-top: 1rem;
    z-index: 0;
  }
}

#idx_shop {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 12rem;
}
@media screen and (max-width: 739px) {
  #idx_shop {
    margin-top: 12rem;
  }
}
#idx_shop .shop01 {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #FFF;
  padding: 17rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #idx_shop .shop01 {
    padding: 6rem 3rem;
  }
}
#idx_shop .shop01:hover {
  opacity: 0.5;
}
#idx_shop .shop01 .shop_img {
  display: inline-block;
  width: 100%;
  position: relative;
  padding-left: 10rem;
  padding-right: 56rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #idx_shop .shop01 .shop_img {
    float: left;
    width: 100%;
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
  }
}
#idx_shop .shop01 .shop_info {
  display: inline-block;
  width: 35.5rem;
  position: absolute;
  top: 50%;
  right: 14.7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 739px) {
  #idx_shop .shop01 .shop_info {
    float: left;
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
            transform: none;
  }
}
#idx_shop .shop01 .shop_info h4 {
  float: left;
  text-align: left;
  line-height: 3rem;
  padding-top: 3.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #idx_shop .shop01 .shop_info h4 {
    float: left;
    width: 100%;
    line-height: 3rem;
    padding-top: 0;
    margin-bottom: 2rem;
  }
}
#idx_shop .shop01 .shop_info h4 .en {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
#idx_shop .shop01 .shop_info .btn {
  float: right;
  display: inline-block;
  width: 10rem;
  height: 10rem;
  position: relative;
  text-align: center;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
  padding-top: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #idx_shop .shop01 .shop_info .btn {
    display: inline-block;
    float: none;
    width: 10rem;
    height: 10rem;
    position: relative;
    text-align: center;
    background-color: #FFF;
    border-radius: 50%;
    -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
            box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
    padding-top: 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

#idx_sns {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 12rem;
}
@media screen and (max-width: 739px) {
  #idx_sns {
    margin-top: 10rem;
  }
}
#idx_sns h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 739px) {
  #idx_sns h3 {
    font-size: 2.4rem;
    line-height: 4.2rem;
    margin-bottom: 3rem;
  }
}
#idx_sns .sns_list {
  float: left;
  width: 100%;
  position: relative;
}
#idx_sns .sns_list li {
  float: left;
  width: 30.1%;
  position: relative;
  margin-right: 4.8%;
}
@media screen and (max-width: 739px) {
  #idx_sns .sns_list li {
    width: 47.5%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  #idx_sns .sns_list li:nth-child(2n) {
    float: right;
  }
}
#idx_sns .sns_list li:last-child {
  margin-right: 0;
}
#idx_sns .sns_list li a {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  background-color: #FFF;
  -webkit-box-shadow: 0 0.1rem 1rem hwb(0deg 0% 100%/8%);
          box-shadow: 0 0.1rem 1rem hwb(0deg 0% 100%/8%);
  background-position: left 4rem center;
  background-repeat: no-repeat;
  padding: 3.7rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  #idx_sns .sns_list li a {
    background-position: left 2rem center;
    padding: 1.5rem 0;
  }
}
#idx_sns .sns_list li a:hover {
  -webkit-box-shadow: 0 0 0 hwb(0deg 0% 100%/8%);
          box-shadow: 0 0 0 hwb(0deg 0% 100%/8%);
}
#idx_sns .sns_list li a.instagram {
  background-image: url("../images/sns_instagram.png");
  background-size: 3.1rem auto;
}
@media screen and (max-width: 739px) {
  #idx_sns .sns_list li a.instagram {
    background-size: 2.1rem auto;
  }
}
#idx_sns .sns_list li a.fb {
  background-image: url("../images/sns_fb.png");
  background-size: 3.1rem auto;
}
@media screen and (max-width: 739px) {
  #idx_sns .sns_list li a.fb {
    background-size: 2.1rem auto;
  }
}
#idx_sns .sns_list li a.youtube {
  background-image: url("../images/sns_youtube.png");
  background-size: 3.8rem auto;
  height: auto;
  margin-bottom: 0;
}
@media screen and (max-width: 739px) {
  #idx_sns .sns_list li a.youtube {
    background-size: 2.8rem auto;
    height: auto;
  }
}
#idx_sns .sns_list li span {
  display: inline-block;
}
@media screen and (max-width: 739px) {
  #idx_sns .sns_list li span {
    padding-left: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.slider {
  float: left;
  width: 100%;
  height: 58rem;
  position: relative;
}
@media screen and (max-width: 739px) {
  .slider {
    width: 120%;
    height: 40rem;
    margin-left: -10%;
    margin-bottom: 5rem;
  }
}

.slider-item {
  width: 100%;
  height: 58rem;
}
@media screen and (max-width: 739px) {
  .slider-item {
    height: 40rem;
  }
}
.slider-item01 {
  background: url(../img/img_01.jpg);
}
.slider-item02 {
  background: url(../img/img_02.jpg);
}
.slider-item03 {
  background: url(../img/img_03.jpg);
}

.slick-prev, .slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  height: 25px;
  width: 25px;
}
.slick-prev {
  left: 2.5%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.slick-next {
  right: 2.5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.slick-dots {
  height: 3rem;
  position: absolute;
  bottom: -3rem;
  left: 0;
  z-index: 10;
  text-align: left;
}
@media screen and (max-width: 739px) {
  .slick-dots {
    left: 4rem;
  }
}
.slick-dots li {
  display: inline-block;
  position: relative;
  margin: 0 1.5rem 0 0;
}
.slick-dots li button {
  width: 3rem;
  height: 0.1rem;
  position: relative;
  color: transparent;
  font-size: 0;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slick-dots li button:hover {
  background-color: #999;
}
.slick-dots li.slick-active button {
  border-bottom: 0.1rem solid #000000;
  background-color: #000;
}

.idx_slide {
  float: left;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 739px) {
  .idx_slide {
    position: relative;
    margin-bottom: 10rem;
  }
}
.idx_slide .textbox {
  width: 34rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 739px) {
  .idx_slide .textbox {
    float: left;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 6rem;
  }
}
.idx_slide .textbox h3 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 739px) {
  .idx_slide .textbox h3 {
    font-size: 2.4rem;
    line-height: 3.4rem;
    margin-bottom: 2rem;
  }
}
.idx_slide .textbox h3 .en {
  float: left;
  width: 100%;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 2.2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 739px) {
  .idx_slide .textbox h3 .en {
    font-size: 1rem;
    line-height: 2rem;
    margin-top: 0.5rem;
  }
}
.idx_slide .textbox .text {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.8rem;
}
@media screen and (max-width: 739px) {
  .idx_slide .textbox .text {
    line-height: 2.8rem;
    margin-bottom: 3rem;
  }
}
.idx_slide .slidebox {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 34rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 739px) {
  .idx_slide .slidebox {
    padding: 0;
  }
}
.idx_slide .btn01 {
  float: right;
}
@media screen and (max-width: 739px) {
  .idx_slide .btn01 {
    float: none;
    display: inline-block;
    text-align: center;
  }
}
.idx_slide .btn {
  width: 34rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 739px) {
  .idx_slide .btn {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
            transform: none;
    text-align: center;
  }
}

/* PHILOSOPHY
   -------------------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .philosophy:before {
    content: "";
    width: 100%;
    height: 0.1rem;
    position: absolute;
    top: -0.1rem;
    left: 0;
    background-color: #f9f9f9;
    z-index: 1;
  }
  .philosophy01 {
    float: left;
    width: 100%;
    position: relative;
  }
  .philosophy01 h3 {
    width: 23rem;
    height: 33.4rem;
    position: absolute;
    top: 0;
    left: 18rem;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 4.4rem;
    letter-spacing: -0.3em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-right: 15rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .philosophy01 h3 .en {
    display: inline-block;
    position: absolute;
    bottom: 2rem;
    right: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2.5rem;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
  .philosophy01 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    line-height: 4.8rem;
    padding-top: 7rem;
    padding-left: 57rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 7rem;
  }
  .philosophy_img {
    float: left;
    width: 64.8%;
    position: relative;
    margin-left: 3rem;
    background-color: #f9f9f9;
  }
  .philosophy_img img {
    mix-blend-mode: multiply;
  }
  .purpose01 {
    float: left;
    width: 88.9%;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-bottom: 10rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .purpose01 h4 {
    width: 26rem;
    height: 39rem;
    position: absolute;
    top: 14rem;
    right: 5rem;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 4.4rem;
    letter-spacing: -0.3em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-right: 14rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .purpose01 h4 .en {
    display: inline-block;
    position: absolute;
    bottom: 0.5rem;
    right: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2.5rem;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
  .purpose01 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    font-size: 1.7rem;
    line-height: 4rem;
    letter-spacing: 0.1em;
  }
  .purpose01 .image01 {
    width: 39.6%;
    position: absolute;
    bottom: 41.7rem;
    right: 5rem;
  }
  .purpose01 .image02 {
    width: 39.6%;
    position: absolute;
    bottom: 0;
    right: -19rem;
  }
  .principals01 {
    float: left;
    width: 88.9%;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-bottom: 18rem;
  }
  .principals01 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    font-size: 2.1rem;
    line-height: 8rem;
    letter-spacing: 0.1em;
  }
  .principals_img {
    float: left;
    width: 100%;
    position: relative;
  }
  .principals_img .image01 {
    float: left;
    width: 39.8%;
    position: relative;
    margin-left: 2rem;
  }
  .principals_img .image02 {
    float: right;
    width: 55.6%;
    position: relative;
    margin-top: 9.7rem;
    margin-right: -5.8rem;
  }
}
@media screen and (max-width: 739px) {
  .philosophy:before {
    content: "";
    width: 100%;
    height: 0.1rem;
    position: absolute;
    top: -0.1rem;
    left: 0;
    background-color: #f9f9f9;
    z-index: 1;
  }
  .philosophy01 {
    float: left;
    width: 100%;
    position: relative;
  }
  .philosophy01 h3 {
    float: left;
    width: 100%;
    position: relative;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 4.4rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .philosophy01 h3 .en {
    display: inline-block;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2.5rem;
    margin-top: 1rem;
  }
  .philosophy01 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    padding-top: 4rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 4rem;
  }
  .philosophy_img {
    float: left;
    width: 64.8%;
    position: relative;
    left: 50%;
    margin-left: -32.4%;
    background-color: #f9f9f9;
  }
  .philosophy_img img {
    mix-blend-mode: multiply;
  }
  .purpose01 {
    float: left;
    width: 100%;
    position: relative;
  }
  .purpose01 h4 {
    float: left;
    width: 100%;
    position: relative;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 3.8rem;
    margin-bottom: 4rem;
  }
  .purpose01 h4 .en {
    display: inline-block;
    width: 100%;
    position: relative;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2.5rem;
    margin-top: 1rem;
  }
  .purpose01 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    line-height: 4rem;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
  }
  .purpose01 .image01 {
    float: left;
    width: 52%;
    position: relative;
  }
  .purpose01 .image02 {
    float: right;
    width: 45%;
    position: relative;
  }
  .principals01 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
  }
  .principals01 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    font-size: 2rem;
    line-height: 7rem;
    letter-spacing: 0.1em;
  }
  .principals_img {
    float: left;
    width: 100%;
    position: relative;
  }
  .principals_img .image01 {
    float: left;
    width: 46%;
    position: relative;
  }
  .principals_img .image02 {
    float: right;
    width: 50%;
    position: relative;
  }
}
/* ATTITUDE / VALUE
   -------------------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .attitude .main_img {
    background-color: #FFF;
  }
  .attitude01 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 17rem;
  }
  .attitude01 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 18rem;
  }
  .attitude01 .image01 {
    float: left;
    width: 39.8%;
    position: relative;
    margin-left: 15rem;
  }
  .attitude01 .image02 {
    float: right;
    width: 22.2%;
    position: relative;
    margin-top: 9.6rem;
    margin-right: 15rem;
  }
  .attitude02 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 15rem;
  }
  .attitude02 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 15rem;
  }
  .attitude02 .image01 {
    float: right;
    width: 29.6%;
    position: relative;
    margin-right: 14.7rem;
  }
  .attitude02 .image02 {
    float: left;
    width: 33.3%;
    position: relative;
    margin-left: 15rem;
  }
  .attitude02 .image03 {
    float: right;
    width: 18.5%;
    position: relative;
    margin-right: 20.2rem;
    margin-top: 11.6rem;
  }
  .attitude03 {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
  }
  .ourview {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 15rem;
  }
  .ourview li {
    float: left;
    width: 33.2%;
    position: relative;
    margin-right: 0.2%;
  }
  .ourview li:last-child {
    margin-right: 0;
  }
  .ourview li .image01 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
  }
  .ourview li h4 {
    float: left;
    width: 100%;
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .ourview li .text {
    float: left;
    width: 100%;
    line-height: 3.8rem;
  }
  .photogallery {
    float: left;
    width: 100%;
    position: relative;
  }
  .photogallery li {
    float: left;
    width: 24.8%;
    height: 31.2rem;
    position: relative;
    margin-right: 0.26%;
    margin-bottom: 0.3rem;
  }
  .photogallery li:nth-child(4n), .photogallery li:last-child {
    margin-right: 0;
  }
  .photogallery li a {
    float: left;
    width: 100%;
    height: 100%;
  }
  .photogallery li a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 739px) {
  .attitude .main_img {
    background-color: #FFF;
  }
  .attitude01 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 6rem;
  }
  .attitude01 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 7rem;
  }
  .attitude01 .image01 {
    float: left;
    width: 64%;
    position: relative;
  }
  .attitude01 .image02 {
    float: right;
    width: 32%;
    position: relative;
  }
  .attitude02 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 6rem;
  }
  .attitude02 .copy01 {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 6rem;
  }
  .attitude02 .image01 {
    float: left;
    width: 39.6%;
    position: relative;
    margin-right: 4%;
  }
  .attitude02 .image02 {
    float: left;
    width: 28.3%;
    position: relative;
    margin-right: 4%;
  }
  .attitude02 .image03 {
    float: left;
    width: 23.5%;
    position: relative;
  }
  .attitude03 {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
  }
  .ourview {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 6rem;
  }
  .ourview li {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
  }
  .ourview li:last-child {
    margin-bottom: 0;
  }
  .ourview li .image01 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
  }
  .ourview li h4 {
    float: left;
    width: 100%;
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .ourview li .text {
    float: left;
    width: 100%;
    line-height: 3.8rem;
  }
  .photogallery {
    float: left;
    width: 120%;
    position: relative;
    margin-left: -10%;
  }
  .photogallery li {
    float: left;
    width: 49.8%;
    height: 14rem;
    position: relative;
    margin-right: 0.26%;
    margin-bottom: 0.1rem;
  }
  .photogallery li:nth-child(2n),
  .photogallery li:last-child {
    margin-right: 0;
  }
  .photogallery li a {
    float: left;
    width: 100%;
    height: 100%;
  }
  .photogallery li a:hover {
    opacity: 0.5;
  }
}
/* Art
   -------------------------------------------------------------------------- */
.creative01 {
  float: left;
  width: 31.1%;
  position: relative;
  background-color: #FFF;
  -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
  margin-right: 3.3%;
  margin-bottom: 4.5rem;
}
.creative01:nth-child(3n) {
  margin-right: 0;
}
.creative01:hover {
  opacity: 0.5;
}
.creative01 .image01 {
  float: left;
  width: 100%;
  height: 28rem;
  position: relative;
}
.creative01 .image01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.creative01 h4 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 3.8rem;
  padding: 3rem 2rem 4rem 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.creative01 h4 .en {
  float: left;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.1rem;
}

.blog01 {
  margin-bottom: 8rem;
}
.blog01:hover {
  opacity: 0.5;
}

.creative_base .mainimg {
  float: left;
  width: 100%;
  height: 68rem;
  position: relative;
  text-align: center;
  background-color: #FFF;
  margin-bottom: 12rem;
}
.creative_base .mainimg img {
  width: auto;
  height: 100%;
}

.client {
  background-color: #FFF;
  padding: 6rem 6rem 4rem 6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.comment {
  float: left;
  width: 100%;
  position: relative;
  background-color: #FFF;
  margin-top: 15rem;
  padding: 9rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.comment h4 {
  float: left;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
}

.tag_list {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 10rem;
}
.tag_list dt {
  width: 9.8rem;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.tag_list dt:before {
  content: "";
  width: 4.6rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #000000;
}
.tag_list dd {
  float: left;
  width: 100%;
  position: relative;
  padding-left: 12rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tag_list dd a {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-right: 1rem;
}
.tag_list dd a:last-child {
  margin-right: 0;
}
.tag_list dd a:hover {
  text-decoration: underline;
}

.works_base .mainimg {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 12rem;
}

@media screen and (max-width: 739px) {
  .creative01 {
    float: left;
    width: 47.5%;
    position: relative;
    background-color: #FFF;
    -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
            box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
    margin-bottom: 2rem;
    margin-right: 0;
  }
  .creative01:nth-child(2n) {
    float: right;
  }
  .creative01 .image01 {
    float: left;
    width: 100%;
    height: 16rem;
    position: relative;
  }
  .creative01 .image01 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .creative01 h4 {
    float: left;
    width: 100%;
    min-height: 11rem;
    position: relative;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2.5rem;
    padding: 1.5rem 1rem 2rem 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .creative01 h4 .en {
    float: left;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .creative01:hover,
  .blog01:hover {
    opacity: 0.5;
  }
  .creative_base .mainimg {
    float: left;
    width: 100%;
    height: 28rem;
    position: relative;
    text-align: center;
    background-color: #FFF;
    margin-bottom: 6rem;
  }
  .creative_base .mainimg img {
    width: auto;
    height: 100%;
  }
  .client {
    background-color: #FFF;
    padding: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .creative_wrap img {
    max-width: 100%;
    height: auto;
  }
  .comment {
    float: left;
    width: 100%;
    position: relative;
    background-color: #FFF;
    margin-top: 7rem;
    padding: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .comment h4 {
    float: left;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .tag_list {
    float: left;
    width: 100%;
    position: relative;
    margin-top: 5rem;
  }
  .tag_list dt {
    width: 8rem;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 3rem;
  }
  .tag_list dt:before {
    content: "";
    width: 3.6rem;
    height: 0.1rem;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #000000;
  }
  .tag_list dd {
    float: left;
    width: 100%;
    position: relative;
    line-height: 3rem;
    padding-left: 10rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .tag_list dd a {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-right: 1rem;
  }
  .tag_list dd a:last-child {
    margin-right: 0;
  }
  .tag_list dd a:hover {
    text-decoration: underline;
  }
  .works_base .mainimg {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 6rem;
  }
}
/* 料金
   -------------------------------------------------------------------------- */
.pricebox {
  float: left;
  width: 100%;
  position: relative;
  background-color: #FFF;
  padding: 5rem 9rem 6.5rem 9rem;
  -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
  margin-bottom: 6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pricebox:last-child {
  margin-bottom: 0;
}
.pricebox h4 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0em;
}
.pricebox .price_text {
  float: left;
  width: 100%;
  position: relative;
  font-size: 2rem;
}
.pricebox .price_section {
  float: left;
  width: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 2rem;
}
.pricebox .price_section:first-child {
  margin-top: 5rem;
}
.pricebox .price_section:first-child:before {
  content: "";
  width: 2.8rem;
  height: 0.1rem;
  position: absolute;
  top: -3rem;
  left: 0;
  background-color: #000000;
}
.pricebox .price_section:last-child {
  margin-bottom: 0;
}
.pricebox .price_section dt {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 3.2rem;
}
.pricebox .price_section dd {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.2rem;
  padding-left: 22rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pricebox .price_list {
  float: left;
  width: 100%;
  position: relative;
}
.pricebox .price_list li {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.2rem;
}
.pricebox .price_list li .price {
  float: right;
}

.works_btn {
  display: inline-block;
  min-width: 53.4rem;
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0em;
  background-color: #000000;
  background-image: url("../images/icon_arrow03.png");
  background-position: left 1.5rem top 1.5rem;
  background-repeat: no-repeat;
  background-size: 6rem auto;
  border-radius: 4.3rem;
  padding: 2rem 6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.works_btn:hover {
  background-position: left 2rem top 1.5rem;
}

.faq_list {
  float: left;
  width: 100%;
  position: relative;
}
.faq_list li {
  float: left;
  width: 22.6%;
  position: relative;
  margin-right: 3.2%;
  margin-bottom: 3rem;
}
.faq_list li:nth-child(4n), .faq_list li:last-child {
  margin-right: 0;
}
.faq_list li a {
  float: left;
  width: 100%;
  position: relative;
  letter-spacing: 0em;
  background-color: #FFF;
  padding: 1.8rem 3rem;
  -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.faq_list li a:before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 50%;
  right: 1.8rem;
  margin-top: -0.3rem;
  border-top: 0.1rem solid #000000;
  border-right: 0.1rem solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq_list li a:hover {
  -webkit-box-shadow: 0 0 0 hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0 0 hsla(0, 0%, 0%, 0.08);
}

@media screen and (max-width: 739px) {
  .pricebox {
    float: left;
    width: 100%;
    position: relative;
    background-color: #FFF;
    padding: 3rem 2rem 4rem 2rem;
    -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
            box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
    margin-bottom: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .pricebox:last-child {
    margin-bottom: 0;
  }
  .pricebox h4 {
    float: left;
    width: 100%;
    position: relative;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0em;
  }
  .pricebox .price_text {
    float: left;
    width: 100%;
    position: relative;
    font-size: 2rem;
  }
  .pricebox .price_section {
    float: left;
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 2rem;
  }
  .pricebox .price_section:first-child {
    margin-top: 5rem;
  }
  .pricebox .price_section:last-child {
    margin-bottom: 0;
  }
  .pricebox .price_section:first-child:before {
    content: "";
    width: 2.8rem;
    height: 0.1rem;
    position: absolute;
    top: -3rem;
    left: 0;
    background-color: #000000;
  }
  .pricebox .price_section dt {
    float: left;
    width: 100%;
    position: relative;
    line-height: 3.2rem;
  }
  .pricebox .price_section dd {
    float: left;
    width: 100%;
    position: relative;
    line-height: 3.2rem;
  }
  .pricebox .price_list {
    float: left;
    width: 100%;
    position: relative;
  }
  .pricebox .price_list li {
    float: left;
    width: 100%;
    position: relative;
    line-height: 3.2rem;
  }
  .pricebox .price_list li .price {
    float: right;
  }
  .works_btn {
    display: inline-block;
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0em;
    background-color: #000000;
    background-image: url("../images/icon_arrow03.png");
    background-position: left 1rem top 1.5rem;
    background-repeat: no-repeat;
    background-size: 4rem auto;
    border-radius: 4.3rem;
    padding: 1rem 1rem 1rem 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .works_btn:hover {
    background-position: left 2rem top 1.5rem;
  }
  .faq_list {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
  }
  .faq_list li {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
  }
  .faq_list li:last-child {
    margin-bottom: 0;
  }
  .faq_list li a {
    float: left;
    width: 100%;
    position: relative;
    font-size: 1.4rem;
    letter-spacing: 0em;
    line-height: 2.4rem;
    background-color: #FFF;
    padding: 1.8rem 4rem 1.8rem 2rem;
    -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
            box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .faq_list li a:before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    position: absolute;
    top: 50%;
    right: 1.8rem;
    margin-top: -0.3rem;
    border-top: 0.1rem solid #000000;
    border-right: 0.1rem solid #000000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/* About
   -------------------------------------------------------------------------- */
.aboutbox {
  float: left;
  width: 100%;
  min-height: 60rem;
  position: relative;
}
.aboutbox .about01 {
  width: 47.6%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.aboutbox .about01 .about_text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.aboutbox .about01 .about_text .type {
  float: left;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}
.aboutbox .about01 .about_text h4 {
  float: left;
  width: 100%;
  font-weight: 400;
  margin-bottom: 4rem;
}
.aboutbox .about01 .about_text h4 .en {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-right: 2rem;
}
.aboutbox .about01 .about_text .text {
  float: left;
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  margin-bottom: 4.5rem;
}
.aboutbox .about_img {
  float: left;
  width: 47.6%;
  position: relative;
}
.aboutbox p.box02 {
  line-height: 4.2rem;
}

.staff01 {
  float: left;
  width: 47.6%;
  position: relative;
}
.staff01 .image01 {
  float: left;
  width: 52.1%;
  position: relative;
}
.staff01 .staff_info {
  float: right;
  width: 41.1%;
  position: relative;
}
.staff01 .staff_info h4 {
  float: left;
  width: 100%;
  font-weight: 400;
  margin-bottom: 2rem;
}
.staff01 .staff_info h4 .en {
  float: left;
  width: 100%;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 3.8rem;
}
.staff01 .staff_info .katagaki {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.staff01 .staff_info .profile {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}
.staff01 .staff_info .profile dt {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.8rem;
  padding-left: 2.1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.staff01 .staff_info .profile dt:before {
  content: "";
  width: 1.3rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #000000;
}
.staff01 .staff_info .profile dd {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.2rem;
}

.map {
  float: left;
  width: 100%;
  height: 60rem;
  position: relative;
  overflow: hidden;
  margin-top: 10rem;
}
.map iframe {
  width: 100%;
  height: 60rem;
}

@media screen and (max-width: 739px) {
  .aboutbox {
    float: left;
    width: 100%;
    position: relative;
  }
  .aboutbox .about01 {
    float: left;
    width: 100%;
    position: relative;
  }
  .aboutbox .about01 .about_text {
    float: left;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
  .aboutbox .about01 .about_text .type {
    float: left;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2.5rem;
    margin-bottom: 1rem;
  }
  .aboutbox .about01 .about_text h4 {
    float: left;
    width: 100%;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  .aboutbox .about01 .about_text h4 .en {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-right: 2rem;
  }
  .aboutbox .about01 .about_text .text {
    float: left;
    width: 100%;
    font-size: 1.6rem;
    line-height: 4.2rem;
    margin-bottom: 2.5rem;
  }
  .aboutbox .about_img {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 3rem;
  }
  .aboutbox p.box02 {
    line-height: 4.2rem;
  }
  .staff01 {
    float: left;
    width: 100%;
    position: relative;
  }
  .staff01 .image01 {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
  }
  .staff01 .staff_info {
    float: left;
    width: 100%;
    position: relative;
  }
  .staff01 .staff_info h4 {
    float: left;
    width: 100%;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  .staff01 .staff_info h4 .en {
    float: left;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    line-height: 3.8rem;
    margin-right: 1.5rem;
  }
  .staff01 .staff_info .katagaki {
    float: left;
    width: 100%;
    position: relative;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  .staff01 .staff_info .profile {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
  }
  .staff01 .staff_info .profile dt {
    float: left;
    width: 100%;
    position: relative;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2.8rem;
    padding-left: 2.1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .staff01 .staff_info .profile dt:before {
    content: "";
    width: 1.3rem;
    height: 0.1rem;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #000000;
  }
  .staff01 .staff_info .profile dd {
    float: left;
    width: 100%;
    position: relative;
    line-height: 3.2rem;
  }
  .map {
    float: left;
    width: 120%;
    height: 40rem;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
    margin-left: -10%;
  }
  .map iframe {
    width: 100%;
    height: 40rem;
  }
}
/* SPACE
   -------------------------------------------------------------------------- */
.space01 {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #FFF;
  padding: 5.7rem 6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 18rem;
}
.space01 h5 {
  float: left;
  width: 100%;
  color: #909090;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}
.space01 .space_img {
  float: left;
  width: 100%;
}

.space_photo {
  float: left;
  width: 100%;
  position: relative;
}
.space_photo li {
  float: left;
  width: 33.2%;
  height: 41.8rem;
  position: relative;
  margin-right: 0.1%;
  margin-bottom: 0.2rem;
}
.space_photo li:nth-child(3n), .space_photo li:last-child {
  float: left;
}
.space_photo li a {
  float: left;
  width: 100%;
  height: 100%;
}
.space_photo li a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 739px) {
  .space01 {
    padding: 4rem 2rem;
    margin-bottom: 7rem;
  }
  .space_photo {
    width: 120%;
    margin-left: -10%;
  }
  .space_photo li {
    width: 49.7%;
    height: 16rem;
    margin-right: initial;
  }
  .space_photo li:nth-child(2n) {
    float: right;
  }
}
/* Column
   -------------------------------------------------------------------------- */
.blog_menubox {
  margin-top: 15rem;
  padding-top: 12rem;
  margin-bottom: -12rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.blog_menubox:before {
  content: "";
  width: 84%;
  height: 0.1rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e6e6e6;
}

.blog_menu,
.widget {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}
.blog_menu:last-child,
.widget:last-child {
  margin-bottom: 0;
}
.blog_menu h2,
.widget h2 {
  width: 17.8rem;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 1;
}
.blog_menu h2:before,
.widget h2:before {
  content: "";
  width: 4.6rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #000000;
}
.blog_menu ul,
.widget ul {
  float: left;
  width: 100%;
  position: relative;
  padding-left: 22rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.blog_menu ul li,
.widget ul li {
  float: left;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-right: 4rem;
}
.blog_menu ul li a:hover,
.widget ul li a:hover {
  text-decoration: underline;
}

.tagcloud {
  float: left;
  width: 100%;
  position: relative;
  padding-left: 22rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* タグクラウド */
}
.tagcloud a {
  float: left;
  position: relative;
  font-size: 1.4rem !important;
  letter-spacing: 0.1em;
  margin-right: 4rem;
}

#blog_archive {
  float: left;
  width: 100%;
  position: relative;
}

.blog_wrap {
  float: left;
  width: 100%;
  position: relative;
}
.blog_wrap img {
  max-width: 100%;
  height: auto;
}
.blog_wrap a {
  text-decoration: underline;
}
.blog_wrap p {
  float: left;
  width: 100%;
}
.blog_wrap h1 {
  float: left;
  width: auto;
  position: relative;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 6rem;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.blog_wrap h2 {
  float: left;
  width: auto;
  position: relative;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 6rem;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.blog_wrap h3 {
  float: left;
  width: auto;
  position: relative;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.blog_wrap h4 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.blog_wrap h5 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.blog_wrap ul {
  float: left;
  width: 100%;
  position: relative;
  background-color: #FFFFFF;
  padding: 4rem 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.blog_wrap ul li {
  float: left;
  width: 100%;
}

blockquote {
  float: left;
  width: 100%;
  position: relative;
  background-color: #FFFFFF;
  padding: 3rem 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 6rem;
}
blockquote:before {
  content: "“";
  position: absolute;
  top: -22px;
  left: -15px;
  font-size: 80px;
  color: #BCB8B3;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
}
blockquote:after {
  content: "”";
  position: absolute;
  bottom: -55px;
  right: -16px;
  font-size: 80px;
  color: #BCB8B3;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
}

.category_list {
  background-color: #f9f9f9 !important;
  padding: 0 !important;
  margin-top: 2rem;
}
.category_list li {
  width: auto !important;
  margin-right: 2rem;
}
.category_list li:last-child {
  margin-right: 0;
}
.category_list li a {
  color: #808080;
  font-size: 1.4rem;
  text-decoration: none !important;
}
.category_list li a:hover {
  text-decoration: underline !important;
}

.writer_info {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #FFF;
  padding: 5.5rem 4rem;
  margin-top: 10rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.writer_info .title {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  margin-bottom: 3rem;
}
.writer_info .name {
  float: left;
  width: 100%;
  position: relative;
  letter-spacing: 0.05em;
  line-height: 5.8rem;
}

.youtube {
  float: left;
  width: 100%;
  height: 65rem;
  position: relative;
  overflow: hidden;
}
.youtube iframe {
  width: 100%;
  height: 65rem;
}

.space_photo li a img {
  width: 100%;
  height: 100%;
}

.blog01 {
  display: inline-block;
  vertical-align: top;
  width: 30.19%;
  position: relative;
  margin-right: 4.2%;
}
.blog01:nth-child(3n) {
  margin-right: 0;
}
.blog01 .blog_img {
  float: left;
  width: 100%;
  height: 38rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.blog01 .blog_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog01 h4 {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.2rem;
  margin-bottom: 0.5rem;
}
.blog01 .tag {
  float: left;
  width: 100%;
  position: relative;
  color: #808080;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 2.2rem;
  margin-bottom: 1rem;
}
.blog01 .copy01 {
  float: left;
  width: 100%;
  height: 5.6rem;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.8rem;
  overflow: hidden;
}

/* SP版のスタイルをメディアクエリで上書き */
@media screen and (max-width: 739px) {
  .blog_menubox {
    margin-top: 10rem;
    padding-top: 7rem;
    margin-bottom: 0;
  }
  .blog_menubox:before {
    width: 100%;
    left: 0;
  }
  .blog_menu h2,
  .widget h2 {
    float: left;
    width: 17.8rem;
    position: relative;
  }
  .blog_menu ul,
  .widget ul {
    padding-left: 0;
  }
  .blog_menu ul li,
  .widget ul li {
    line-height: 3.4rem;
    margin-right: 2rem;
  }
  .tagcloud {
    padding-left: 0;
  }
  .tagcloud a {
    line-height: 3.4rem;
    margin-right: 2rem;
  }
  .blog_wrap h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.4rem;
    margin-bottom: 1rem;
  }
  .blog_wrap iframe {
    width: 100%;
    height: 30rem;
  }
  blockquote {
    padding: 3rem;
    margin-bottom: 3rem;
  }
  .writer_info {
    padding: 3rem;
    margin-top: 5rem;
  }
  .youtube {
    height: 30rem;
  }
  .youtube iframe {
    height: 30rem;
  }
  .blog01 {
    width: 100%;
    margin-bottom: 3rem;
  }
  .blog01:last-child {
    margin-bottom: 0;
  }
  .blog01 .blog_img {
    height: 26rem;
  }
  .blog01 .copy01 {
    display: none;
  }
}
/* よくある質問
   -------------------------------------------------------------------------- */
.faq01 {
  float: left;
  width: 100%;
  min-height: 12rem;
  position: relative;
  background-color: #FFF;
  -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
  margin-bottom: 4rem;
}
.faq01:last-child {
  margin-bottom: 0;
}
.faq01 .q {
  float: left;
  width: 100%;
  position: relative;
  padding: 3.7rem 5rem 1rem 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.faq01 .q:before {
  content: "";
  width: 2.7rem;
  height: 0.1rem;
  position: absolute;
  top: 6rem;
  right: 4rem;
  background-color: #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
.faq01 .q:after {
  content: "";
  width: 0.1rem;
  height: 2.7rem;
  position: absolute;
  top: 50%;
  right: 5.3rem;
  background-color: #000000;
}
.faq01 .q.select:after {
  display: none;
}
.faq01 .q dt {
  position: absolute;
  top: 3.7rem;
  left: 5rem;
  font-size: 2rem;
}
.faq01 .q dd {
  float: left;
  width: 100%;
  position: relative;
  font-size: 1.8rem;
  padding-left: 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.faq01 .a {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 9rem 3.7rem 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
.faq01 .a dt {
  position: absolute;
  top: 0;
  left: 5rem;
  font-size: 2rem;
}
.faq01 .a dd {
  float: left;
  width: 100%;
  position: relative;
  line-height: 3.2rem;
  padding-top: 0.7rem;
  padding-left: 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 739px) {
  .faq01 {
    float: left;
    width: 100%;
    min-height: 8rem;
    position: relative;
    background-color: #FFF;
    -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
            box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
    margin-bottom: 2rem;
  }
  .faq01:last-child {
    margin-bottom: 0;
  }
  .faq01 .q {
    float: left;
    width: 100%;
    position: relative;
    padding: 1.7rem 5rem 1.7rem 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
  }
  .faq01 .q:before {
    content: "";
    width: 1.7rem;
    height: 0.1rem;
    position: absolute;
    top: 4rem;
    right: 2rem;
    background-color: #000000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1;
  }
  .faq01 .q:after {
    content: "";
    width: 0.1rem;
    height: 1.7rem;
    position: absolute;
    top: 3.2rem;
    right: 2.8rem;
    background-color: #000000;
  }
  .faq01 .q.select:after {
    display: none;
  }
  .faq01 .q dt {
    position: absolute;
    top: 1.6rem;
    left: 2rem;
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .faq01 .q dd {
    float: left;
    width: 100%;
    position: relative;
    line-height: 2.8rem;
    padding-left: 3rem;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .faq01 .a {
    float: left;
    width: 100%;
    position: relative;
    padding: 0 2rem 2rem 5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: none;
  }
  .faq01 .a dt {
    position: absolute;
    top: 0;
    left: 2rem;
    font-size: 2rem;
  }
  .faq01 .a dd {
    float: left;
    width: 100%;
    position: relative;
    line-height: 3.2rem;
    padding-top: 0.7rem;
    padding-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* Contact
   -------------------------------------------------------------------------- */
.form01 {
  float: left;
  width: 100%;
  position: relative;
  background-color: #FFF;
  -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
          box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
  padding: 12rem 10rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 12rem;
}

/* Contact
   -------------------------------------------------------------------------- */
.tag01 {
  display: inline-block;
  width: 4.6rem;
  height: 2.2rem;
  text-align: center;
  font-size: 1.3rem;
  line-height: 2.1rem;
  background-color: #f2ed7f;
  border-radius: 0.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 1rem;
}

.tag02 {
  display: inline-block;
  width: 4.6rem;
  height: 2.2rem;
  text-align: center;
  color: #FFF;
  font-size: 1.3rem;
  line-height: 2.1rem;
  background-color: #8e8e8e;
  border-radius: 0.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 1rem;
}

#mailform input[type=text],
#mailform input[type=email],
#mailform input[type=tel] {
  width: 100%;
  height: 5.2rem;
}
#mailform input[type=radio] {
  width: 2rem;
  height: 2rem;
  margin: 1rem 0.5rem 0 0;
}
#mailform select {
  width: 100%;
  height: 5rem;
}
#mailform textarea {
  width: 100%;
  height: 20rem;
}
#mailform input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  margin: 0.8rem 1rem 0 0;
}
#mailform label {
  float: left;
  width: auto;
  margin-right: 3rem;
}
#mailform span.wpcf7-list-item {
  margin: 5px 0 0 0;
}
#mailform .wpcf7-list-item-label {
  float: right;
  font-size: 16px;
  line-height: 2.3em;
  padding-left: 5px;
  margin-right: 20px;
}

.select_form01 {
  width: 51.7% !important;
  min-width: 30.5rem;
}

.text_form01 {
  width: 51.7% !important;
  min-width: 30.5rem;
  margin-right: 1.5rem;
}

.text_form02 {
  width: 38.2% !important;
  margin-right: 1rem;
}

.send {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 6rem;
}

div.wpcf7-response-output {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 40px 0 0 0;
}

span.wpcf7-not-valid-tip {
  float: left;
  width: 100%;
}

/*
   Radio UI - Monotone, Modern, Stylish (single style) - SCSS nested
   -------------------------------------------------------------------------- */
#mailform .radio-ui label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1rem;
  cursor: pointer;
}
#mailform .radio-ui .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 12px;
}
#mailform .radio-ui .wpcf7-list-item {
  display: inline-block;
}
#mailform .radio-ui .wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}
#mailform .radio-ui .wpcf7-list-item input[type=radio]:focus-visible + .wpcf7-list-item-label {
  outline: 2px solid #9a9a9a;
  outline-offset: 2px;
}
#mailform .radio-ui .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
  background: #fff;
  color: #111;
}
#mailform .radio-ui .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: #111;
  background: #fff;
}
#mailform .radio-ui .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  background: #111;
}
#mailform .radio-ui .wpcf7-list-item-label {
  float: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1rem 1.4rem 1rem 4.4rem;
  border-radius: 999px;
  line-height: 1.2;
  background: #fff;
  color: #111;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.1s ease;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.1s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.1s ease;
  margin-right: 0;
  min-height: 4rem;
}
#mailform .radio-ui .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d6d6d6;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
#mailform .radio-ui .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 2.01rem;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
#mailform .radio-ui .wpcf7-list-item-label:hover {
  border-color: #c8c8c8;
}
#mailform .radio-ui .wpcf7-list-item-label:active {
  border-color: #bdbdbd;
}

/* アニメ軽減配慮 */
@media (prefers-reduced-motion: reduce) {
  .radio-ui .wpcf7-list-item-label,
  .radio-ui .wpcf7-list-item-label::before,
  .radio-ui .wpcf7-list-item-label::after {
    -webkit-transition: none;
    transition: none;
  }
}
@media screen and (max-width: 739px) {
  .form01 {
    float: left;
    width: 100%;
    position: relative;
    background-color: #FFF;
    -webkit-box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
            box-shadow: 0 0.1rem 1rem hsla(0, 0%, 0%, 0.08);
    padding: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 6rem;
  }
  .tag01 {
    display: inline-block;
    width: 4.6rem;
    height: 2.2rem;
    text-align: center;
    font-size: 1.3rem;
    line-height: 2.1rem;
    background-color: #f3e521;
    border-radius: 0.3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 1rem;
  }
  .tag02 {
    display: inline-block;
    width: 4.6rem;
    height: 2.2rem;
    text-align: center;
    color: #FFF;
    font-size: 1.3rem;
    line-height: 2.1rem;
    background-color: #8e8e8e;
    border-radius: 0.3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 1rem;
  }
  #mailform input,
  #mailform select,
  #mailform textarea {
    float: left;
    position: relative;
    font-size: 1.6rem;
    background-color: #FFF;
    border: 0.2rem solid #e2e2e2;
    border-radius: 0.3rem;
    padding: 1rem 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #mailform input[type=text],
  #mailform input[type=email],
  #mailform input[type=tel] {
    width: 100%;
    height: 5.2rem;
  }
  #mailform input[type=radio] {
    width: 2rem;
    height: 2rem;
    margin: 1rem 0 0 0;
  }
  #mailform select {
    width: 100%;
    height: 5rem;
  }
  .select_form01 {
    width: 51.7% !important;
    min-width: 30.5rem;
  }
  #mailform textarea {
    width: 100%;
    height: 20rem;
  }
  .text_form01 {
    width: 51.7% !important;
    min-width: 30.5rem;
    margin-right: 1.5rem;
  }
  .text_form02 {
    width: 38.2% !important;
    margin-right: 1rem;
  }
  #mailform input[type=checkbox] {
    width: 2rem;
    height: 2rem;
    margin: 0.8rem 1rem 0 0;
  }
  #mailform label {
    float: left;
    width: auto;
  }
  .send {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    margin-top: 3rem;
  }
  .sendbtn01 {
    display: inline-block;
    width: 26rem;
    height: 7rem;
    position: relative;
    color: #FFF;
    font-size: 1.8rem;
    font-family: zen-old-mincho, sans-serif;
    font-style: normal;
    font-weight: 400;
    background-color: #000000;
    background-image: url("../images/icon_arrow03.svg");
    background-position: left 1rem center;
    background-repeat: no-repeat;
    background-size: 6rem auto;
    border: none;
    border-radius: 4.3rem;
    cursor: pointer;
    -webkit-appearance: none;
    padding-bottom: 0.6rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  div.wpcf7-response-output {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 40px 0 0 0;
  }
  span.wpcf7-not-valid-tip {
    float: left;
    width: 100%;
  }
  #mailform span.wpcf7-list-item {
    margin: 5px 0 0 0;
  }
  #mailform .wpcf7-list-item-label {
    float: right;
    font-size: 16px;
    line-height: 2.3em;
    padding-left: 5px;
    margin-right: 20px;
  }
}/*# sourceMappingURL=main.css.map */