@charset "UTF-8";
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, table, caption, tbody, tfoot, thead, tr, th, td, 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, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 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;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  _font-size: 62.5%;
  font-size: min(1vw, 10px);
  scroll-behavior: smooth;
}

body {
  font-size: 1.4rem;
  line-height: 2.5;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  color: #162e7e;
  background: #f9f8f8;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.wrapper {
  display: block;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  main {
    padding-top: 0;
  }
}

section {
  margin: 0;
  padding: 15rem 0;
}

.container {
  max-width: calc(1200px + 14vw);
  width: 100%;
  margin: 0 auto;
  padding: 0 7vw;
  position: relative;
}
@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

a {
  color: #162e7e;
  text-decoration: none;
}

a:link {
  color: #162e7e;
  text-decoration: none;
}

a:visited {
  color: #162e7e;
  text-decoration: none;
}

a:hover {
  color: #162e7e;
  text-decoration: none;
}

a:focus, *:focus {
  outline: none;
}

a img:hover {
  opacity: 0.5;
  transition: all 0.5s ease 0s;
}

/*===== header ====================================*/
header {
  background: none;
  position: fixed;
  height: 13rem;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #162e7e;
  padding: 5rem;
  transition: 1s ease-in-out;
}
header.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}
header.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}
header .logo {
  font-size: 20px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  width: 14rem;
}
@media (max-width: 768px) {
  header .logo {
    margin: 0 0 0 10px;
    width: 24rem;
    z-index: 99999;
  }
}
header nav ul {
  display: flex;
  justify-content: center;
  margin: 20px;
  width: calc(100% - 40px);
}
header nav ul li {
  font-family: "Cardo", serif;
  font-weight: bold;
  font-size: 1.8rem;
}
header nav ul li a {
  margin: 0 0 0 4rem;
  padding: 0;
  position: relative;
}
header nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1.5px;
  background: #162e7e;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
header nav ul li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}
header nav ul li a.active::after {
  bottom: 1.1rem;
  transform: none;
  transform-origin: center center;
  transition: transform none;
  transform: skew(-1deg, -35deg);
}
@media (max-width: 768px) {
  header nav ul li a.active::after {
    display: none;
  }
}
@media (max-width: 768px) {
  header {
    height: 17rem;
    display: flex;
    padding: 3rem;
  }
  header.UpMove, header.DownMove {
    animation: none;
    padding: 0;
  }
  header #g-nav {
    position: fixed;
    z-index: 999;
    bottom: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(255, 255, 255);
    transition: opacity 0.5s ease;
    opacity: 0;
  }
  header #g-nav.panelactive {
    bottom: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  header #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  header #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    display: block;
  }
  header #g-nav ul li {
    list-style: none;
    text-align: left;
    border-bottom: solid 1px #eff1fa;
    margin: 5px 0 0 0;
  }
  header #g-nav ul li a {
    text-decoration: none;
    padding: 20px;
    display: block;
    text-transform: uppercase;
    font-size: 5rem;
    font-weight: normal;
    background: url(../images/arrow01.svg) no-repeat right 20px center;
    background-size: 20px;
  }
  header .openbtn {
    position: fixed;
    z-index: 9999;
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 17rem;
    height: 17rem;
  }
  header .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 17px;
    height: 1px;
    background-color: #162e7e;
    width: 45%;
  }
  header .openbtn span:nth-of-type(1) {
    top: 42%;
  }
  header .openbtn span:nth-of-type(2) {
    top: 58%;
  }
  header .openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 23px;
    transform: translateY(0px) rotate(-135deg);
    width: 30%;
  }
  header .openbtn.active span:nth-of-type(2) {
    top: 50%;
    left: 23px;
    transform: translateY(0px) rotate(135deg);
    width: 30%;
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-50px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===== footer ====================================*/
footer {
  font-size: 1.6rem;
  margin: 20rem 0 0 0;
  line-height: 1.5;
  font-family: "Cardo", serif;
}
@media (max-width: 768px) {
  footer {
    font-size: 3rem;
  }
}
footer .container {
  border-top: solid 1px #162e7e;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
footer .logo {
  margin: 0 0 5rem 0;
}
footer .logo img {
  width: 20rem;
}
@media (max-width: 768px) {
  footer .logo img {
    width: 30rem;
  }
}
footer nav ul {
  display: flex;
  justify-content: right;
  align-items: baseline;
}
@media (max-width: 768px) {
  footer nav ul {
    display: block;
    margin: 5rem 0 0 0;
  }
}
footer nav ul li {
  margin: 0 0 0 3rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  footer nav ul li {
    margin: 3rem 0 0 0;
    font-size: 3rem;
    font-weight: bold;
  }
}

/*===== Copyright ====================================*/
.copyright {
  position: fixed;
  right: 2vw;
  top: 0%;
  text-align: center;
  font-size: 1.4rem;
  height: 100%;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .copyright {
    display: none;
    font-size: 1.4rem;
    right: 10px;
  }
}

/*===== background ====================================*/
.bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.bg .wave1,
.bg .wave2,
.bg .wave3 {
  position: fixed;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  filter: blur(100px);
}
.bg .wave1::before,
.bg .wave2::before,
.bg .wave3::before {
  position: absolute;
  content: "";
}
.bg .wave1::before {
  top: -20%;
  left: -40%;
  border-radius: 50% 50%/50% 70%;
  width: 70%;
  height: 90%;
  background-image: linear-gradient(80deg, #7695f9 0%, #96e4f2 50%, #fff 100%);
  animation: wave-anime linear 20s infinite;
}
.bg .wave2::before {
  top: -30%;
  right: -20%;
  border-radius: 50% 50%/50% 70%;
  width: 50%;
  height: 35%;
  background-image: linear-gradient(80deg, #7695f9 0%, #96e4f2 50%, #fff 100%);
  animation: wave-anime linear 20s infinite;
}
.bg .wave3::before {
  bottom: -45%;
  right: -10%;
  border-radius: 50% 50%/50% 70%;
  width: 60%;
  height: 65%;
  background-image: linear-gradient(80deg, #7695f9 0%, #96e4f2 50%, #fff 100%);
  animation: wave-anime linear 20s infinite;
}

@keyframes wave-anime {
  0% {
    transform: rotate(0);
    opacity: 0.4;
  }
  to {
    transform: rotate(180deg);
    opacity: 0.8;
  }
  to {
    transform: rotate(360deg);
    opacity: 0.4;
  }
}
/*===== Grid ====================================*/
.grid_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}
@media (max-width: 768px) {
  .grid_container {
    display: block;
  }
}
.grid_container.gap {
  grid-gap: 20px;
}
.grid_container.end {
  align-items: end;
}
.grid_container .col1-3 {
  grid-column: 1/3;
}
.grid_container .col1-4 {
  grid-column: 1/4;
}
.grid_container .col1-5 {
  grid-column: 1/5;
}
.grid_container .col2-5 {
  grid-column: 2/5;
}
.grid_container .col3-5 {
  grid-column: 3/5;
}
.grid_container .row1-3 {
  grid-row: 1/3;
}

/*===== common ====================================*/
/*ふわっと表示させる*/
.fadein {
  opacity: 0;
  transform: translateY(6rem);
  filter: blur(15px);
  transition: opacity 1.2s ease-in-out, transform 1.8s ease-out, filter 0.8s ease-out;
}

.fadein.is-visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* アニメーション抑制設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .fadein {
    animation: none !important;
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
}
.title1 {
  text-align: center;
  color: #162e7e;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 clamp(20px, 5.333vw, 40px) 0;
  letter-spacing: 0.1em;
}
.title1 span {
  font-size: clamp(18px, 3vw, 24px);
  display: block;
  color: #0000ff;
  letter-spacing: 0;
}
.title1 + p {
  margin: 0 0 clamp(20px, 5.333vw, 40px) 0;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .title1 + p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.inner_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .inner_flex {
    display: block;
  }
  .inner_flex.sp-flex {
    display: flex;
  }
}
.inner_flex.ai_fe {
  align-items: flex-end;
}
.inner_flex.ai_c {
  align-items: center;
}
.inner_flex.fd_rr {
  flex-direction: row-reverse;
}
.inner_flex.jc_c {
  justify-content: center;
}
.inner_flex.jc_sa {
  justify-content: space-around;
}

.sec_btn {
  display: flex;
  justify-content: right;
  align-items: end;
}
.sec_btn_wide {
  align-items: start;
}

a.btn_more, input.btn_more, button.btn_more {
  background: #ffffff;
  width: 9rem;
  height: 9rem;
  box-shadow: 10px 10px 10px rgba(22, 46, 126, 0.05);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cardo", serif;
  font-style: italic;
  font-size: 1.4rem;
  transition: all 0.5s ease 0s;
  position: relative;
  color: #162e7e;
}
@media (max-width: 768px) {
  a.btn_more, input.btn_more, button.btn_more {
    width: 16rem;
    height: 16rem;
    font-size: 3rem;
  }
}
a.btn_more::before, input.btn_more::before, button.btn_more::before {
  content: "";
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #162e7e;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  right: 0;
  width: 2rem;
  height: 0.1rem;
  background: none;
}
@media (max-width: 768px) {
  a.btn_more::before, input.btn_more::before, button.btn_more::before {
    width: 2.8rem;
  }
}
a.btn_more::after, input.btn_more::after, button.btn_more::after {
  position: absolute;
  content: "";
  top: auto;
  right: 0em;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 0.1rem solid #162e7e;
  border-right: 0.1rem solid #162e7e;
  transform: rotate(45deg);
  transition: all 0.5s ease 0s;
}
@media (max-width: 768px) {
  a.btn_more::after, input.btn_more::after, button.btn_more::after {
    width: 1.9rem;
    height: 1.9rem;
  }
}
a.btn_more:hover, input.btn_more:hover, button.btn_more:hover {
  box-shadow: -3px -3px 15px rgba(22, 46, 126, 0.2);
  transition: all 0.5s ease 0s;
  transform: translateY(2px);
}
a.btn_more:hover::before, input.btn_more:hover::before, button.btn_more:hover::before {
  background: #162e7e;
  transform: translate(1rem, 0);
}
a.btn_more:hover::after, input.btn_more:hover::after, button.btn_more:hover::after {
  transform: rotate(45deg) translate(0.7rem, -0.7rem);
  transition: all 0.5s ease 0s;
}
a.btn_more.wide, input.btn_more.wide, button.btn_more.wide {
  width: 40rem;
  border-radius: 50px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  a.btn_more.wide, input.btn_more.wide, button.btn_more.wide {
    width: 100%;
    font-size: 4rem;
  }
}

/*===== パンくず（共通） ====================================*/
.breadcrumb {
  position: fixed;
  left: 2vw;
  top: 0;
  writing-mode: sideways-lr;
  height: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.breadcrumb li {
  margin: 0 0;
  padding: 0;
}
.breadcrumb li a {
  position: relative;
}
.breadcrumb li a::before {
  position: absolute;
  right: -1px;
  content: "";
  width: 1px;
  height: 100%;
  background: #162e7e;
  bottom: -1px;
  transform: scale(1, 0);
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
.breadcrumb li a:hover::before {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left bottom; /*左から右に向かう*/
}
.breadcrumb li::after {
  display: inline-block;
  content: "";
  bottom: 1.1rem;
  transform: rotate(45deg);
  width: 30px;
  height: 0.5px;
  background: #162e7e;
  vertical-align: middle;
  margin: 3rem 0;
}
.breadcrumb li:last-child::after {
  display: none;
}

/*===== ページャー ====================================*/
.pager ul {
  text-align: center;
}
.pager ul li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: #eeeeee;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  border-radius: 5px;
}
.pager ul li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  color: #000000;
  text-decoration: none;
}
.pager ul li a span {
  display: table-cell;
  vertical-align: middle;
}
.pager ul li a:hover, .pager ul li a.active {
  color: #ffffff;
  background: #800080;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .pager ul li {
    display: none;
  }
  .pager ul li.pre, .pager ul li.next {
    display: inline-block;
    width: calc(50% - 10px);
    height: 40px;
    text-align: center;
  }
  .pager ul li.pre a, .pager ul li.next a {
    width: 100%;
    text-align: center;
  }
  .pager ul li.pre span::after {
    content: "前の10件へ";
    margin: 0 0 0 10px;
  }
  .pager ul li.next span::before {
    content: "次の10件へ";
    margin: 0 10px 0 0;
  }
}

/*===== よくある質問 ====================================*/
#faq dl {
  padding: 30px;
  border-bottom: solid 1px #aea094;
  position: relative;
}
@media (max-width: 768px) {
  #faq dl {
    padding: 10px 0;
  }
}
#faq dl:first-of-type {
  border-top: solid 1px #aea094;
}
#faq dl::before {
  content: "";
  background: #000000;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 55px;
  right: 30px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 768px) {
  #faq dl::before {
    width: 15px;
    top: 28px;
    right: 0;
  }
}
#faq dl::after {
  content: "";
  background: #000000;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 45px;
  right: 40px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 768px) {
  #faq dl::after {
    height: 15px;
    top: 21px;
    right: 7px;
  }
}
#faq dl.active::before {
  transition: all 0.5s ease 0s;
  transform: rotate(-180deg);
  opacity: 0;
}
#faq dl.active::after {
  transition: all 0.5s ease 0s;
  transform: rotate(90deg);
}
#faq dl dt {
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  color: #000000;
  margin: 0 0 0 3.1em;
  text-indent: -3.1em;
}
@media (max-width: 768px) {
  #faq dl dt {
    font-size: 15px;
    font-size: 1.5rem;
    margin: 0 0 0 1.7em;
    text-indent: -1.7em;
    padding-right: 25px;
  }
}
#faq dl dt::before {
  content: "Q";
  font-size: 26px;
  font-size: 2.6rem;
  color: #008000;
  margin: 0 20px 0 0;
}
@media (max-width: 768px) {
  #faq dl dt::before {
    font-size: 20px;
    font-size: 2rem;
    margin: 0 10px 0 0;
  }
}
#faq dl dd {
  margin: 0 0 0 3.1em;
  text-indent: -3.1em;
  display: none;
}
@media (max-width: 768px) {
  #faq dl dd {
    margin: 0 0 0 1.7em;
    text-indent: -1.7em;
  }
}
#faq dl dd::before {
  content: "A";
  font-size: 26px;
  font-size: 2.6rem;
  color: #ad4040;
  font-family: "Noto Serif JP", serif;
  margin: 0 20px 0 2px;
}
@media (max-width: 768px) {
  #faq dl dd::before {
    font-size: 20px;
    font-size: 2rem;
    margin: 0 10px 0 0;
  }
}

/*===== TOP ====================================*/
#top .sec_title {
  font-size: 7.5rem;
  font-weight: normal;
  font-style: italic;
  margin: 0 0 5rem 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #top .sec_title {
    font-size: 7.6rem;
  }
}
#top #mv {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top #mv .copy {
  position: relative;
  width: 68.6rem;
  height: 37.6rem;
}
#top #mv .copy .txt1,
#top #mv .copy .txt2,
#top #mv .copy .txt3,
#top #mv .copy .txt4 {
  position: absolute;
  opacity: 0;
  transform: translateY(-30px);
  animation-name: fv-anime;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  filter: blur(20px);
}
#top #mv .copy .txt1 {
  width: 60.6rem;
  top: 0;
  left: 0;
  animation-delay: 0s;
}
#top #mv .copy .txt2 {
  width: 10.9rem;
  top: 14.3rem;
  left: 38.2rem;
  animation-delay: 0.2s;
}
#top #mv .copy .txt3 {
  width: 40.7rem;
  top: 23.2rem;
  left: 27.8rem;
  animation-delay: 0.5s;
}
#top #mv .copy .txt4 {
  width: 18.4rem;
  top: 27.7rem;
  left: 3.4rem;
  animation-delay: 0.6s;
}
#top #mv .scroll {
  writing-mode: sideways-lr;
  position: absolute;
  left: 5rem;
  bottom: 110px;
}
@media (max-width: 768px) {
  #top #mv .scroll {
    font-size: 2.4rem;
  }
}
#top #mv .scroll::before {
  animation: scroll-anime 2s infinite;
  background-color: #162e7e;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
#top #mv .scroll::after {
  background-color: #eeeeee;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
#top .about .label {
  font-size: 2.4rem;
  font-style: italic;
  font-family: "Cardo", serif;
  margin: 0 0 5rem 0;
}
@media (max-width: 768px) {
  #top .about .label {
    font-size: 4.8rem;
  }
}
#top .about .label::after {
  content: "";
  width: 30rem;
  height: 1px;
  background: #162e7e;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 2rem;
}
#top .about .sec_title_about {
  font-size: 5.8rem;
  font-weight: bold;
  margin: 0 0 5rem 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #top .about .sec_title_about {
    font-size: 7.6rem;
  }
}
#top .about p {
  font-size: 2rem;
}
@media (max-width: 768px) {
  #top .about p {
    font-size: 3.6rem;
  }
}
#top .service p {
  font-size: 2rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  #top .service p {
    font-size: 3.6rem;
  }
}
#top .service .illust {
  text-align: right;
}
@media (max-width: 768px) {
  #top .service .illust {
    margin-top: 3rem;
  }
}
#top .service .illust::before {
  content: "";
  width: 45rem;
  height: 90rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 10px 10px 10px rgba(22, 46, 126, 0.02);
  transform: rotate(65deg);
  display: block;
  position: absolute;
  top: -30rem;
  right: 0;
  z-index: -2;
}
@media (max-width: 768px) {
  #top .service .illust::before {
    width: 50rem;
    height: 100rem;
    right: 3rem;
  }
}
#top .service .illust img {
  width: 48.3rem;
  height: 32.3rem;
}
@media (max-width: 768px) {
  #top .service .illust img {
    width: 64.3rem;
    height: 42.3rem;
  }
}
#top .service .service_list {
  margin-top: 10rem;
  z-index: 1;
}
#top .service .service_list .title {
  font-size: 3rem;
  font-weight: normal;
  font-style: italic;
  margin: 0 0 2rem 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #top .service .service_list .title {
    font-size: 5rem;
  }
}
#top .service .service_list ul {
  border-left: solid 1px #162e7e;
  margin: 0 0 0 3rem;
}
#top .service .service_list ul li {
  padding: 2rem 0 0 3rem;
  position: relative;
  font-size: 2rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #top .service .service_list ul li {
    font-size: 3.8rem;
  }
}
#top .service .service_list ul li::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 0.6rem;
  height: 0.6rem;
  background: #162e7e;
  position: absolute;
  left: -0.33rem;
  top: 3.8rem;
}
#top .works {
  /*矢印の設定*/
  /*ドットナビゲーションの設定*/
}
#top .works .slider_top_works {
  width: 100%;
  margin: 0 auto 3rem;
}
#top .works .slider_top_works img {
  width: 100%;
  height: auto;
  box-shadow: 10px 10px 10px rgba(22, 46, 126, 0.05);
  transition: all 0.5s ease 0s;
}
#top .works .slider_top_works .slick-slide {
  padding: 0 5rem 0 0;
  line-height: 2;
}
#top .works .slider_top_works .slick-slide:hover img {
  transform: scale(0.97, 0.97);
  transition: all 0.2s ease 0s;
  box-shadow: 0px 0px 10px rgba(22, 46, 126, 0.2);
  opacity: 1;
}
#top .works .slider_top_works .works_title {
  font-size: 2rem;
  margin: 1rem 0 0 0;
}
@media (max-width: 768px) {
  #top .works .slider_top_works .works_title {
    font-size: 4rem;
  }
}
#top .works .slider_top_works p {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #top .works .slider_top_works p {
    font-size: 3.6rem;
  }
}
#top .works .slick-prev,
#top .works .slick-next {
  position: absolute;
  bottom: -8rem;
  cursor: pointer;
  outline: none;
  border-top: 1px solid #162e7e;
  border-right: 1px solid #162e7e;
  width: 2rem;
  height: 2rem;
}
@media (max-width: 768px) {
  #top .works .slick-prev,
  #top .works .slick-next {
    width: 3.5rem;
    height: 3.5rem;
    bottom: -15rem;
  }
}
#top .works .slick-prev {
  left: 2rem;
  transform: rotate(-135deg);
}
#top .works .slick-next {
  left: 5rem;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  #top .works .slick-next {
    left: 10rem;
  }
}
#top .works .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
#top .works .slick-dots li {
  display: inline-block;
  margin: 0 10px;
}
#top .works .slick-dots button {
  color: transparent;
  outline: none;
  border: none;
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 100%;
  background: #cccccc;
}
#top .works .slick-dots .slick-active button {
  background: #0000ff;
}
#top .contact .sec_title {
  line-height: 1;
  margin: 0 0 7rem;
}
#top .contact p {
  font-size: 2rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  #top .contact p {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  #top .contact .sec_btn_wide {
    margin: 5rem 0 0 0;
  }
}

/* FVコピーのアニメーション */
@keyframes fv-anime {
  0% {
    transform: translateY(-10px);
    opacity: 0;
    filter: blur(20px);
  }
  80% {
    filter: blur(0px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
    filter: blur(0px);
  }
}
/* ScrollDown 線のアニメーション */
@keyframes scroll-anime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*===== About ====================================*/
#about .main_title {
  padding-top: 20rem;
}
#about .main_title .label {
  font-size: 3rem;
  font-family: "Cardo", serif;
}
@media (max-width: 768px) {
  #about .main_title .label {
    font-size: 4rem;
  }
}
#about .main_title .sec_title_about {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.8;
  margin: 0 0 5rem 0;
}
@media (max-width: 768px) {
  #about .main_title .sec_title_about {
    font-size: 7rem;
  }
}
#about .main_title p {
  font-size: 2rem;
}
@media (max-width: 768px) {
  #about .main_title p {
    font-size: 3rem;
  }
}
#about .sec_title {
  font-size: 3.6rem;
  font-weight: normal;
  font-style: italic;
  font-family: "Cardo", serif;
  margin: 0 0 5rem 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #about .sec_title {
    font-size: 7.6rem;
  }
}
#about .table dl {
  border-top: solid 1px #8e9fd8;
  padding: 3rem 2rem;
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
}
@media (max-width: 768px) {
  #about .table dl {
    font-size: 3rem;
  }
}
#about .table dl:last-of-type {
  border-bottom: solid 1px #8e9fd8;
}
#about .table dl dt {
  font-weight: bold;
}
#about .table dl dd {
  margin: 0;
}

/*===== Service ====================================*/
#service .main_title {
  padding-top: 20rem;
}
#service .main_title .sec_title {
  font-size: 10rem;
  font-family: "Cardo", serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.8;
  margin: 0 0 5rem 0;
  letter-spacing: 0.5rem;
}
@media (max-width: 768px) {
  #service .main_title .sec_title {
    font-size: 11rem;
  }
}
#service .main_title p {
  font-size: 2rem;
}
@media (max-width: 768px) {
  #service .main_title p {
    font-size: 3rem;
  }
}
#service .sec_title {
  font-size: 3.6rem;
  font-weight: normal;
  font-style: italic;
  font-family: "Cardo", serif;
  margin: 0 0 5rem 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #service .sec_title {
    font-size: 7.6rem;
  }
}
#service .basic_service .table dl {
  border-top: solid 1px #8e9fd8;
  padding: 3rem 2rem;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #service .basic_service .table dl {
    padding: 7rem 0;
    font-size: 3rem;
  }
}
#service .basic_service .table dl:last-of-type {
  border-bottom: solid 1px #8e9fd8;
}
#service .basic_service .table dl dt {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 3rem 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #service .basic_service .table dl dt {
    font-size: 4.5rem;
  }
}
#service .basic_service .table dl dd {
  margin: 0;
}
#service .other_service p {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #service .other_service p {
    font-size: 3rem;
  }
}
#service .other_service .table .box {
  border-top: solid 1px #8e9fd8;
  padding: 3rem 2rem 3rem 0;
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
}
@media (max-width: 768px) {
  #service .other_service .table .box {
    padding: 7rem 0;
    font-size: 3rem;
    display: block;
  }
}
#service .other_service .table .box:last-of-type {
  border-bottom: solid 1px #8e9fd8;
}
#service .other_service .table .box figure img {
  box-shadow: 0px 0px 10px rgba(22, 46, 126, 0.2);
}
@media (max-width: 768px) {
  #service .other_service .table .box figure {
    margin: 0 0 3rem 0;
  }
}
#service .other_service .table .box dl {
  margin: 0 0 0 3rem;
}
#service .other_service .table .box dl dt {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 3rem 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #service .other_service .table .box dl dt {
    font-size: 4.5rem;
  }
}
#service .other_service .table .box dl dd {
  margin: 0;
}

/*===== Works ====================================*/
#works .main_title {
  padding-top: 20rem;
  padding-bottom: 10rem;
}
#works .main_title .sec_title {
  font-size: 10rem;
  font-family: "Cardo", serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.8;
  margin: 0 0 0 0;
  letter-spacing: 0.5rem;
}
@media (max-width: 768px) {
  #works .main_title .sec_title {
    font-size: 11rem;
  }
}
#works .main_title p {
  font-size: 2rem;
}
@media (max-width: 768px) {
  #works .main_title p {
    font-size: 3rem;
  }
}
#works .works_list {
  padding-top: 0;
}
#works .sort {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 5rem 0;
}
#works .sort li {
  font-size: 2rem;
}
@media (max-width: 768px) {
  #works .sort li {
    font-size: 3.4rem;
  }
}
#works .sort li::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 3rem;
  height: 0.5px;
  transform: rotate(-45deg);
  background: #162e7e;
  margin: 0 1rem;
}
#works .list {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 5rem;
  grid-row-gap: 6rem;
}
@media (max-width: 768px) {
  #works .list .item {
    margin: 0 0 8rem 0;
  }
}
#works .list .item figure img {
  box-shadow: 10px 10px 10px rgba(22, 46, 126, 0.05);
  transition: all 0.5s ease 0s;
}
#works .list .item .works_title {
  font-size: 2rem;
  margin: 1rem 0 0 0;
  line-height: 2;
}
@media (max-width: 768px) {
  #works .list .item .works_title {
    font-size: 4rem;
  }
}
#works .list .item p {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #works .list .item p {
    font-size: 3.6rem;
  }
}
#works .list .item:hover img {
  transform: scale(0.97, 0.97);
  transition: all 0.2s ease 0s;
  box-shadow: 0px 0px 10px rgba(22, 46, 126, 0.2);
  opacity: 1;
}
#works .main_image {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  #works .main_image {
    padding-top: 18rem;
    padding-bottom: 5rem;
  }
}
#works .main_image .container {
  padding: 0;
  max-width: calc(100% - 12vw);
}
@media (max-width: 768px) {
  #works .main_image .container {
    max-width: 100%;
  }
}
#works .works_detail {
  padding-top: 0;
}
#works .works_detail .title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #works .works_detail .title {
    font-size: 5.5rem;
  }
}
#works .works_detail .category {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #works .works_detail .category {
    font-size: 3.6rem;
  }
}
#works .works_detail .url {
  margin: 0 0 3rem 0;
}
#works .works_detail .url a {
  text-decoration: underline;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #works .works_detail .url a {
    font-size: 3.6rem;
  }
}
#works .works_detail .url a::after {
  content: "";
  background: url(../images/icn_link.svg) no-repeat right center;
  background-size: 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 1rem;
}
#works .works_detail .url a:hover {
  text-decoration: none;
}
#works .works_detail p {
  font-size: 1.6rem;
  margin: 0 0 3rem 0;
}
@media (max-width: 768px) {
  #works .works_detail p {
    font-size: 3.2rem;
  }
}
#works .works_detail .design {
  margin: 0 0 3rem 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #works .works_detail .design {
    display: block;
  }
}
#works .works_detail .design .pc {
  width: 75rem;
  margin: 0 5rem 0 0;
}
@media (max-width: 768px) {
  #works .works_detail .design .pc {
    width: 100%;
    margin: 0 0 8rem 0;
  }
}
#works .works_detail .design .sp {
  width: 41rem;
}
@media (max-width: 768px) {
  #works .works_detail .design .sp {
    width: 70%;
    margin: 0 auto;
  }
}
#works .works_detail .design img {
  box-shadow: 0px 0px 10px rgba(22, 46, 126, 0.1);
}

/*===== Contact ====================================*/
#contact .main_title {
  padding-top: 20rem;
}
#contact .main_title .sec_title {
  font-size: 10rem;
  font-family: "Cardo", serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.8;
  margin: 0 0 5rem 0;
  letter-spacing: 0.5rem;
}
@media (max-width: 768px) {
  #contact .main_title .sec_title {
    font-size: 11rem;
  }
}
#contact .main_title p {
  font-size: 2rem;
}
@media (max-width: 768px) {
  #contact .main_title p {
    font-size: 3rem;
  }
}
#contact .sec_title {
  font-size: 3.6rem;
  font-weight: normal;
  font-style: italic;
  font-family: "Cardo", serif;
  margin: 0 0 5rem 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #contact .sec_title {
    font-size: 7.6rem;
  }
}
#contact .form {
  padding-top: 0;
  /*チェックボックス*/
  /*セレクト*/
  /*ラジオボタン*/
  /* エラーメッセージ*/
}
#contact .form .table dl {
  border-top: solid 1px #8e9fd8;
  padding: 3rem 2rem;
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
}
@media (max-width: 768px) {
  #contact .form .table dl {
    font-size: 3rem;
    display: block;
  }
}
#contact .form .table dl:last-of-type {
  border-bottom: solid 1px #8e9fd8;
}
#contact .form .table dl dt {
  font-weight: bold;
}
@media (max-width: 768px) {
  #contact .form .table dl dt {
    font-size: 3.8rem;
  }
}
#contact .form .table dl dt .hissu {
  color: #ffffff;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  background: #162e7e;
  margin: 0 1rem 0 0;
}
@media (max-width: 768px) {
  #contact .form .table dl dt .hissu {
    font-size: 2.5rem;
  }
}
#contact .form .table dl dd {
  margin: 0;
}
#contact .form .table ul li {
  line-height: 1.8;
}
#contact .form input[type=text],
#contact .form input[type=email],
#contact .form input[type=tel],
#contact .form textarea {
  background: #ffffff;
  padding: 2rem;
  border: solid 1px #c2c5d2;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 0px;
  width: 100%;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  #contact .form input[type=text],
  #contact .form input[type=email],
  #contact .form input[type=tel],
  #contact .form textarea {
    padding: 15px;
    font-size: 3.6rem;
  }
}
#contact .form input[type=text].error,
#contact .form input[type=email].error,
#contact .form input[type=tel].error,
#contact .form textarea.error {
  border: solid 2px #ff3131;
  background: #ffe4e4;
  margin: 0;
  color: #162e7e;
}
#contact .form textarea {
  height: 180px;
}
#contact .form input[type=checkbox] {
  _display: none;
  margin: 0;
}
#contact .form input[type=checkbox] + label {
  padding: 0 0 0 30px;
  position: relative;
}
#contact .form input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -3px;
  background: #FFF;
  border: 1px solid #c2c5d2;
  border-radius: 3px;
}
#contact .form input[type=checkbox].error + label::before {
  border: solid 2px #ff3131;
}
#contact .form input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 5px;
  box-sizing: border-box;
  display: block;
  left: 2px;
  width: 16px;
  height: 12px;
  margin-top: -3px;
  border-left: 2px solid #162e7e;
  border-bottom: 2px solid #162e7e;
  transform: rotate(-45deg);
}
#contact .form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff url(../images/top/arrow_select.svg) no-repeat right 20px center;
  background-size: 14px;
  border: none;
  border-radius: 0px;
  padding: 20px 60px 20px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
}
#contact .form select ::-ms-expand {
  display: none;
}
#contact .form select.error {
  color: #162e7e;
  border: solid 2px #ff3131;
  background: #ffe4e4 url(../images/top/arrow_select.svg) no-repeat right 20px center;
  font-size: 16px;
  font-size: 1.6rem;
}
#contact .form label.radio {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0px 0 3px 40px;
}
#contact .form label.radio.error {
  color: #ff3131;
}
#contact .form label.radio:before {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #c2c5d2;
  border-radius: 50%;
  left: 0px;
  content: "";
  z-index: 3;
}
#contact .form label.radio:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  left: 0px;
  top: 0px;
  background-color: #162e7e;
  z-index: 1;
  border: solid 6px #ffffff;
}
#contact .form label.radio input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  left: -26px;
  top: -1px;
  margin: 0px !important;
  box-shadow: 26px 2px #FFFFFF;
  border-radius: 20px;
}
#contact .form label.radio input[type=radio]:checked {
  box-shadow: none;
}
#contact .form label.radio input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 26px 2px #FFF;
}
#contact .form .error,
#contact .form .wpcf7-not-valid-tip {
  color: #ff3131;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 5px 0 0 0;
}
#contact .form .error :empty,
#contact .form .wpcf7-not-valid-tip :empty {
  display: none;
}
#contact .form .policy {
  text-align: center;
  padding: 30px 0;
}
@media (max-width: 768px) {
  #contact .form .policy {
    font-size: 3.2rem;
  }
}
#contact .form .policy .scroll {
  width: 100%;
  height: 20rem;
  border: none;
  padding: 20px;
  text-align: left;
  overflow-y: scroll;
  margin: 0 0 20px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  #contact .form .policy .scroll {
    font-size: 3.2rem;
    height: 50rem;
  }
}
#contact .form .btn {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #contact .form .btn {
    margin: 0;
    _display: block;
    flex-direction: column-reverse;
  }
}
#contact .form .btn a, #contact .form .btn input, #contact .form .btn button {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  border: none;
  border-radius: 0;
  padding: 25px 0;
  margin: 0 20px;
  line-height: 1;
  display: block;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 768px) {
  #contact .form .btn a, #contact .form .btn input, #contact .form .btn button {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 10px 0;
    width: 100%;
  }
}
#contact .form .btn a.btn1, #contact .form .btn input.btn1, #contact .form .btn button.btn1 {
  background: #ffffff;
  width: 40rem;
  height: 9rem;
  box-shadow: 10px 10px 10px rgba(22, 46, 126, 0.05);
  border: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cardo", serif;
  font-style: italic;
  font-size: 2rem;
  transition: all 0.5s ease 0s;
  position: relative;
  color: #162e7e;
}
@media (max-width: 768px) {
  #contact .form .btn a.btn1, #contact .form .btn input.btn1, #contact .form .btn button.btn1 {
    width: 80rem;
    height: 16rem;
    font-size: 4rem;
  }
}
#contact .form .btn a.btn1:hover, #contact .form .btn input.btn1:hover, #contact .form .btn button.btn1:hover {
  box-shadow: -3px -3px 15px rgba(22, 46, 126, 0.2);
  transition: all 0.5s ease 0s;
  transform: translateY(2px);
  background: #162e7e;
  color: #ffffff;
}
#contact .form .btn a.btn1:disabled, #contact .form .btn input.btn1:disabled, #contact .form .btn button.btn1:disabled {
  opacity: 0.3;
  background: #cccccc;
}
#contact .form .btn a.btn1:disabled, #contact .form .btn input.btn1:disabled, #contact .form .btn button.btn1:disabled {
  box-shadow: 0 0 0 rgba(22, 46, 126, 0.2);
  transform: none;
  background: #cccccc;
  color: #ffffff;
}
#contact .form .btn a.btn2, #contact .form .btn input.btn2, #contact .form .btn button.btn2 {
  background: #666666;
  color: #ffffff;
}
@media (max-width: 768px) {
  #contact .form .btn a.btn2, #contact .form .btn input.btn2, #contact .form .btn button.btn2 {
    padding: 15px 0;
  }
}
#contact .form.confirm table {
  margin: 50px 0 0 0;
}
#contact .form.confirm table tr th {
  padding: 30px 40px 30px 0;
}
@media (max-width: 768px) {
  #contact .form.confirm table {
    margin: 30px 0 0 0;
  }
  #contact .form.confirm table tr th {
    padding: 10px;
  }
  #contact .form.confirm .btn {
    flex-direction: column-reverse;
  }
  #contact .form.confirm .btn a, #contact .form.confirm .btn input, #contact .form.confirm .btn button {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    width: 100%;
  }
}

/*===== Utility ====================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.w10 {
  width: 10px !important;
}

.w20 {
  width: 20px !important;
}

.w30 {
  width: 30px !important;
}

.w40 {
  width: 40px !important;
}

.w50 {
  width: 50px !important;
}

.w60 {
  width: 60px !important;
}

.w70 {
  width: 70px !important;
}

.w80 {
  width: 80px !important;
}

.w90 {
  width: 90px !important;
}

.w100 {
  width: 100px !important;
}

.w120 {
  width: 120px !important;
}

.w150 {
  width: 150px !important;
}

.w200 {
  width: 200px !important;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px !important;
}

.w350 {
  width: 350px !important;
}

.w50p {
  width: 50% !important;
  max-width: 50% !important;
}

@media (max-width: 768px) {
  .w100p_sp {
    width: 100% !important;
  }
}
.mincho {
  font-family: "Noto Serif JP", serif;
}

.cardo {
  font-family: "Cardo", serif;
}

.fs_ss {
  font-size: 10px;
  font-size: 1rem;
}

.fs_s {
  font-size: 12px;
  font-size: 1.2rem;
}

.fs_m {
  font-size: 14px;
  font-size: 1.4rem;
}

.fs_l {
  font-size: 16px;
  font-size: 1.6rem;
}

.fs_ll {
  font-size: 18px;
  font-size: 1.8rem;
}

.bold {
  font-weight: bold !important;
}

.normal {
  font-weight: normal !important;
}

.tl {
  text-align: left !important;
}

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

.tc {
  text-align: center !important;
}

.vt {
  vertical-align: top !important;
}

.vm {
  vertical-align: middle !important;
}

.vb {
  vertical-align: bottom !important;
}

.fl {
  padding: 0 20px 10px 0;
  float: left !important;
}

.fr {
  padding: 0 0 10px 20px;
  float: right !important;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.photo-16-9 {
  position: relative;
}
.photo-16-9::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.photo-16-9::after {
  content: "";
  display: block;
  clear: both;
}
.photo-16-9 > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.photo-16-9 > .image {
  -o-object-fit: cover;
     object-fit: cover;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: visible;
  display: block;
  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);
}

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

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.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;
}/*# sourceMappingURL=style.css.map */