@charset "UTF-8";
/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v52-japanese-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  background-color: #fff;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

header {
  z-index: 15;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input[type=submit] {
  border-radius: 0;
  background-color: #2DA774;
}

/*===============================================
# common
=================================================*/
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

body {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  background-color: #fff;
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: 400;
}

img {
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .container {
    margin: 0 auto;
    padding: 0 15px;
  }
}

.container2 {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .container2 {
    margin: 0 auto;
    padding: 0 15px;
  }
}

.container3 {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .container3 {
    margin: 0 auto;
    padding: 0 15px;
  }
}

.container4 {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .container4 {
    margin: 0 auto;
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

a:hover {
  opacity: 0.7;
}

.title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  padding-top: 22px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
.title::before {
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .title::before {
    font-size: 14px;
  }
}
.title__service::before {
  content: "SERVICE";
}
.title__company::before {
  content: "COMPANY";
}
.title__works::before {
  content: "WORKS";
}
.title__faq {
  text-align: center;
}
.title__faq::before {
  content: "FAQ";
  left: 50%;
  transform: translate(-50%);
  color: #2CA874;
}
.title__recruit::before {
  content: "RECRUIT";
  color: #2CA874;
}
.title__black {
  color: #000;
}

/*===============================================
# フェードイン
=================================================*/
/*フェードインアニメ*/
/*左から右にフェードイン*/
.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 0.9s;
}

.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0.1;
  transform: translateY(20px);
  transition: all 0.9s;
}

.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/*===============================================
# 画像、ボタンの背景移動
=================================================*/
.mask_wrap {
  display: table;
  overflow: hidden;
  width: 0;
}

.mask-wrap .mask {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
  margin-bottom: 0;
  left: -1000%;
  overflow: hidden;
}

.mask-wrap .mask-bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

div.colorbox {
  position: relative;
  width: 80%;
  margin: 30px auto 30px;
}

div.colorbox div.color {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
}

div.colorbox img {
  display: block;
  width: 100%;
}

/*===============================================
# col-parts
=================================================*/
/* col-i
================================*/
.col-i-01 {
  margin-top: 80px;
}

.col-i-wrapper {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .col-i-wrapper {
    display: block;
  }
}

.col-i-img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .col-i-img {
    width: 100%;
  }
}

.col-i-sentence {
  width: 50%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .col-i-sentence {
    width: 100%;
    margin-top: 20px;
  }
}

.col-i-sentence-inner {
  margin-left: 100px;
  max-width: 560px;
}
@media screen and (max-width: 1279px) {
  .col-i-sentence-inner {
    margin-left: 80px;
  }
}
@media screen and (max-width: 1023px) {
  .col-i-sentence-inner {
    max-width: none;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .col-i-sentence-inner {
    margin-left: 0;
  }
}

.col-i-title {
  text-align: left;
}
.col-i-title h2 {
  font-size: 28px;
  line-height: 1.68;
  letter-spacing: 0.1em;
  color: #234872;
  font-weight: bold;
  display: inline;
}
@media screen and (max-width: 1023px) {
  .col-i-title h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 550px) {
  .col-i-title h2 {
    font-size: 20px;
  }
}

.col-i-title-01 {
  background-image: url(../images/top/01.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 30px;
  padding-right: 0;
}
@media screen and (max-width: 1023px) {
  .col-i-title-01 {
    padding: 25px;
    padding-right: 0;
  }
}
.col-i-title-03 {
  background-image: url(../images/top/03.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 30px;
  padding-right: 0;
}
@media screen and (max-width: 1023px) {
  .col-i-title-03 {
    padding: 25px;
    padding-right: 0;
  }
}

.col-i-text {
  margin-top: 50px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .col-i-text {
    width: 100%;
    margin-top: 30px;
  }
}
.col-i-text p {
  color: #6e7885;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.1;
  font-weight: 500;
}

.col-i-btn-wrapper {
  order: 0;
  margin-top: 50px;
  margin-left: 0;
  overflow: hidden;
}

.col-i-btn {
  order: 0;
  margin-left: 0;
  text-align: center;
  display: block;
  width: 320px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 3px;
  font-weight: bold;
  position: relative;
}
.col-i-btn::before {
  position: absolute;
  content: "";
  width: 56px;
  height: 1px;
  background: #0180b7;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .col-i-btn {
    margin: 0 auto;
    margin-top: 20px;
  }
}

/* col-j
================================*/
.col-j-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .col-j-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .col-j-wrapper {
    display: block;
  }
}

.col-j-img {
  width: 50%;
  order: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .col-j-img {
    width: 100%;
  }
}

.col-j-sentence {
  text-align: right;
  order: 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .col-j-sentence {
    width: 100%;
    margin-top: 20px;
  }
}

.col-j-sentence-inner {
  max-width: 560px;
  width: 100%;
  margin-right: 100px;
}
@media screen and (max-width: 767px) {
  .col-j-sentence-inner {
    max-width: none;
  }
}

.col-j-title {
  text-align: left;
  background-image: url(../images/top/02.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 30px;
  padding-right: 0;
}
@media screen and (max-width: 1023px) {
  .col-j-title {
    padding: 25px;
    padding-right: 0;
  }
}
@media screen and (max-width: 550px) {
  .col-j-title {
    padding: 10px;
    padding-left: 25px;
    padding-right: 0;
  }
}
.col-j-title h2 {
  font-size: 28px;
  line-height: 1.68;
  letter-spacing: 0.1em;
  color: #234872;
  font-weight: bold;
  display: inline;
}
@media screen and (max-width: 1023px) {
  .col-j-title h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 550px) {
  .col-j-title h2 {
    font-size: 20px;
  }
}

.col-j-text {
  margin-top: 50px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .col-j-text {
    width: 100%;
    margin-top: 30px;
  }
}
.col-j-text p {
  color: #6e7885;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.1;
  font-weight: 500;
}

.col-j-btn-wrapper {
  order: 0;
  margin-top: 50px;
  width: 243px;
  margin-left: 0;
  overflow: hidden;
}

.col-j-btn {
  text-align: center;
  display: block;
  width: 243px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  border: 1px solid #397fc1;
  font-family: muli, YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  background-color: #397fc1;
}
@media screen and (max-width: 767px) {
  .col-j-btn {
    margin: 0 auto;
    margin-top: 20px;
  }
}

/* col-q
================================*/
.col-q {
  margin: 120px 0 80px;
}
@media screen and (max-width: 767px) {
  .col-q {
    margin: 60px 0;
  }
}

.col-q-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .col-q-inner {
    display: block;
  }
}

.col-q-sentence {
  width: 54%;
  order: 0;
}
@media screen and (max-width: 767px) {
  .col-q-sentence {
    width: 100%;
  }
}

.col-q-title h2 {
  line-height: 1.636;
  font-size: 32px;
  color: #CFB991;
}
@media screen and (max-width: 1023px) {
  .col-q-title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .col-q-title h2 {
    margin-top: 30px;
    font-size: 24px;
  }
}

.col-q-text {
  margin-top: 80px;
}
@media screen and (max-width: 1023px) {
  .col-q-text {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .col-q-text {
    margin-top: 30px;
  }
}
.col-q-text p {
  font-size: 18px;
  line-height: 1.72;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .col-q-text p {
    font-size: 16px;
  }
}

.col-q-img {
  order: 1;
  width: 46%;
  margin-left: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .col-q-img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}

.col-q-number {
  position: absolute;
  content: "";
  color: #CFB891;
  font-size: 100px;
  font-family: oswald, sans-serif;
  writing-mode: vertical-lr;
  line-height: 1;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1279px) {
  .col-q-number {
    font-size: 7.8vw;
  }
}
@media screen and (max-width: 767px) {
  .col-q-number {
    font-size: 13vw;
    right: auto;
    left: 0;
  }
}

/* col-r
================================*/
.col-r {
  margin: 120px 0;
}
@media screen and (max-width: 767px) {
  .col-r {
    margin: 60px 0;
  }
}

.col-r-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .col-r-inner {
    display: block;
  }
}

.col-r-sentence {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .col-r-sentence {
    width: 100%;
  }
}

.col-r-title h2 {
  line-height: 1.636;
  font-size: 32px;
  color: #CFB991;
}
@media screen and (max-width: 1023px) {
  .col-r-title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .col-r-title h2 {
    margin-top: 30px;
    font-size: 24px;
  }
}

.col-r-text {
  margin-top: 80px;
}
@media screen and (max-width: 1023px) {
  .col-r-text {
    margin-right: 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .col-r-text {
    margin-top: 30px;
  }
}
.col-r-text p {
  font-size: 18px;
  line-height: 1.72;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .col-r-text p {
    font-size: 16px;
  }
}

.col-btn {
  text-align: left;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .col-btn {
    text-align: center;
    margin-top: 80px;
  }
}

.col-r-img {
  width: 46%;
  margin-right: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .col-r-img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}

.col-r-number {
  position: absolute;
  content: "";
  color: #CFB891;
  font-size: 100px;
  font-family: oswald, sans-serif;
  writing-mode: vertical-lr;
  line-height: 1;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1279px) {
  .col-r-number {
    font-size: 7.8vw;
  }
}
@media screen and (max-width: 767px) {
  .col-r-number {
    font-size: 13vw;
  }
}

/* col-feature
================================*/
.col-feature {
  margin: 105px 0;
}
@media screen and (max-width: 767px) {
  .col-feature {
    margin: 60px 0;
  }
}

.col-feature-inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .col-feature-inner {
    display: block;
  }
}

.col-feature-sentence {
  width: 54%;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .col-feature-sentence {
    width: 100%;
    margin-top: 40px;
  }
}

.col-feature-title h2 {
  font-size: 32px;
  font-weight: 500;
  color: #CFB891;
}
@media screen and (max-width: 1023px) {
  .col-feature-title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .col-feature-title h2 {
    font-size: 20px;
  }
}

/*===============================================
# post
=================================================*/
/* post-a
================================*/
.post-closed {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 0 50px;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .post-closed {
    padding-top: 50px;
    font-size: 16px;
  }
}
.post-closed-color {
  color: #000;
  padding-top: 50px;
}

.post-a {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.post-a-container {
  max-width: 848px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .post-a-container {
    display: block;
  }
}

.post-a-title {
  font-family: "Didact Gothic", sans-serif;
  width: 186px;
}
.post-a-title h3 {
  font-size: 22px;
  letter-spacing: 0.2em;
  line-height: 1.636;
  color: #333333;
}

.post-a-items {
  width: 100%;
}

.post-a-item {
  display: block;
  align-items: center;
  padding: 30px;
  border-top: solid 1px #909090;
}
.post-a-item:nth-last-child(1) {
  border-bottom: solid 1px #909090;
}
@media screen and (max-width: 550px) {
  .post-a-item {
    display: block;
    padding: 20px;
  }
}

.post-a-item-meta {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .post-a-item-meta {
    margin-bottom: 0;
  }
}

.post-a-item-time {
  font-family: "Avenir Next", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.6666;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .post-a-item-time {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}

.post-a-item-title {
  font-size: 18px;
  width: calc(100% - 10px);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .post-a-item-title {
    width: calc(100% - 40px);
    margin-top: 15px;
  }
}
@media screen and (max-width: 550px) {
  .post-a-item-title {
    padding-left: 0;
    margin-top: 15px;
    width: 100%;
  }
}
.post-a-item-title p {
  font-size: 20px;
  line-height: 1.214;
  font-weight: 500;
  color: #442813;
}
@media screen and (max-width: 767px) {
  .post-a-item-title p {
    font-size: 14px;
  }
}

.post-a-btn-body {
  overflow: hidden;
  width: 220px;
  margin-top: 30px;
  margin-left: auto;
}

.post-a-btn {
  max-width: 152px;
  font-size: 14px;
  padding: 8px 20px 8px 5px;
  line-height: 2.2;
  margin-top: 30px;
}
.post-a-btn::before {
  right: 20px;
}

/* post-f
================================*/
.post-f {
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .post-f {
    padding-top: 0;
    padding-bottom: 90px;
  }
}

.zoom-up .post-f-item-img img {
  transition: 1s all;
  overflow: hidden;
}

.zoom-up .post-f-item:hover .post-f-item-img img {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}

.post-f-item {
  width: calc((100% - 160px) / 3);
  margin-right: 80px;
  position: relative;
}
.post-f-item:nth-child(3) {
  margin-right: 0;
}
@media screen and (max-width: 1023px) {
  .post-f-item {
    width: calc((100% - 80px) / 3);
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .post-f-item {
    margin: 0 auto;
    width: 45%;
    margin-top: 75px;
  }
  .post-f-item:nth-of-type(3n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 550px) {
  .post-f-item {
    width: 90%;
  }
}

.post-f-item-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}
.post-f-item-img img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-f-items {
  margin-top: 150px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .post-f-items {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.post-f-item-meta {
  line-height: 1;
  position: absolute;
  top: -40px;
  left: 0;
}

.post-f-item-time {
  font-family: "Avenir Next", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #CDCDCD;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .post-f-item-time {
    font-size: 14px;
  }
}

.post-f-item-title {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .post-f-item-title {
    margin-bottom: 10px;
  }
}
.post-f-item-title p {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  color: #909090;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .post-f-item-title p {
    font-size: 14px;
  }
}

.post-f-item-text p {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .post-f-item-text p {
    font-size: 14px;
  }
}

.post-f-btn-body {
  text-align: right;
  margin-top: 70px;
}

/*===============================================
# cta
=================================================*/
/* cta-c
================================*/
.cta-c {
  padding-top: 130px;
  padding-bottom: 107px;
  text-align: center;
  background: #000;
}
@media screen and (max-width: 767px) {
  .cta-c {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.cta-c-text {
  margin-top: 65px;
  margin-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-c-text {
    margin-top: 45px;
    margin-bottom: 60px;
  }
}
.cta-c-text p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-c-text p {
    font-size: 16px;
    text-align: left;
  }
}

.cta-c-btn-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .cta-c-btn-wrapper {
    display: block;
  }
}

.cta-c-btn {
  display: block;
  margin-right: 80px;
}
@media screen and (max-width: 767px) {
  .cta-c-btn {
    margin: 40px auto;
    width: 80%;
  }
}
.cta-c-btn:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .cta-c-btn:nth-last-child(1) {
    margin-right: auto;
  }
}

/*===============================================
# footer
=================================================*/
/* footer-a
================================*/
.footer-a {
  position: relative;
  background: #000;
}

.footer-a-top {
  padding: 50px 60px;
}
@media screen and (max-width: 767px) {
  .footer-a-top {
    padding: 20px;
  }
}

.footer-a-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 1279px) {
  .footer-a-inner {
    display: block;
  }
}

.footer-a-left {
  display: flex;
}
@media screen and (max-width: 1400px) {
  .footer-a-left {
    display: block;
  }
}

.footer-a-logo {
  width: 160px;
  margin-bottom: 10px;
  margin-right: 40px;
}

.footer-a-company {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .footer-a-company {
    margin-bottom: 10px;
  }
}
.footer-a-company-small {
  font-size: 16px;
}

.footer-a-address {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-a-tel {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.footer-a-tel-color {
  color: #fff;
}
.footer-a-tel-color:hover {
  opacity: 1;
  cursor: auto;
}

.footer-a-item {
  margin-bottom: 10px;
}
.footer-a-item a {
  line-height: 1;
  letter-spacing: 0.2em;
  padding-left: 30px;
  position: relative;
  color: #fff;
}
.footer-a-item a::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-a-right {
  margin-left: 50px;
}
@media screen and (max-width: 1279px) {
  .footer-a-right {
    margin-top: 35px;
    margin-left: 0;
  }
}
@media screen and (max-width: 550px) {
  .footer-a-right {
    display: block;
  }
}

.footer-a-menu {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .footer-a-menu:nth-child(1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 550px) {
  .footer-a-menu {
    width: 100%;
  }
  .footer-a-menu:nth-child(n+2) {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .footer-a-menu:nth-child(1) {
    padding-left: 0;
  }
}
@media screen and (max-width: 550px) {
  .footer-a-menu:nth-child(1) {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  .footer-a-menu {
    padding-left: 0;
  }
}
.footer-a-menu li {
  margin-right: 38px;
  line-height: 1;
  margin-bottom: 20px;
}
.footer-a-menu li:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .footer-a-menu li {
    margin-right: 25px;
  }
}
.footer-a-menu li a {
  font-family: "Avenir Next", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .footer-a-menu li a {
    font-size: 15px;
  }
}

.footer-a-bottom {
  color: #fff;
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.page-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 64px;
  z-index: 3;
}

/*===============================================
# header
=================================================*/
.drawer-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  .drawer-toggle {
    display: block;
    padding-right: 20px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  .drawer-toggle {
    padding-top: 18px;
  }
}

.drawer-overlay {
  z-index: -1 !important;
}

.drawer-hamburger-icon {
  background: #fff;
}
.drawer-hamburger-icon::before {
  background: #fff;
}
.drawer-hamburger-icon::after {
  background: #fff;
}

@media screen and (max-width: 1023px) {
  .drawer-nav {
    padding-top: 100px;
    background: #000;
  }
}

@media screen and (min-width: 700px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* header-a
================================*/
.header-a {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #000;
}

.header-a-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}
@media screen and (max-width: 1279px) {
  .header-a-inner {
    padding: 14px 20px;
  }
}
@media screen and (max-width: 1023px) {
  .header-a-inner {
    padding: 14px 20px;
  }
}

.header-a-logo {
  width: 140px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 550px) {
  .header-a-logo {
    width: 80px;
  }
}

.header-a-nav-list {
  display: flex;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .header-a-nav-list {
    display: block;
    height: 90rem;
  }
}

.header-a-nav-item {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-a-nav-item {
    text-align: center;
    margin-top: 40px;
    position: relative;
  }
}
.header-a-nav-item a {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1.125;
  color: #fff;
  padding-left: 40px;
}
@media screen and (max-width: 1279px) {
  .header-a-nav-item a {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .header-a-nav-item a {
    padding-left: 0;
  }
}

.kv-a-inner {
  position: relative;
  padding-top: 879px;
  background: url(../images/top/mv_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .kv-a-inner {
    padding-top: 667px;
    background: url(../images/top/mv_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.kv-a-inner h1 {
  position: absolute;
  width: 60%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .kv-a-inner h1 {
    width: 80%;
  }
}

.kv-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .kv-pc {
    display: none;
  }
}

.kv-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .kv-sp {
    display: block;
  }
}

.btn {
  padding-left: 200px;
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  font-family: trajan-pro-3, serif;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 20px;
    padding-left: 120px;
  }
}
.btn::before {
  position: absolute;
  content: "";
  width: 169px;
  height: 1px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .btn::before {
    width: 100px;
  }
}

/* トップページ
================================*/
.top {
  background: #000;
}

.t-title {
  font-family: trajan-pro-3, serif;
  font-weight: 100;
  font-size: 80px;
  color: #909090;
  line-height: 1.1;
}
@media screen and (max-width: 1023px) {
  .t-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .t-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 550px) {
  .t-title {
    font-size: 40px;
  }
}
.t-color {
  color: #CFB991;
}
.t-container {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .t-container {
    padding: 0 15px;
  }
}
.t-container2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .t-container2 {
    padding: 0 15px;
  }
}
.t-btn {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .t-btn {
    margin-top: 50px;
  }
}
.t-btn-information {
  color: #000;
}
.t-btn-information::before {
  background: #000;
}
.t-course {
  margin-bottom: 40px;
}

.t-about {
  padding-top: 140px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .t-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.t-about-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .t-about-wrap {
    flex-direction: column-reverse;
  }
}
.t-about-inner {
  margin-left: 102px;
  max-width: 510px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .t-about-inner {
    margin-left: auto;
    max-width: none;
  }
}
.t-about-title {
  letter-spacing: 0.1em;
  white-space: nowrap;
  position: relative;
  left: -20px;
  margin-top: 60px;
  margin-bottom: 40px;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .t-about-title {
    left: 0;
    width: 100%;
    margin-top: 0;
  }
}
.t-about-title-ja {
  font-family: YuMincho, "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .t-about-title-ja {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
  }
}
.t-about-text {
  font-size: 18px;
  max-width: 415px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .t-about-text {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .t-about-text {
    font-size: 14px;
  }
}
.t-about-img {
  max-width: 482px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .t-about-img {
    margin: 50px auto 0;
  }
}
.t-about-btn {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .t-about-btn {
    text-align: center;
  }
}

.t-process {
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .t-process {
    padding-bottom: 80px;
  }
}
.t-process-wrap {
  text-align: center;
}
.t-process-title {
  margin-top: 20px;
}
.t-process-btn {
  text-align: center;
}
.t-process-btn .btn {
  margin-top: 0;
}

.t-blog-wrap {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .t-blog-title {
    margin-bottom: 0;
  }
}
.t-blog-btn {
  text-align: center;
}

.t-information-title {
  color: #000;
}
.t-information-btn {
  text-align: center;
}

.t-message {
  color: #000;
}

/* 固定ページ共通
================================*/
.low {
  position: relative;
}
.low-kv {
  margin: 100px 0 0;
  padding: 140px 0 185px;
}
@media screen and (max-width: 1279px) {
  .low-kv {
    margin-top: 93px;
  }
}
@media screen and (max-width: 550px) {
  .low-kv {
    margin-top: 65px;
    padding: 60px 0 100px;
  }
}
.low-kv-about {
  background: url(../images/about/about.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.low-kv-service {
  background: url(../images/service/service.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.low-kv-post {
  background: url(../images/post/post.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 139px 0 120px;
}
@media screen and (max-width: 550px) {
  .low-kv-post {
    padding: 65.5px 0 55px;
  }
}
.low-kv-contact {
  background: url(../images/low/contact.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.low-kv-privacy-policy {
  background: url(../images/low/privacy-policy.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.low-kv-404 {
  background: url(../images/low/about_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.low-title {
  position: relative;
  font-weight: 100;
  font-size: 60px;
  color: #fff;
  letter-spacing: 0.044em;
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
  font-family: fot-tsukumin-pr6n, sans-serif;
}
@media screen and (max-width: 767px) {
  .low-title {
    font-size: 25px;
  }
}
.low-title::before {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translate(-50%);
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-family: trajan-pro-3, serif;
}
@media screen and (max-width: 767px) {
  .low-title::before {
    bottom: -55px;
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) {
  .low-title::before {
    bottom: -30px;
    font-size: 15px;
  }
}
.low-title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: #707070;
  left: 50%;
  transform: translate(-50%);
  bottom: -20px;
}
@media screen and (max-width: 550px) {
  .low-title::after {
    bottom: -7px;
  }
}
.low-title-about::before {
  content: "COMPANY";
}
.low-title-service::before {
  content: "PROCESS";
}
.low-title-contact::before {
  content: "CONTACT";
}
.low-title-privacy-policy::before {
  content: "PRIVACY POLICY";
}
.low-title-404::after {
  content: none;
}
.low-title-archive::after {
  content: none;
}
.low-description {
  text-align: center;
  position: relative;
  margin-top: 30px;
  font-weight: 200;
}
@media screen and (max-width: 550px) {
  .low-description {
    margin-top: 10px;
  }
}
.low-description p {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-family: trajan-pro-3, serif;
}
@media screen and (max-width: 550px) {
  .low-description p {
    font-size: 15px;
  }
}
.low-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .low-container {
    margin: 0 auto;
    padding: 0 15px;
  }
}
.low-container2 {
  max-width: 870px;
  width: 100%;
  margin: 0 auto 200px;
}
@media screen and (max-width: 767px) {
  .low-container2 {
    margin-bottom: 100px;
    padding: 0 15px;
  }
}
.low-container3 {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .low-container3 {
    margin: 0 auto;
    padding: 0 15px;
  }
}
.low-container4 {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .low-container4 {
    margin: 0 auto;
    padding: 0 15px;
  }
}
.low-contact-title {
  color: #000;
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .low-contact-title {
    text-align: left;
  }
}

.anchor {
  display: block;
  padding-top: 230px;
  margin-top: -230px;
  z-index: -1;
}

/*===============================================
# page-about
=================================================*/
.concept {
  background: #000;
  padding: 90px 0 70px;
}
.concept-text {
  max-width: 470px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .concept-text {
    max-width: none;
  }
}

.message-inner {
  align-items: flex-start;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .message-inner {
    margin-top: 50px;
  }
}
.message-text {
  margin-top: 0;
}
.message-text p {
  color: #000;
}
.message-name {
  color: #000;
  text-align: right;
  font-size: 24px;
  font-weight: 800;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .message-name {
    margin-top: 30px;
    font-size: 20px;
  }
}
.message-name-small {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .message-name-small {
    font-size: 14px;
  }
}

.company {
  background: #000;
  padding-bottom: 176px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-bottom: 80px;
  }
}
.company-container {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company-container {
    padding: 0 20px;
  }
}
.company-table {
  border-collapse: collapse;
  max-width: 455px;
  width: 100%;
  margin: 80px auto 0;
}
.company-item-title {
  text-align: left;
  border-bottom: 1px solid #909090;
  width: 100px;
  font-size: 14px;
  font-weight: 800;
}
.company-item-text {
  border-bottom: solid 1px #909090;
  font-size: 14px;
  padding: 25px 10px 15px 30px;
}
@media screen and (max-width: 767px) {
  .company-item-text {
    padding-left: 20px;
  }
}

.access {
  background: #000;
  padding-bottom: 84px;
}
.access-table {
  border-collapse: collapse;
  width: 100%;
}
.access-item-title {
  border-bottom: solid 1px #909090;
  text-align: left;
  width: 120px;
  padding: 25px 0 15px;
}
.access-item-bg {
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
}
.access-item-text {
  border-bottom: solid 1px #909090;
  font-size: 14px;
  padding: 25px 0 15px;
}
.access-item-bottom {
  text-align: center;
  padding-top: 15px;
  padding-left: 10px;
}
@media screen and (max-width: 550px) {
  .access-item-bottom {
    text-align: left;
  }
}
.access-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 53%;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .access-map {
    padding-top: 75%;
  }
}
.access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*===============================================
# page-service
=================================================*/
.process {
  background: #000;
  padding-top: 70px;
  padding-bottom: 50px;
}
.process-top {
  text-align: center;
}
.process-title {
  font-size: 80px;
  font-family: trajan-pro-3, serif;
  font-weight: 100;
  color: #909090;
}
@media screen and (max-width: 1023px) {
  .process-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .process-title {
    font-size: 35px;
    margin-bottom: 15px;
  }
}
.process-head {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .process-head {
    font-size: 22px;
  }
}
.process-text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .process-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .process-text {
    text-align: left;
  }
}
.process-flow {
  display: flex;
  flex-wrap: wrap;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .process-flow {
    margin-top: 50px;
  }
}
.process-flow-item {
  width: calc((100% - 156px) / 3);
  margin-right: 78px;
  margin-bottom: 18px;
}
@media screen and (max-width: 1115px) {
  .process-flow-item {
    width: calc((100% - 78px) / 2);
  }
}
@media screen and (max-width: 550px) {
  .process-flow-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0px;
  }
  .process-flow-item:nth-child(even) {
    margin-right: 0;
  }
}
.process-flow-item-02 {
  margin-top: 30px;
}
@media screen and (max-width: 1115px) {
  .process-flow-item-02 {
    margin-right: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 550px) {
  .process-flow-item-02 {
    margin-top: 30px;
  }
}
.process-flow-item-03 {
  margin-top: 60px;
  margin-right: 0;
}
@media screen and (max-width: 1115px) {
  .process-flow-item-03 {
    margin-right: 78px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .process-flow-item-03 {
    margin-right: 0;
  }
}
@media screen and (max-width: 1115px) {
  .process-flow-item-04 {
    margin-right: 0;
    margin-top: 40px;
  }
}
.process-flow-item-05 {
  margin-top: 30px;
}
@media screen and (max-width: 1115px) {
  .process-flow-item-05 {
    margin-top: 40px;
  }
}
.process-flow-item-06 {
  margin-top: 60px;
  margin-right: 0;
}
@media screen and (max-width: 1115px) {
  .process-flow-item-06 {
    margin-top: 40px;
  }
}
.process-flow-title {
  font-size: 26px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .process-flow-title {
    font-size: 22px;
  }
}
.process-flow-number {
  font-family: trajan-pro-3, serif;
  font-weight: 100;
  color: #909090;
  font-size: 60px;
  padding-right: 38px;
}
@media screen and (max-width: 767px) {
  .process-flow-number {
    font-size: 40px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .process-flow-text {
    font-size: 14px;
  }
}

.feature {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .feature {
    margin-bottom: 40px;
  }
}
.feature-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 96px;
  padding-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .feature-wrap {
    display: block;
    margin-top: 0;
  }
}
.feature-wrap-r {
  flex-flow: row-reverse;
}
@media screen and (max-width: 767px) {
  .feature-wrap-r {
    padding-bottom: 20px;
    margin-top: 60px;
  }
}
.feature-sentence {
  color: #000;
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 33px 40px;
  margin-right: -44px;
  height: 100%;
  position: relative;
  z-index: 1;
  margin-top: auto;
}
@media screen and (max-width: 1279px) {
  .feature-sentence {
    max-width: 450px;
    margin-top: 40px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .feature-sentence {
    padding-left: 20px;
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
}
.feature-sentence-r {
  margin-left: -44px;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .feature-sentence-r {
    padding-left: 20px;
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
}
.feature-img {
  position: relative;
  z-index: 0;
  width: 800px;
}
@media screen and (max-width: 767px) {
  .feature-img {
    width: 100%;
  }
}
.feature-title {
  font-size: 30px;
  font-weight: 600;
  border-bottom: solid 1px #707070;
}
@media screen and (max-width: 1023px) {
  .feature-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .feature-title {
    font-size: 22px;
    text-align: center;
  }
}
.feature-text {
  font-size: 18px;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .feature-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .feature-text {
    font-size: 14px;
  }
}

.shop {
  background: #F5F5F5;
  text-align: center;
  padding: 84px 0;
}
@media screen and (max-width: 1023px) {
  .shop-wrapper {
    padding: 0 60px;
  }
}
@media screen and (max-width: 550px) {
  .shop-wrapper {
    padding: 0 20px;
  }
}
.shop-box {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shop-box {
    padding: 60px 20px 20px;
  }
}
.shop-text {
  color: #000;
  margin-bottom: 37px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .shop-text {
    font-size: 16px;
    margin-bottom: 50px;
    text-align: left;
  }
}
.shop-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1120px;
  width: 100vw;
  padding: 0 40px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 767px) {
  .shop-wrap {
    display: block;
    padding: 0 20px;
  }
}
.shop-img {
  margin-right: 48px;
}
@media screen and (max-width: 767px) {
  .shop-img {
    margin: 0 auto 40px;
  }
}
.shop-img:nth-last-child(1) {
  margin-right: 0;
}
.shop-access {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #000;
}
@media screen and (max-width: 550px) {
  .shop-access {
    text-align: left;
  }
}
.shop-map {
  max-width: 790px;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 39%;
  margin-top: 18px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .shop-map {
    padding-top: 58.5%;
  }
}
.shop-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*===============================================
# privacy-policy
=================================================*/
.privacy-policy {
  margin: 65px 0;
  line-height: 1.9;
  color: #000;
}
.privacy-policy-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  font-family: YuMincho, "Yu Mincho", serif;
}
.privacy-policy-text {
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/*===============================================
# thanks
=================================================*/
.thanks {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.thanks-text {
  font-weight: bold;
  color: #333;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .thanks-text {
    margin-bottom: 60px;
  }
}
.thanks-btn {
  display: block;
  max-width: 355px;
  width: 100%;
  margin: 0 auto;
  background-color: #f49800;
  border-radius: 3px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .thanks-btn {
    font-size: 16px;
  }
}

/*===============================================
# contact
=================================================*/
.wpcf7 form .wpcf7-response-output {
  color: #000;
}

.contact-body {
  padding: 100px 0;
}
@media screen and (max-width: 1023px) {
  .contact-body {
    margin: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-body {
    margin: 0 25px;
    padding-bottom: 80px;
  }
}

.contact-container {
  width: 100%;
  overflow: hidden;
}

.contact-phone {
  text-align: center;
  margin-bottom: 100px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .contact-phone {
    margin-bottom: 48px;
  }
}
.contact-phone-text {
  font-size: 21px;
  font-weight: 400;
}
@media screen and (max-width: 550px) {
  .contact-phone-text {
    font-size: 16px;
  }
}
.contact-phone-text a {
  color: #2DA774;
}
.contact-phone-number {
  font-size: 44px;
  font-weight: bold;
  margin-left: 20px;
  color: #2DA774;
}
@media screen and (max-width: 550px) {
  .contact-phone-number {
    font-size: 24px;
    margin-left: 10px;
  }
}

.contact-form {
  margin-top: 70px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  margin: 0 50px;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 1023px) {
  .contact-item {
    display: block;
    margin: 0 0px;
  }
}
.contact-item-contents {
  align-items: center;
}
.contact-item-textarea {
  align-items: flex-start;
}
.contact-item-textarea .contact-title {
  padding-top: 16px;
}
@media screen and (max-width: 1023px) {
  .contact-item-textarea .contact-title {
    padding-top: 0;
  }
}
@media screen and (max-width: 1023px) {
  .contact-item-acceptance {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .contact-item-acceptance {
    display: block;
  }
}

.contact-title {
  font-weight: 700;
  font-size: 16px;
  width: 300px;
  margin-right: 50px;
  color: #000;
}
.contact-title p {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .contact-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact-title {
    max-width: 300px;
    width: 100%;
    font-size: 15px;
  }
}
.contact-title-acceptance {
  width: 283px;
  box-sizing: border-box;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .contact-title-acceptance {
    margin-bottom: 0;
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .contact-title-acceptance {
    margin-bottom: 20px;
    max-width: 300px;
    width: 100%;
  }
}

.contact-input {
  width: 599px;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .contact-input {
    width: 100%;
    margin: 0;
  }
}

.contact-privacy-policy {
  color: #000;
  border-bottom: solid 1px;
  padding-bottom: 2px;
}

.contact-check {
  text-align: center;
}
@media screen and (max-width: 550px) {
  .contact-check {
    font-size: 12px;
  }
  .contact-check span {
    vertical-align: baseline;
  }
}

.haveto {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #d43e47;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  padding: 0 10px;
}

.contact-agree {
  text-align: center;
  padding: 72px 20px;
}
@media screen and (max-width: 767px) {
  .contact-agree {
    padding: 40px 15px;
  }
}
.contact-agree-text {
  font-weight: bold;
  margin-top: 28px;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.wpcf7 input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0 auto;
  max-width: 880px;
  width: 100%;
  display: block;
  padding: 25.5px 0;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  opacity: 1;
  cursor: pointer;
  font-family: YuMincho, "Yu Mincho", serif;
}

.wpcf7-form-control {
  background-color: #fff;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  border: 0;
  font-size: 16px;
  border: 1px solid #b5b5b5;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel] {
  padding: 17px 5px;
}

textarea {
  min-height: 190px;
  resize: vertical;
  padding: 5px 5px;
}

.contact-item-input {
  padding: 0 20px;
  width: calc(100% - 260px);
}
@media screen and (max-width: 767px) {
  .contact-item-input {
    width: 100%;
    padding: 0;
  }
}

.contact-radio {
  margin-bottom: 5px;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

.wpcf7-list-item {
  margin-left: 0;
}

.contact-footer {
  margin-top: 50px;
  text-align: center;
}
.contact-footer-text {
  font-size: 16px;
  line-height: 1;
}
.contact-footer .contact-footer-text {
  display: flex;
}
.contact-footer .wpcf7-form-control-wrap {
  display: block;
}
.contact-footer span.wpcf7-list-item {
  position: relative;
  margin-right: 20px;
}
.contact-footer input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.contact-footer .wpcf7-list-item-label:before {
  content: "";
  border: 2px solid #b5b5b5;
  display: inline-block;
  top: 0px;
  left: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  vertical-align: middle;
}
.contact-footer input[type=checkbox]:checked + .wpcf7-list-item-label:after { /*チェックアイコン*/
  position: absolute;
  content: "";
  width: 8px;
  height: 15px;
  border: 2px solid #333;
  border-top: 0;
  border-left: 0;
  transform: rotate(40deg);
  top: 4px;
  left: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .contact-footer input[type=checkbox]:checked + .wpcf7-list-item-label:after {
    left: 12px;
    top: 3px;
  }
}

.wpcf7-list-item-label {
  margin-right: 25px;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.contact-footer-submit {
  margin-top: 25px;
  width: 100%;
}

.contact-link {
  color: #fff;
  display: block;
  background-color: #333333;
  width: 100%;
  font-size: 18px;
  padding: 25px 0;
  cursor: pointer;
}
.contact-link:hover {
  opacity: 0.6;
}

.attend-box {
  margin: 0 auto;
  margin-top: 45px;
  width: 86.5%;
  height: 205px;
  overflow-y: scroll;
  text-align: left;
  padding: 30px 35px;
  border: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  .attend-box {
    padding: 15px 18px;
    width: 95%;
    margin-top: 25px;
  }
}
.attend-box p {
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .attend-box p {
    font-size: 12px;
  }
}

#scroll::-webkit-scrollbar {
  width: 20px;
}

#scroll::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-left: solid 1px #ececec;
}

#scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
  border: 3px solid #f2f2f2;
}

.contact-radio {
  margin-bottom: 5px;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

.contact-radio-wrap {
  margin-top: -5px;
}
.contact-radio-wrap-top {
  margin-top: -35px;
}

.contact-protect {
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  line-height: 1.3;
  color: 333;
}
@media screen and (max-width: 550px) {
  .contact-protect {
    text-align: left;
  }
}

.contact-submit {
  margin-top: 100px;
}

/*===============================================
# single
=================================================*/
.content {
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .content {
    display: block;
  }
}

.primary {
  width: 69.5%;
}
@media screen and (max-width: 767px) {
  .primary {
    width: 100%;
  }
}

.secondary {
  width: 26%;
  margin-left: 50px;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .secondary {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

.entry-top-img {
  background-image: url("../images/row/top_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 160px 0;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entry-top-img {
    padding: 240px 0 180px 0;
    margin-bottom: 0;
  }
}

.category-name {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .category-name {
    font-size: 28px;
  }
}

.category-description {
  font-size: 16px;
  color: #000;
  letter-spacing: 0.2em;
  line-height: 2.25;
  font-weight: bold;
}

.breadcrumb {
  color: #000;
  font-size: 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 0;
    padding: 0 10px;
  }
}
.breadcrumb span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .breadcrumb span {
    font-size: 10px;
  }
}
.breadcrumb-black {
  background: #000;
  color: #fff;
  margin-top: 0;
  padding-top: 20px;
}
.breadcrumb-black span {
  color: #fff;
}

.breadcrumb a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb i {
  margin-left: 15px;
  margin-right: 15px;
}

.entry-label {
  display: inline-block;
  margin-bottom: 18px;
}

.entry-label a {
  background: #397fc1;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 4px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.entry-label a:hover {
  opacity: 0.6;
}

.entry-title {
  font-size: 24px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 20px;
}

.m_page .entry-title {
  margin-bottom: 34px;
}

.entry-meta {
  align-items: center;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .entry-meta {
    margin-bottom: 20px;
  }
}

.entry-published,
.entry-updated {
  color: #777777;
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.entry-updated {
  margin-left: 27px;
}

.entry-img {
  text-align: center;
  width: 100%;
  height: 70%;
}
.entry-img img {
  width: 100%;
  height: 100%;
}

.entry-tag-items {
  border-top: 1px solid #e2e2e2;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}

.entry-tag-head {
  background: #808080;
  border-radius: 3px;
  color: #fff;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 15px;
  padding: 6px 15px 0;
}

.entry-tag-head::before {
  content: "\f02b";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 5px;
}

.entry-tag-item {
  margin-bottom: 10px;
  margin-right: 15px;
}

.entry-tag-item:last-child {
  margin-right: 0;
}

.entry-tag-item a {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  color: #808080;
  display: block;
  font-size: 14px;
  padding: 6px 18px 5px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.entry-tag-item a:hover {
  background: #808080;
  border-color: #808080;
  color: #fff;
}

.entry-body {
  margin-top: 32px;
  padding-bottom: 100px;
}

.entry-date {
  display: flex;
  align-items: center;
}

.m_page .entry-body {
  padding-bottom: 12px;
}

.entry-body h2 + p,
.entry-body h3 + p,
.entry-body h4 + p,
.entry-body h5 + p,
.entry-body h6 + p {
  margin-top: 0;
}

.entry-body h1 {
  border-top: 2px solid #333;
  color: #000;
  background: #F2F2F2;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 20px 15px;
  position: relative;
  text-align: left;
}

.entry-body h2 {
  border-top: 2px solid #333;
  color: #000;
  background: #F2F2F2;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 20px 15px;
  position: relative;
  text-align: left;
}

.entry-body h3 {
  border-top: 2px solid #333;
  color: #000;
  background: #F2F2F2;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 40px;
  margin-top: 40px;
  padding-bottom: 16px;
  padding-left: 22px;
  padding-top: 16px;
}

.entry-body h4 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 10px 0 10px 16px;
  border-left: 5px solid #333;
}

.entry-body h5 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 27px;
  margin-top: 40px;
  padding-left: 45px;
  position: relative;
}
.entry-body h5::before {
  position: absolute;
  content: "";
  background: url(../images/post/check.png) no-repeat;
  background-size: 100%;
  width: 23px;
  height: 20px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.entry-body h6 {
  border-bottom: solid 2px #333;
  border-top: solid 2px #333;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin: 40px 0;
  padding: 20px 15px;
}

.entry-body p {
  line-height: 1.68;
  margin-top: 30px;
  color: #000;
}

.entry-body ul {
  list-style-type: disc;
  margin-bottom: 1em;
  padding-left: 20px;
}

.entry-body ol {
  list-style-type: decimal;
  margin-bottom: 1em;
  padding-left: 20px;
}

.entry-body li {
  line-height: 1.6;
  margin-bottom: 0.4em;
  margin-top: 0.4em;
}

.entry-closed {
  display: block;
  width: 100%;
  text-align: center;
  padding: 50px 0;
  font-size: 20px;
  color: #000;
}

@media screen and (max-width: 767px) {
  .entry {
    padding: 10px;
  }
  .entry-label a {
    font-size: 11px;
    padding: 4px 14px;
  }
  .entry-title {
    font-size: 20px;
    line-height: 1.41667;
  }
  .entry-published,
  .entry-updated {
    font-size: 11px;
  }
  .entry-updated {
    margin-left: 18px;
  }
  .entry-tag-items {
    padding-top: 24px;
  }
  .entry-tag-head {
    padding: 6px 15px 0;
  }
  .entry-tag-item a {
    padding: 4px 16px 3px;
  }
  .entry-body {
    padding-bottom: 50px;
  }
  .entry-body h2 {
    font-size: 20px;
    margin-top: 80px;
    padding: 27px 17px;
  }
  .entry-body h3 {
    font-size: 20px;
  }
  #toc_container {
    padding: 20px 20px;
  }
  #toc_container .toc_title {
    margin-bottom: 18px;
  }
  #toc_container > ul > li {
    margin-bottom: 30px;
  }
  #toc_container > ul > li > ul {
    margin-top: 12px;
  }
  .related-item {
    margin-right: 30px;
    width: calc(50% - 15px);
  }
  .related-item:nth-child(2n) {
    margin-right: 0;
  }
  .widget {
    margin-bottom: 57px;
  }
  .entry-404 {
    padding-bottom: 0;
    padding-top: 100px;
  }
  .entry-404-head {
    font-size: 40px;
    margin-bottom: 36px;
  }
  .entry-404-head span {
    display: block;
  }
  .entry-404-head span::after {
    display: none;
  }
  .entry-404-lead {
    font-size: 20px;
    margin-bottom: 34px;
  }
  .entry-404-lead .m_sp {
    display: block;
  }
  .entry-404-content {
    font-size: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .entry-404-btn {
    margin-top: 62px;
  }
  #content {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #content {
    margin-top: 20px;
  }
}
.entry-back {
  margin-top: 30px;
}
.entry-back-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background: #000;
  padding: 24px 10px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .entry-back-btn {
    padding: 20px 10px;
    font-size: 16px;
  }
}

/*===============================================
# sidebar
=================================================*/
.widget {
  margin-bottom: 45px;
}

.widget-title {
  color: #000;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding-bottom: 8px;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}

.secondary-category-list a {
  color: #000;
  padding-left: 30px;
  position: relative;
}
.secondary-category-list a::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/arrow.png) center center/contain no-repeat;
  background-size: 100%;
  width: 7px;
  height: 13px;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.secondary-category-item {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.secondary-archive-list li a {
  color: #000;
  padding-left: 30px;
  position: relative;
}
.secondary-archive-list li a::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/arrow.png) center center/contain no-repeat;
  width: 7px;
  height: 13px;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.secondary-post-list {
  margin-bottom: -10px;
  font-weight: bold;
}

.secondary-post-item {
  display: block;
  padding: 10px 3px;
  border-bottom: #d9d9d9 solid 1px;
}
.secondary-post-item p {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0;
  font-weight: bold;
}
.secondary-post-item time {
  color: #000;
  font-size: 10px;
  line-height: 2.4;
  letter-spacing: 0;
  margin-top: -6px;
  display: block;
}

@media screen and (max-width: 767px) {
  .entry-header {
    margin-top: 30px;
  }
}

.entry-header-category {
  background: url(../img/category/head.png) center center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .entry-header-category {
    background: url(../img/category/head-sp.png) center center/cover no-repeat;
  }
}

/*===============================================
# 404
=================================================*/
#content > .inner {
  display: block;
}

.entry-404 {
  padding-bottom: 240px;
  padding-top: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entry-404 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.entry-404-head {
  color: #f0cdd0;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #808080;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #000;
  line-height: 2.1;
}

.entry-404-btn {
  margin-top: 58px;
}

/*===============================================
# archive
=================================================*/
.archive-head {
  border-top: 3px solid #397fc1;
  margin-bottom: 56px;
  padding: 28px 0 0;
}

.archive-head.m_description {
  margin-bottom: 70px;
}

.archive-lead {
  color: #397fc1;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.archive-title {
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
}

.archive-title.m_category::before {
  color: #397fc1;
  content: "\f02d";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-right: 8px;
}

.archive-title.m_search span {
  color: #397fc1;
}

.archive-title.m_search::before {
  color: #397fc1;
  content: "\f002";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-right: 8px;
}

.archive-description {
  font-size: 14px;
  line-height: 1.4;
}

.entries {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .entries {
    margin-top: 70px;
  }
}

.entry-item {
  background: #fff;
  display: block;
  margin-right: 40px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  padding: 25px 0;
  border-bottom: 1px solid #D9D9D9;
}

.entry-item:hover {
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
}

.entry-item:nth-child(2n),
.entry-item:last-child {
  margin-right: 0;
}

.entry-item-img {
  text-align: center;
  width: 135px;
  height: 100px;
  overflow: hidden;
  position: relative;
}
.entry-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.entry-item-body {
  padding: 30px;
}

.entry-item-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.entry-item-published {
  color: #000;
  font-size: 13px;
  margin-top: 10px;
  font-weight: 400;
  font-family: roboto, sans-serif;
}

.entry-item-tag {
  background: #397fc1;
  color: #fff;
  display: block;
  font-size: 12px;
  margin-right: 15px;
  padding: 3px 14px 2px;
}

.entry-item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
  margin-bottom: 14px;
  color: #000;
  font-weight: 700;
}

.entry-item-excerpt {
  color: #454545;
  font-size: 14px;
  line-height: 1.71429;
}

.entries.m_horizontal {
  margin-bottom: 62px;
}

.entries.m_horizontal .entry-item {
  display: flex;
  margin-right: 0;
  padding: 20px 10px;
  width: 100%;
}

.entries.m_horizontal .entry-item:last-child {
  margin-bottom: 0;
}

.entries.m_horizontal .entry-item .entry-item-body {
  padding: 0 0 0 20px;
  width: 63.97059%;
}

.entries.m_block .entry-item {
  width: 100%;
  margin-right: 0;
}

.entries.m_block .entry-item .entry-item-body {
  padding: 20px;
  width: 100%;
}

.entries.m_block .entry-item .entry-item-published {
  font-size: 14px;
}

.entries.m_block .entry-item .entry-item-tag {
  font-size: 14px;
}

.entries.m_block .entry-item .entry-item-title {
  font-size: 20px;
}

.entries.m_block .entry-item .entry-item-excerpt {
  font-size: 16px;
}

.entry {
  background: #fff;
  padding: 80px 0px 12px;
}
@media screen and (max-width: 767px) {
  .entry {
    padding: 10px;
  }
}

.entry-label {
  display: inline-block;
  margin-bottom: 18px;
}

.entry-label a {
  background: #333;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 4px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.entry-label a:hover {
  opacity: 0.6;
}

.pagenation {
  margin-top: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.pagenation-left {
  background: #2DA774;
  color: #fff;
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  min-width: 64px;
  text-align: center;
  text-decoration: none;
  margin: 0 2px;
}

.pagenation a {
  transition: all 0.3s ease 0s;
}

.pagenation a:hover {
  opacity: 0.6;
}

.pagenation a.next,
.pagenation a.prev {
  font-size: 30px;
}

.pagenation a.next:hover,
.pagenation a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  background: #000000;
  color: #fff;
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  margin: 0 2px;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #E1E1E1;
  color: #000;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
  display: none;
}

@media screen and (max-width: 767px) {
  body.m_fixed_sns {
    padding-bottom: 67px;
  }
  .archive-head {
    margin-bottom: 20px;
    padding-top: 26px;
    margin-top: 30px;
  }
  .archive-lead {
    margin-bottom: 8px;
  }
  .archive-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  #content > .inner {
    display: block;
  }
  #primary {
    margin-bottom: 70px;
    width: 100%;
  }
  .m_one #primary {
    margin-bottom: 70px;
  }
  #secondary {
    width: 100%;
  }
  .m_one #secondary {
    display: block;
  }
  .drawer {
    display: block;
  }
  .entries {
    display: block;
  }
  .entry-item {
    margin-bottom: 27px;
    margin-right: 0;
    width: 100%;
  }
  .entry-item:last-child {
    margin-bottom: 0;
  }
  .entries.m_horizontal .entry-item {
    margin-bottom: 20px;
    padding: 10px 0;
  }
  .entries.m_horizontal .entry-item .entry-item-body {
    padding-left: 12px;
    width: 54.93827%;
  }
  .entries.m_horizontal .entry-item .entry-item-published {
    font-size: 10px;
  }
  .entries.m_horizontal .entry-item .entry-item-tag {
    font-size: 10px;
    margin-right: 8px;
  }
  .entries.m_horizontal .entry-item .entry-item-title {
    font-size: 12px;
    margin-bottom: 0;
  }
  .entries.m_horizontal .entry-item .entry-item-excerpt {
    display: none;
  }
  .entries.m_horizontal {
    margin-bottom: 50px;
  }
  .entries.m_horizontal .entry-item {
    margin-bottom: 20px;
    padding: 10px;
  }
  .entries.m_block .entry-item .entry-item-published {
    font-size: 12px;
  }
  .entries.m_block .entry-item .entry-item-tag {
    font-size: 12px;
  }
  .entries.m_block .entry-item .entry-item-title {
    font-size: 18px;
  }
  .entries.m_block .entry-item .entry-item-excerpt {
    font-size: 14px;
  }
}
/*===============================================
# page-template
=================================================*/
#page-main {
  background: #fff;
}

.page-message {
  padding-bottom: 100px;
}

.page-body-title h2 {
  font-family: muli, YuGothic, "Yu Gothic", sans-serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}
.page-body-title p {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 3;
  font-weight: bold;
  text-align: center;
}

.page-message-body {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .page-message-body {
    display: block;
  }
}

.page-message-img {
  width: 340px;
  height: 335px;
}
@media screen and (max-width: 767px) {
  .page-message-img {
    width: 100%;
  }
}
.page-message-img img {
  width: 100%;
  height: 100%;
}

.page-message-text {
  margin-left: 50px;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .page-message-text {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }
}
.page-message-text p {
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 2.8;
  font-weight: 500;
}
.page-message-text h3 {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 2.5;
  margin-top: 50px;
  text-align: right;
  font-weight: 500;
}

.page-history {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .page-history {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-history-body {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .page-history-body {
    margin-top: 40px;
  }
}

.page-history-item {
  display: flex;
  position: relative;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .page-history-item {
    height: 100%;
    padding-bottom: 10px;
  }
}
.page-history-item::before {
  position: absolute;
  content: "";
  background-color: #333;
  width: 2px;
  height: 70px;
  top: 11px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page-history-item::before {
    height: 100%;
  }
}
.page-history-item dt {
  width: 110px;
  padding-left: 30px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-history-item dt {
    width: 100px;
    padding-left: 11px;
  }
}
.page-history-item dt::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #333333;
  border-radius: 50%;
  top: 11px;
  left: -4px;
}
.page-history-item dd {
  width: calc(100% - 110px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.5;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .page-history-item dd {
    width: calc(100% - 100px);
    padding-left: 20px;
  }
}
.page-history-item:last-child::before {
  display: none;
}

.page-company {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-company {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-company-body {
  margin: 0 auto;
  max-width: 545px;
  margin-top: 60px;
}

.page-company-item {
  display: flex;
}
.page-company-item dt {
  width: 130px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .page-company-item dt {
    width: 100px;
  }
}
.page-company-item dd {
  width: calc(100% - 130px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .page-company-item dd {
    width: calc(100% - 100px);
  }
}

.page-sample {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f9f9f9;
}

.page-sample-body {
  margin-top: 60px;
}

.page-sample-top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-sample-top {
    display: block;
  }
}

.page-sample-top-item {
  width: 48.7%;
  border: 1px solid #000;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .page-sample-top-item {
    width: 100%;
    padding: 30px;
  }
  .page-sample-top-item + .page-sample-top-item {
    margin-top: 30px;
  }
}
.page-sample-top-item img {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  width: 135px;
  height: 135px;
}
.page-sample-top-item h3 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6667;
  margin-top: 35px;
}
.page-sample-top-item p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
  margin-top: 35px;
}

.page-sample-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .page-sample-bottom {
    display: block;
  }
}

.page-sample-bottom-item {
  width: 31.5%;
  border: 1px solid #000;
  padding: 35px;
}
@media screen and (max-width: 767px) {
  .page-sample-bottom-item {
    width: 100%;
  }
  .page-sample-bottom-item + .page-sample-bottom-item {
    margin-top: 30px;
  }
}
.page-sample-bottom-item img {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
}
.page-sample-bottom-item h3 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.1875;
  margin-top: 20px;
}
.page-sample-bottom-item p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.357;
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */