@charset "UTF-8";

/*-----------------------------------------------------------
1-1. Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5em;
}

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

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

::selection {
  background: #d4dcd6;
}

/*-----------------------------------------------------------
body
-----------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body, html {
  width: 100%;
  height: 100%;
}

body {
  color: #333;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .05em;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.link {
  color: #101350;
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

a[href^="tel"] {
  cursor: default;
}

/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.header .h-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 110px 0 28px;
  height: 90px;
  width: 100%;
}

.h-contact {
  display: flex;
  justify-content: flex-end;
}

.h-contact li+li {
  margin-left: 20px;
}

.h-contact .h-tel {
  color: #101350;
  font-family: "Poppins";
  font-weight: bold;
  font-style: italic;
  font-size: 29px;
}

.h-contact .h-tel:before {
  content: "";
  background: url(../images/share/ico_tel.png) no-repeat left top/contain;
  display: inline-block;
  margin-right: 8px;
  height: 21px;
  width: 21px;
}

.h-contact .h-btn {
  display: inline-block;
  background: #abcd05;
  border-radius: 25px;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  height: 50px;
  width: 200px;
}

.h-contact .h-btn:before {
  content: "";
  background: url(../images/share/ico_mail.png) no-repeat left top/contain;
  display: inline-block;
  margin-right: 12px;
  height: 14px;
  width: 18px;
  vertical-align: -2px;
}

/*-----------------------------------------------------------
g-navi
-----------------------------------------------------------*/
/* ハンバーガー */
.humberger {
  background-color: #101350;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  transition: .5s;
  z-index: 2000;
}

.humberger span {
  background: #fff;
  position: absolute;
  left: 50%;
  width: 35px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: .4s;
}

.humberger span:nth-of-type(1) {
  top: 33px;
}

.humberger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.humberger span:nth-of-type(3) {
  bottom: 33px;
}

.humberger.is-open span:nth-of-type(1) {
  -webkit-transform: translate(-50%, 11px) rotate(-45deg);
  transform: translate(-50%, 11px) rotate(-45deg);
}

.humberger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.humberger.is-open span:nth-of-type(3) {
  -webkit-transform: translate(-50%, -11px) rotate(45deg);
  transform: translate(-50%, -11px) rotate(45deg);
}

/* 中身 */
.sp-navi-contents {
  background: rgba(16, 19, 80, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  width: 900px;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  transition: .5s;
  overflow-y: auto;
  z-index: 200;
}

.sp-navi-contents.is-open {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  right: 0px;
}

.sp-navi-list-wrap {
  display: flex;
  justify-content: space-between;
  width: 580px;
  margin: 0 0 70px;
}

.sp-navi-list>li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 17px;
}

.sp-navi-list>li:before {
  content: "";
  background: url(../images/share/arrow_w.png) no-repeat left top/contain;
  display: block;
  height: 9px;
  width: 6px;
  position: absolute;
  left: 0;
  top: 15px;
}

.sp-navi-list>li>a {
  display: block;
  color: #fff;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 17px;
  position: relative;
  transition: .2s;
}

.sp-navi-list>li>a:hover {
  opacity: 0.7;
}

.navi-contact {
  display: flex;
  justify-content: flex-end;
}

.navi-contact li+li {
  margin-left: 40px;
}

.navi-contact .tel {
  color: #fff;
  font-family: "Poppins";
  font-weight: bold;
  font-style: italic;
  font-size: 29px;
}

.navi-contact .tel:before {
  content: "";
  background: url(../images/share/ico_tel_w.png) no-repeat left top/contain;
  display: inline-block;
  margin-right: 8px;
  height: 21px;
  width: 21px;
}

.navi-contact .btn {
  display: inline-block;
  background: #abcd05;
  border-radius: 25px;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  height: 50px;
  width: 200px;
}

.navi-contact .btn:before {
  content: "";
  background: url(../images/share/ico_mail.png) no-repeat left top/contain;
  display: inline-block;
  margin-right: 12px;
  height: 14px;
  width: 18px;
  vertical-align: -2px;
}

/*-----------------------------------------------------------
hero
-----------------------------------------------------------*/
.hero {
  background: linear-gradient(rgba(0, 1, 25, 0.1), rgba(0, 1, 25, 0.2)), url(../images/hero01.jpg) no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 90px);
  max-height: 600px;
  width: 100%;
}

.hero-ttl {
  max-width: 800px;
  width: 60vw;
}

/*-----------------------------------------------------------
top contents
-----------------------------------------------------------*/
.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
}

.t-ttl01 {
  margin-bottom: 45px;
  position: relative;
  text-align: center;
}

.t-ttl01 .en {
  display: block;
  color: #ec1234;
  font-family: "Poppins";
  font-weight: bold;
  font-style: italic;
  font-size: 22px;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.t-ttl01 .jp {
  display: block;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 32px;
  line-height: 1.75;
}

.t-ttl01 .item01 {
  position: absolute;
  right: -75px;
  top: 0;
}

.t-ttl01 .item02 {
  position: absolute;
  left: 0;
  top: -30px;
}

.t-ttl01 .item03 {
  position: absolute;
  right: 60px;
  top: -30px;
}

@media screen and (max-width: 1200px) and (min-width: 0px) {
  .t-ttl01 .item01 {
    right: 0;
    top: 25px;
    width: 100px;
  }
}

/*sec01*/
.sec01 {
  background: #101350;
  text-align: center;
  padding: 35px 0;
}

.sec01-ttl {
  color: #ffc000;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 55px;
}

.sec01-ttl .label {
  background: #abcd05;
  display: inline-block;
  color: #101350;
  font-size: 24px;
  line-height: 66px;
  margin-right: 45px;
  position: relative;
  text-align: center;
  width: 245px;
  vertical-align: 7px;
}

.sec01-ttl .label:before, .sec01-ttl .label:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 66px 30px;
  border-color: transparent transparent #abcd05 transparent;
  position: absolute;
  left: -30px;
  top: 0;
}

.sec01-ttl .label:after {
  width: 0;
  border-width: 66px 30px 0 0;
  border-color: #abcd05 transparent transparent transparent;
  left: auto;
  right: -30px;
  top: 0;
}

.sec01-ttl .red {
  font-size: 32px;
}

.sec01-ttl .num {
  font-size: 50px;
}

.sec01-txt {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

/*sec02*/
.sec02 {
  padding: 80px 0;
  overflow: hidden;
}

.sec02-container {
  display: flex;
}

.sec02-container.reverse {
  flex-direction: row-reverse;
}

.sec02-container.reverse .l-img {
  margin: 0 0 0 60px;
}

.sec02-container+.sec02-container {
  margin-top: 60px;
}

.sec02-container .l-img {
  margin: 0 60px 0 0;
  width: 500px;
}

.sec02-container .l-desc {
  flex: 1;
}

.sec02-container .l-ttl {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 23px;
  margin-bottom: 30px;
}

.sec02-container .l-btn {
  margin-top: 50px;
}

/*sec03*/
.sec03 {
  background: #f5f5f5;
  padding: 80px 0;
}

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

.sec03-card li {
  width: 320px;
}

.sec03-card .card-ttl {
  margin: -35px 0 30px;
  text-align: center;
}

.sec03-card .card-ttl .label {
  background: #abcd05;
  display: inline-block;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 22px;
  line-height: 66px;
  position: relative;
  text-align: center;
  width: 245px;
  vertical-align: 7px;
}

.sec03-card .card-ttl .label:before, .sec03-card .card-ttl .label:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 66px 30px;
  border-color: transparent transparent #abcd05 transparent;
  position: absolute;
  left: -30px;
  top: 0;
}

.sec03-card .card-ttl .label:after {
  width: 0;
  border-width: 66px 30px 0 0;
  border-color: #abcd05 transparent transparent transparent;
  left: auto;
  right: -30px;
  top: 0;
}

.sec03-card .card-txt {
  margin-bottom: 30px;
}

.sec03-card .btn-style01 {
  min-width: 220px;
}

/*sec04*/
.sec04 {
  background: #101350;
  padding: 80px 0;
  overflow: hidden;
}

.sec04 .t-ttl01 .jp {
  color: #fff;
}

.sec04 .btn-style01 {
  border-color: #fff;
}

.sec04-list-post {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec04-list-post li {
  background: #fff;
  display: flex;
  margin-bottom: 30px;
  padding: 20px;
  width: 496px;
}

.sec04-list-post .list-img {
  margin-right: 20px;
  width: 200px;
}

.sec04-list-post .list-img img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.sec04-list-post .list-img a {
  transition: .2s;
}

.sec04-list-post .list-img a:hover {
  opacity: 0.7;
}

.sec04-list-post .list-desc {
  flex: 1;
}

.sec04-list-post .list-data {
  margin-bottom: 15px;
}

.sec04-list-post .list-data .category {
  background: #abcd05;
  color: #101350;
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  line-height: 1;
  padding: 8px;
  min-width: 90px;
  text-align: center;
  margin-right: 5px;
}

.sec04-list-post .list-ttl {
  display: flex;
  align-items: center;
  color: #101350;
  line-height: 2;
  min-height: 64px;
  margin-bottom: 15px;
}

.sec04-list-post .list-ttl a {
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 16px;
  transition: .2s;
}

.sec04-list-post .list-ttl a:hover {
  opacity: 0.7;
}

.sec04-list-post .list-btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #101350;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  padding: 0 0 0 30px;
  line-height: 32px;
  text-align: left;
  height: 34px;
  width: 135px;
  position: relative;
  transition: .3s;
  z-index: 1;
}

.sec04-list-post .list-btn:before {
  content: "";
  background: url(../images/share/arrow.png) no-repeat left top/contain;
  display: block;
  height: 9px;
  width: 6px;
  position: absolute;
  top: calc(50% - 5px);
  left: 10px;
  transition: .3s;
}

.sec04-list-post .list-btn:after {
  content: '';
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #101350;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  z-index: -1;
}

.sec04-list-post .list-btn:hover {
  color: #fff;
}

.sec04-list-post .list-btn:hover:before {
  background: url(../images/share/arrow_w.png) no-repeat left top/contain;
}

.sec04-list-post .list-btn:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

/*sec05*/
.sec05 {
  padding: 80px 0;
  position: relative;
}

.sec05 .item {
  position: absolute;
  right: calc(50% - 512px);
  bottom: 0;
}

.sec05-layout {
  margin-bottom: 60px;
}

.sec05-layout .l-img {
  width: 500px;
}

.sec05-layout .l-desc {
  flex: 1;
}

.sec05-layout .l-ttl {
  border-bottom: 1px solid #101350;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 23px;
  margin-bottom: 25px;
  padding: 0 0 20px 0px;
}

.sec05-btn {
  display: flex;
  justify-content: center;
}

.sec05-btn li+li {
  margin-left: 30px;
}

/*sec06*/
.sec06 {
  background: #f5f5f5;
  padding: 80px 0;
  overflow: hidden;
}

.sec06-ttl {
  border-bottom: 1px solid #101350;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 0 12px;
}

.sec06-ttl .ttl {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 23px;
  padding: 0 0 5px 35px;
  position: relative;
}

.sec06-ttl .ttl:before {
  content: "";
  background: url(../images/sec06-ttl.png) no-repeat left top/contain;
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  left: 0;
  top: 5px;
}

.sec06-tab {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px;
}

.sec06-tab li {
  cursor: pointer;
  color: #777;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 14px;
  line-height: 1;
  margin: 0 5px;
  padding: 8px 15px;
  transition: .2s;
}

.sec06-tab li:hover, .sec06-tab li.is-active {
  background: #101350;
  color: #fff;
}

.sec06-list-post {
  display: flex;
  margin: 0 -16px;
}

.sec06-list-post li {
  margin: 0 16px;
  width: 232px;
}

.sec06-list-post .list-img {
  margin-bottom: 15px;
}

.sec06-list-post .list-img img {
  border: 1px solid #edeef7;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.sec06-list-post .list-img a {
  transition: .2s;
}

.sec06-list-post .list-img a:hover {
  opacity: 0.7;
}

.sec06-list-post .list-data time {
  color: #777;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
}

.sec06-list-post .list-ttl {
  margin-bottom: 10px;
}

.sec06-list-post .list-ttl a {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 16px;
  line-height: 2;
  transition: .2s;
}

.sec06-list-post .list-ttl a:hover {
  opacity: 0.7;
}

.sec06-list-post .list-category .category {
  background: #abcd05;
  color: #101350;
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  line-height: 1;
  padding: 6px 8px;
  min-width: 70px;
  text-align: center;
  margin-right: 5px;
}

/*sec07*/
.sec07 .t-ttl01 {
  margin-bottom: 25px;
}

.sec07-txt {
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 17px;
  margin-bottom: 50px;
}

.sec07-layout {
  display: flex;
  flex-direction: row-reverse;
}

.sec07-layout .l-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
}

.sec07-layout .l-map {
  flex: 1;
}

.sec08 {
  background: #f5f5f5;
  padding: 80px 0;
  overflow: hidden;
}

.sec08-container {
  display: flex;
}

.sec08-container.reverse {
  flex-direction: row-reverse;
}

.sec08-container.reverse .l-img {
  margin: 0 0 0 50px;
}

.sec08-container+.sec08-container {
  margin-top: 60px;
}

.sec08-container .l-img {
  margin: 0 60px 0 0;
  width: 500px;
}

.sec08-container .l-desc {
  flex: 1;
}

.sec08-container .l-ttl {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 23px;
  margin-bottom: 30px;
}

.sec08-container .l-btn {
  margin-top: 50px;
}

/*tab*/
.tab-contents {
  display: none;
}

.tab-contents.is-show {
  display: block;
}

/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer01 {
  background: #101350;
  padding: 70px 0 60px;
}

.footer01 .f-container {
  display: table;
  margin: 0 auto;
}

.footer01 .f-item01 {
  border-bottom: 1px solid #fff;
  padding: 0 0 25px;
  position: relative;
  text-align: center;
}

.footer01 .f-item01 .f-logo01 {
  margin-bottom: 35px;
  text-align: center;
}

.footer01 .f-item01 .f-txt {
  color: #fff;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 19px;
}

.footer01 .f-item01 .f-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer01 .f-item02 {
  text-align: center;
  padding: 0 0 0 30px;
}

.footer01 .f-item02 .f-txt {
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  padding-top: 10px;
}

.footer01 .f-item02 .f-ttl {
  color: #ffc000;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 55px;
}

.footer01 .f-item02 .f-ttl .label {
  background: #abcd05;
  display: inline-block;
  color: #101350;
  font-size: 24px;
  line-height: 66px;
  margin-right: 45px;
  position: relative;
  text-align: center;
  width: 245px;
  vertical-align: 7px;
}

.footer01 .f-item02 .f-ttl .label:before, .footer01 .f-item02 .f-ttl .label:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 66px 30px;
  border-color: transparent transparent #abcd05 transparent;
  position: absolute;
  left: -30px;
  top: 0;
}

.footer01 .f-item02 .f-ttl .label:after {
  width: 0;
  border-width: 66px 30px 0 0;
  border-color: #abcd05 transparent transparent transparent;
  left: auto;
  right: -30px;
  top: 0;
}

.footer01 .f-item02 .f-ttl .red {
  font-size: 32px;
}

.footer01 .f-item02 .f-ttl .num {
  font-size: 50px;
}

.footer02 {
  background: #040521;
  padding: 80px 0 0;
}

.footer02 .f-container {
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer02 .f-item01, .footer02 .f-item02 {
  width: 500px;
}

.f-logo02 {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.f-logo02 .logo {
  margin-right: 50px;
}

.f-logo02 .sns {
  margin-right: 15px;
}

.f-contact {
  display: flex;
  margin-bottom: 15px;
}

.f-contact .tel-area {
  color: #fff;
  line-height: 1;
  margin-right: 25px;
}

.f-contact .tel-area .tel {
  margin-bottom: 8px;
}

.f-contact .tel-area .tel a {
  font-family: "Poppins";
  font-weight: bold;
  font-style: italic;
  font-size: 28px;
}

.f-contact .tel-area .tel a:before {
  content: "";
  background: url(../images/share/ico_tel_w.png) no-repeat left top/contain;
  display: inline-block;
  margin-right: 8px;
  height: 21px;
  width: 21px;
}

.f-contact .btn a {
  display: inline-block;
  background: #abcd05;
  border-radius: 25px;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 17px;
  line-height: 50px;
  text-align: center;
  height: 50px;
  width: 230px;
}

.f-contact .btn a:before {
  content: "";
  background: url(../images/share/ico_mail.png) no-repeat left top/contain;
  display: inline-block;
  margin-right: 12px;
  height: 14px;
  width: 18px;
  vertical-align: -2px;
}

.f-address {
  color: #fff;
}

.sitemap ul {
  -webkit-column-count: 2;
  column-count: 2;
}

.sitemap ul li {
  position: relative;
  padding-left: 17px;
}

.sitemap ul li:before {
  content: "";
  background: url(../images/share/arrow_w.png) no-repeat left top/contain;
  display: block;
  height: 9px;
  width: 6px;
  position: absolute;
  left: 0;
  top: 10px;
}

.sitemap ul li a {
  color: #fff;
  letter-spacing: 0;
}

.sitemap ul li a:hover {
  text-decoration: underline;
}

.copyright {
  background: #040521;
  color: #fff;
  text-align: center;
  font-family: Verdana, "Droid Sans";
  padding: 50px 0;
}

.pagetop {
  position: fixed;
  right: 50px;
  bottom: 0;
  margin-bottom: 20px;
  z-index: 50;
}

.pagetop a {
  display: block;
  width: 50px;
}

/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
main.column2 {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
}

main.column2 .contents {
  width: 740px;
}

main.column2 .side-navi {
  width: 240px;
}

.side-links {
  border: 1px solid #101350;
  margin-bottom: 50px;
}

.side-links .ttl {
  background: #101350;
  color: #fff;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 18px;
  text-align: center;
  padding: 15px 30px;
}

.side-links>ul {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 15px;
  padding: 20px 30px;
}

.side-links>ul>li {
  position: relative;
  padding: 0 0 0 15px;
}

.side-links>ul>li::before {
  content: "";
  background: url(../images/share/arrow.png) no-repeat left top/contain;
  display: block;
  height: 9px;
  width: 6px;
  position: absolute;
  left: 0;
  top: 10px;
}

.side-links>ul>li+li {
  margin-top: 7px;
}

.side-links>ul>li>a:hover {
  text-decoration: underline;
}

.side-links>ul ul {
  font-size: 14px;
  line-height: 1.5;
  padding: 5px 0 0 0;
}

.side-links>ul ul li {
  position: relative;
  padding: 0 0 0 15px;
}

.side-links>ul ul li::before {
  content: "";
  background: #333;
  width: 6px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 12px;
}

.side-links>ul ul li+li {
  margin-top: 10px;
}

.side-links>ul ul li a:hover {
  text-decoration: underline;
}

.breadcrumb {
  margin: 5px 0 55px;
  width: 100%;
}

.breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
}

.breadcrumb ul li {
  color: #888;
  font-size: 13px;
  display: inline;
}

.breadcrumb ul li a {
  text-decoration: underline;
}

.breadcrumb ul li a:hover {
  text-decoration: none;
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: #ccc;
}

.page-ttl {
  height: 386px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 1, 25, 0.7), rgba(0, 1, 25, 0.7)), url(../images/under/page-ttl.jpg) no-repeat center center/cover;
}

.page-ttl h1 {
  color: #fff;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 40px;
  text-align: center;
}

/*-----------------------------------------------------------
under parts
-----------------------------------------------------------*/
.u-contents p+p {
  margin-top: 15px;
}

.u-h2 {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 32px;
  text-align: center;
  padding: 0 0 25px;
  margin: 0 0 40px;
  position: relative;
}

.u-h2::after {
  content: "";
  background: #ec1234;
  width: 56px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.u-h3, .postdata h3 {
  border-bottom: 1px solid #101350;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 23px;
  padding: 0 0 20px;
  margin: 0 0 30px;
}

.u-h4, .postdata h4 {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 18px;
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  position: relative;
}

.u-h4::after, .postdata h4::after {
  content: "";
  background: #ec1234;
  width: 3px;
  height: 18px;
  position: absolute;
  top: 5px;
  left: 0;
}

/*box*/
.short {
  margin: 0 0 60px;
}

.tall {
  margin: 0 0 90px;
}

/*Column*/
.col2, .col2-col2,
.col3, .col3-col2,
.col4, .col4-col2 {
  display: flex;
  flex-wrap: wrap;
}

.col2, .col2-col2 {
  justify-content: space-between;
}

.col2>li, .col2-col2>li {
  width: 48%;
}

.col3, .col3-col2 {
  margin: 0 -1%;
}

.col3>li, .col3-col2>li {
  margin: 0 1%;
  width: 31.3333333%;
}

.col4, .col4-col2 {
  margin: 0 -1%;
}

.col4>li, .col4-col2>li {
  margin: 0 1%;
  width: 23%;
}

/*layout*/
.l-imgR, .l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-imgR.center, .l-imgL.center {
  align-items: center;
}

.l-imgR .l-img, .l-imgL .l-img {
  margin: 0 4% 0 0;
  width: 40%;
}

.l-imgR .l-img.half, .l-imgL .l-img.half {
  width: 48%;
}

.l-imgR .l-img.small, .l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-desc, .l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}

.l-imgR .l-img {
  margin: 0 0 0 4%;
}

.l-imgR.center, .l-imgL.center {
  align-items: center;
}

.fl-imgR, .fl-imgL {
  overflow: hidden;
}

.fl-imgR .l-img, .fl-imgL .l-img {
  width: 40%;
}

.fl-imgR .l-img.small, .fl-imgL .l-img.small {
  width: 30%;
}

.fl-imgR .l-img {
  float: right;
  margin: 0 0 15px 4%;
}

.fl-imgL .l-img {
  float: left;
  margin: 0 4% 15px 0;
}

.fl-imgR .l-img.small, .fl-imgL .l-img.small {
  width: 30%;
}

/*list*/
.list-disc li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-disc li:before {
  background: #101350;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
}

.list-disc li+li {
  margin-top: 3px;
}

.list-disc li ul li:before {
  background: #a9a9a9;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
}

.list-decimal {
  padding-left: 22px;
}

.list-decimal li {
  list-style: decimal;
}

.list-decimal li+li {
  margin-top: 3px;
}

.list-num {
  counter-reset: number;
}

.list-num li {
  padding: 0 0 0 30px;
  position: relative;
}

.list-num li:before {
  background: #101350;
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 10px;
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding: 0 0 0 2px;
  width: 20px;
  height: 20px;
}

.list-num li+li {
  margin-top: 3px;
}

.list-check li {
  position: relative;
  padding: 0 0 0 25px;
}

.list-check li:before {
  content: "";
  background: url(../images/share/ico_check.png) no-repeat left top/contain;
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
}

.list-check li+li {
  margin-top: 3px;
}

/*box-style*/
.box-style01 {
  border: 1px solid #101350;
  padding: 60px 90px;
}

.box-style01 .list-check li {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 23px;
  line-height: 1.75;
  position: relative;
  padding: 0 0 0 35px;
}

.box-style01 .list-check li:before {
  top: 8px;
  width: 23px;
  height: 23px;
}

.box-style01 .list-check li+li {
  margin-top: 45px;
}

/*table*/
.table-style01 {
  border-collapse: collapse;
  width: 100%;
}

.table-style01 th, .table-style01 td {
  padding: 15px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table-style01 th {
  background: #101350;
  color: #fff;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 15px;
  text-align: center;
}

.table-style02 {
  border-collapse: collapse;
  width: 100%;
}

.table-style02 th, .table-style02 td {
  padding: 15px 0;
  vertical-align: top;
}

.table-style02 th {
  font-weight: bold;
  text-align: left;
}

/*btn*/
.btn-style01 {
  display: inline-block;
  background: #fff;
  border: 1px solid #101350;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 16px;
  min-width: 340px;
  padding: 10px 30px;
  position: relative;
  text-align: center;
  transition: .3s;
  z-index: 1;
}

.btn-style01:before {
  content: "";
  background: url(../images/share/arrow.png) no-repeat left top/contain;
  display: block;
  height: 9px;
  width: 6px;
  position: absolute;
  top: calc(50% - 5px);
  left: 15px;
  transition: .3s;
}

.btn-style01:after {
  content: '';
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #101350;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  z-index: -1;
}

.btn-style01:hover {
  color: #fff;
}

.btn-style01:hover:before {
  background: url(../images/share/arrow_w.png) no-repeat left top/contain;
}

.btn-style01:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

/*tel-layout*/
.tel-layout {
  border: 1px solid #101350;
  max-width: 704px;
  padding: 40px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.tel-layout:after {
  content: "";
  background: url(../images/under/tel-layout.png) no-repeat left top/contain;
  display: block;
  height: 150px;
  width: 121px;
  position: absolute;
  right: 10px;
  bottom: -40px;
  z-index: 5;
}

.tel-layout .ttl {
  display: table;
  border-bottom: 1px solid #101350;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 18px;
  line-height: 1.7;
  padding: 0 0 20px;
  margin: 0 auto 25px;
}

.tel-layout .wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 530px;
}

.tel-layout .tel {
  display: block;
  color: #101350;
  font-family: "Poppins";
  font-weight: bold;
  font-style: italic;
  font-size: 29px;
}

.tel-layout .tel:before {
  content: "";
  background: url(../images/share/ico_tel.png) no-repeat left top/contain;
  display: inline-block;
  margin-right: 8px;
  height: 21px;
  width: 21px;
}

.tel-layout .time {
  text-align: left;
  overflow: hidden;
  margin-left: 50px;
}

.tel-layout .time dt {
  float: left;
}

.tel-layout .time dd {
  padding-left: 75px;
}

/*------------
特定のページにしか使わないスタイルは
ページ名で区切る
--------------*/
/*------------
投稿パーツ
--------------*/
/*普通投稿*/
.list-post-type01 {
  margin-bottom: 80px;
}

.list-post-type01 li {
  overflow: hidden;
}

.list-post-type01 li+li {
  margin-top: 50px;
}

.list-post-type01 .list-ttl {
  border-bottom: 1px solid #ddd;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 20px;
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 25px;
}

.list-post-type01 .list-ttl a {
  transition: .5s;
}

.list-post-type01 .list-ttl a:hover {
  opacity: .5;
}

.list-post-type01 .list-img {
  float: left;
  margin: 0 30px 0 0;
  width: 250px;
}

.list-post-type01 .list-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.list-post-type01 .list-img a {
  transition: .5s;
}

.list-post-type01 .list-img a:hover {
  opacity: .5;
}

.list-post-type01 .list-data {
  font-size: 13px;
  margin: 0 0 5px;
}

.list-post-type01 time {
  color: #777;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}

.list-post-type01 .category {
  background: #abcd05;
  color: #101350;
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  line-height: 1;
  padding: 6px 8px;
  min-width: 70px;
  text-align: center;
  margin-right: 5px;
}

.list-post-type01 .list-txt {
  margin: 0 0 15px;
}

.list-post-type01 .list-btn {
  text-align: right;
}

.list-post-type01 .list-btn a {
  display: inline-block;
  background: #fff;
  border: 1px solid #101350;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  padding: 0 0 0 30px;
  line-height: 32px;
  text-align: left;
  height: 34px;
  width: 135px;
  position: relative;
  transition: .3s;
  z-index: 1;
}

.list-post-type01 .list-btn a:before {
  content: "";
  background: url(../images/share/arrow.png) no-repeat left top/contain;
  display: block;
  height: 9px;
  width: 6px;
  position: absolute;
  top: calc(50% - 5px);
  left: 10px;
  transition: .3s;
}

.list-post-type01 .list-btn a:after {
  content: '';
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #101350;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  z-index: -1;
}

.list-post-type01 .list-btn a:hover {
  color: #fff;
}

.list-post-type01 .list-btn a:hover:before {
  background: url(../images/share/arrow_w.png) no-repeat left top/contain;
}

.list-post-type01 .list-btn a:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.list-post-type02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-post-type02 li {
  margin-bottom: 50px;
  width: 48%;
}

.list-post-type02 .list-img {
  margin-bottom: 15px;
}

.list-post-type02 .list-img img {
  border: 1px solid #edeef7;
  width: 100%;
  height: 274px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.list-post-type02 .list-img a {
  transition: .2s;
}

.list-post-type02 .list-img a:hover {
  opacity: 0.7;
}

.list-post-type02 .list-data time {
  color: #777;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
}

.list-post-type02 .list-ttl {
  margin-bottom: 10px;
}

.list-post-type02 .list-ttl a {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 16px;
  line-height: 2;
  transition: .2s;
}

.list-post-type02 .list-ttl a:hover {
  opacity: 0.7;
}

.list-post-type02 .list-category .category {
  background: #abcd05;
  color: #101350;
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  line-height: 1;
  padding: 6px 8px;
  min-width: 70px;
  text-align: center;
  margin-right: 5px;
}

/*詳細ページ*/
.l-post-single {
  margin-bottom: 80px;
}

.l-post-single .l-ttl {
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 30px;
  margin: 0 0 35px;
}

.l-post-single .post-data {
  margin: 0 0 20px;
}

.l-post-single .post-data time {
  color: #777;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  vertical-align: -1px;
  margin: 0 20px 0 0;
}

.l-post-single .post-data .category {
  background: #abcd05;
  color: #101350;
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  line-height: 1;
  padding: 6px 8px;
  min-width: 70px;
  text-align: center;
  margin-right: 5px;
}

/*詳細ページ*/
.postdata p, .postdata ul, .postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  color: #101350;
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

/*セレクト式カテゴリー*/
.select-area {
  display: flex;
  align-items: center;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 16px;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: '';
  background: #fff url(../images/share/ico_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: #333;
  font-size: 16px;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 0;
}

.select-area .select-category::-ms-expand {
  display: none;
}

/*ページャー*/
.post-number {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 50px 0 0;
}

.post-number a {
  background: #eff2f5;
  color: #101350;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  display: block;
  padding: 0 10px;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
  text-decoration: none;
  transition: .5s;
}

.post-number a:hover {
  background: #101350;
  color: #fff;
}

.post-number .current {
  background: #101350;
  color: #fff;
  display: block;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
}

.post-number-single a {
  display: inline-block;
  transition: .2s;
}

.post-number-single .all {
  background: #101350;
  border: 1px solid #101350;
  color: #fff;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 13px;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:hover {
  background: #fff;
  color: #101350;
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid #101350;
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #101350;
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: #101350;
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number-single .prev::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 11px;
  border-left: 1px solid #101350;
}

.post-number-single .next::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 11px;
  border-right: 1px solid #101350;
}

/*-----------------------------------------------------------
common
-----------------------------------------------------------*/
.fixed:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  transition: .2s;
}

.fade:hover {
  opacity: .5;
}

.bold, strong {
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 60%, #eaebff 60%);
}

.red {
  color: #ec1234;
}

.notice {
  font-size: 13px;
  text-indent: -1rem;
  padding: 0 0 0 15px;
}

.sp-map iframe,
.sp-map object,
.sp-map embed {
  vertical-align: top;
}

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

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

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

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

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

.mt0 {
  margin-top: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.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;
  text-align: center;
}

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

.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;
}

.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-prev,
.slick-next {
  border: none;
  background: transparent;
  cursor: pointer;
  color: transparent;
}

.slick-prev,
.slick-next {
  background: url(../images/share/slick_arrow.jpg) no-repeat 0 0/contain;
  display: block;
  position: absolute;
  top: calc(50% - 25px);
  width: 35px;
  height: 35px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

.slick-prev:focus,
.slick-next:focus {
  outline: 0;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  padding: 0;
  background: #eee;
  border-radius: 50%;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #231815;
}

.slick-dots li.slick-active button {
  background: #231815;
}

/*------------
お問い合わせ
--------------*/
.contact-form table {
  border-collapse: collapse;
  margin: 0 0 50px;
  width: 100%;
}

.contact-form table tr {
  border-bottom: 1px dashed #CCC;
}

.contact-form table th {
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 15px;
  padding: 20px 40px 20px 0;
  vertical-align: middle;
  text-align: left;
}

.contact-form table td {
  padding: 20px 0;
}

.contact-form .hissu {
  display: inline-block;
  background: #E57373;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  padding: 1px 8px;
  margin-left: 15px;
  vertical-align: 1px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f1f1f1;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}

.contact-form select::-ms-expand {
  display: none;
}

.contact-form textarea {
  height: 200px;
}

.contact-form input[type="file"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="number"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  box-shadow: 0 0 3px #4196b3;
}

.contact-form .select-wrap {
  position: relative;
}

.contact-form .select-wrap::after {
  content: "";
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

.contact-form .mwform-radio-field,
.contact-form .mwform-checkbox-field {
  display: inline-block;
  font-size: 15px;
  margin-right: 15px;
  margin-left: 0 !important;
}

.contact-form .mwform-radio-field input[type="radio"] {
  display: none;
}

.contact-form .mwform-radio-field label {
  display: inline-block;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 30px;
  line-height: 1;
}

.contact-form .mwform-radio-field label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  box-sizing: border-box;
}

.contact-form .mwform-radio-field .mwform-radio-field-text:after {
  content: "";
  border-radius: 50%;
  background: #101350;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  transition: .4s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.contact-form .mwform-radio-field input[type="radio"]:checked+.mwform-radio-field-text:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.contact-form .mwform-checkbox-field input[type="checkbox"] {
  display: none;
}

.contact-form .mwform-checkbox-field label {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 30px;
  position: relative;
}

.contact-form .mwform-checkbox-field label:before {
  content: "";
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  box-sizing: border-box;
}

.contact-form .mwform-checkbox-field .mwform-checkbox-field-text:after {
  content: "";
  border-bottom: 3px solid #101350;
  border-right: 3px solid #101350;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 1px;
  left: 7px;
  transition: .3s;
  -webkit-transform: scale(0) rotate(45deg);
  transform: scale(0) rotate(45deg);
}

.contact-form .mwform-checkbox-field input[type="checkbox"]:checked+.mwform-checkbox-field-text:after {
  -webkit-transform: scale(1) rotate(45deg);
  transform: scale(1) rotate(45deg);
}

.contact-form .mwform-tel-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-form .mwform-tel-field input[type="text"] {
  width: 29%;
}

.contact-form .mwform-tel-field input[type="text"]:nth-of-type(1) {
  margin-right: 10px;
}

.contact-form .mwform-tel-field input[type="text"]:nth-of-type(2) {
  margin: 0 10px;
}

.contact-form .mwform-tel-field input[type="text"]:nth-of-type(3) {
  margin-left: 10px;
}

.contact-form .mwform-zip-field input[type="text"] {
  width: 15%;
  min-width: 80px;
  margin: 0 10px;
}

.contact-form .preferred-date {
  overflow: hidden;
}

.contact-form .preferred-date .date {
  width: 45%;
  float: left;
}

.contact-form .preferred-date .time {
  display: flex;
  align-items: center;
  float: right;
  width: 50%;
}

.contact-form .preferred-date .time select {
  width: 80px;
}

.contact-form .preferred-date .time .hour {
  margin: 0 10px;
}

.contact-form .preferred-date .time .minute {
  margin: 0 0 0 10px;
}

.contact-form .birthday {
  display: flex;
  align-items: center;
}

.contact-form .birthday select {
  width: 100px;
}

.contact-form .birthday .year {
  margin: 0 10px;
}

.contact-form .birthday .month {
  margin: 0 10px;
}

.contact-form .birthday .day {
  margin: 0 0 0 10px;
}

.contact-form .age [type="text"] {
  margin: 0 10px 0 0;
  width: 100px;
}

.contact-form .submit-btn {
  display: flex;
  justify-content: center;
}

.contact-form .submit-btn [type="submit"] {
  -webkit-appearance: none;
  background: #101350;
  border: 1px solid #101350;
  border-radius: 0;
  outline: none;
  font-family: "FP-ヒラギノ角ゴ StdN W7";
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 20px 40px;
  letter-spacing: 3px;
  transition: .3s;
  width: 250px;
}

.contact-form .submit-btn [type="submit"]:hover {
  opacity: .7;
}

.contact-form .submit-btn [type="submit"].back-btn {
  background: #999;
  border: none;
  margin-right: 50px;
}

.mw_wp_form_confirm .select-wrap::after {
  display: none;
}

.file-button {
  cursor: pointer;
  display: inline-block;
  background-color: #607D8B;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  padding: 10px 50px;
  margin-top: 10px;
  position: relative;
  transition: .3s;
}

.file-button:hover {
  opacity: .8;
}

.file-button input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-button .mwform-file-delete {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 11px;
}

.file-button .file-delete {
  opacity: 0;
  background: #ef5350;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 10;
}

.file-button .file-delete::before, .file-button .file-delete::after {
  content: "";
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.file-button .file-delete::before {
  width: 8px;
  height: 2px;
}

.file-button .file-delete::after {
  width: 2px;
  height: 8px;
}

.file-button .file-delete.is-on {
  opacity: 1;
}

.file-button .mw-wp-form_image {
  display: none;
}

.mw_wp_form_confirm .file-button {
  cursor: auto;
  display: block;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
  padding: 0;
  margin-top: 0;
}

.mw_wp_form_confirm .file-button .file-txt {
  display: none;
}

.mw_wp_form_confirm .file-button .file-delete {
  display: none;
}

.mw_wp_form_confirm .file-button .mw-wp-form_image {
  display: block;
  width: 100px;
}

/*お問い合わせ SP*/
@media screen and (max-width: 800px) and (min-width: 0px) {
  .contact-form table {
    margin: 0 0 30px;
  }

  .contact-form table colgroup {
    display: none;
  }

  .contact-form table tr {
    border-bottom: 1px dashed #CCC;
  }

  .contact-form table th, .contact-form table td {
    display: block;
  }

  .contact-form table th {
    padding: 15px 0 10px;
  }

  .contact-form table td {
    padding: 0 0 15px;
  }

  .contact-form .preferred-date {
    overflow: hidden;
  }

  .contact-form .preferred-date .date {
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }

  .contact-form .preferred-date .time {
    width: 100%;
  }

  .contact-form .birthday select {
    width: auto;
    padding: 15px 30px 15px 15px;
  }

  .contact-form .birthday .year {
    margin: 0 5px;
  }

  .contact-form .birthday .month {
    margin: 0 5px;
  }

  .contact-form .birthday .day {
    margin: 0 0 0 5px;
  }

  .contact-form .submit-btn [type="submit"] {
    padding: 15px;
    width: 250px;
  }

  .contact-form .submit-btn [type="submit"].back-btn {
    margin-right: 25px;
  }
}

/*Datepicker*/
.date-picker input[type="text"] {
  background-image: url(../images/share/ico_calendar.svg);
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 20px auto;
  padding-left: 50px;
}

#ui-datepicker-div {
  border-radius: 0;
  z-index: 15 !important;
  padding: 0;
}

#ui-datepicker-div .ui-corner-all, #ui-datepicker-div .ui-corner-bottom, #ui-datepicker-div .ui-corner-left, #ui-datepicker-div .ui-corner-bl {
  border-radius: 0;
}

#ui-datepicker-div .ui-widget-header {
  border: none;
  background: #fcd701;
  color: #333;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-title {
  line-height: 2.5em;
}

#ui-datepicker-div .ui-widget-content {
  border: none;
  background: #fff;
  color: #333;
}

#ui-datepicker-div.ui-datepicker th {
  padding: 0 0 0.7em !important;
  background: #fff;
}

#ui-datepicker-div.ui-datepicker th span {
  display: block;
  padding: .3em;
  background: #fff6c3;
}

#ui-datepicker-div .ui-state-default, #ui-datepicker-div .ui-widget-content .ui-state-default, #ui-datepicker-div .ui-widget-header .ui-state-default {
  border: none;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}

#ui-datepicker-div .ui-state-hover, #ui-datepicker-div .ui-widget-content .ui-state-hover, #ui-datepicker-div .ui-widget-header .ui-state-hover, #ui-datepicker-div .ui-state-focus, #ui-datepicker-div .ui-widget-content .ui-state-focus, #ui-datepicker-div .ui-widget-header .ui-state-focus {
  background: #fcd701;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-prev, #ui-datepicker-div.ui-datepicker .ui-datepicker-next {
  top: 8px;
}

@media screen and (max-width: 800px) and (min-width: 0px) {

  /*-----------------------------------------------------------
  body SP
  -----------------------------------------------------------*/
  body {
    font-size: 14px;
    line-height: 1.8;
  }

  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }

  /*-----------------------------------------------------------
  header SP
  -----------------------------------------------------------*/
  .header .h-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px 0 5vw;
    height: 60px;
    width: 100%;
  }

  .h-logo {
    max-width: 200px;
  }

  .h-contact {
    display: none;
  }

  /*-----------------------------------------------------------
  g-navi SP
  -----------------------------------------------------------*/
  /* ハンバーガー */
  .humberger {
    width: 60px;
    height: 60px;
  }

  .humberger span {
    width: 25px;
    transition: .4s;
  }

  .humberger span:nth-of-type(1) {
    top: 20px;
  }

  .humberger span:nth-of-type(3) {
    bottom: 20px;
  }

  .humberger.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 9px) rotate(-45deg);
    transform: translate(-50%, 9px) rotate(-45deg);
  }

  .humberger.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -9px) rotate(45deg);
    transform: translate(-50%, -9px) rotate(45deg);
  }

  /* 中身 */
  .sp-navi-contents {
    display: block;
    padding: 70px 30px;
    width: calc(100% - 30px);
  }

  .sp-navi-list-wrap {
    display: block;
    width: 100%;
    margin: 0 0 40px;
  }

  .sp-navi-list>li {
    margin-bottom: 10px;
  }

  .sp-navi-list>li:before {
    top: 10px;
  }

  .sp-navi-list>li>a {
    font-size: 15px;
  }

  .navi-contact {
    display: block;
    text-align: center;
  }

  .navi-contact li+li {
    margin: 15px 0 0;
  }

  .navi-contact .tel {
    font-size: 27px;
  }

  /*-----------------------------------------------------------
  hero SP
  -----------------------------------------------------------*/
  .hero {
    height: 75vw;
    width: 100%;
  }

  .hero-ttl {
    width: 90vw;
  }

  /*-----------------------------------------------------------
  top contents SP
  -----------------------------------------------------------*/
  .container {
    width: 90%;
  }

  .t-ttl01 {
    margin-bottom: 30px;
  }

  .t-ttl01 .en {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .t-ttl01 .jp {
    font-size: 21px;
    line-height: 1.75;
  }

  .t-ttl01 .item01 {
    top: -40px;
    width: 60px;
  }

  .t-ttl01 .item02 {
    top: -40px;
    width: 63px;
  }

  .t-ttl01 .item03 {
    top: -40px;
    right: 0px;
    width: 44px;
  }

  /*sec01 SP*/
  .sec01 {
    padding: 25px 0;
  }

  .sec01-ttl {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .sec01-ttl .label {
    display: table;
    font-size: 19px;
    line-height: 50px;
    margin: 0 auto 20px;
    width: 196px;
    vertical-align: 7px;
  }

  .sec01-ttl .label:before, .sec01-ttl .label:after {
    border-width: 0 0 50px 22px;
    left: -22px;
    top: 0;
  }

  .sec01-ttl .label:after {
    border-width: 50px 22px 0 0;
    left: auto;
    right: -22px;
  }

  .sec01-ttl .red {
    display: block;
    font-size: 26px;
  }

  .sec01-ttl .num {
    font-size: 40px;
  }

  .sec01-txt {
    font-size: 18px;
    text-align: left;
  }

  /*sec02 SP*/
  .sec02 {
    padding: 50px 0;
    overflow: hidden;
  }

  .sec02-container {
    display: block;
  }

  .sec02-container.reverse .l-img {
    margin: 0 0 15px;
  }

  .sec02-container+.sec02-container {
    margin-top: 40px;
  }

  .sec02-container .l-img {
    margin: 0 0 15px;
    width: 100%;
  }

  .sec02-container .l-ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .sec02-container .l-btn {
    margin-top: 30px;
  }

  /*sec03 SP*/
  .sec03 {
    padding: 50px 0;
  }

  .sec03-card {
    display: block;
  }

  .sec03-card li {
    width: 100%;
  }

  .sec03-card li+li {
    margin-top: 40px;
  }

  .sec03-card .card-ttl {
    margin: -25px 0 20px;
  }

  .sec03-card .card-ttl .label {
    display: table;
    font-size: 19px;
    line-height: 50px;
    margin: 0 auto 20px;
    width: 196px;
    vertical-align: 7px;
  }

  .sec03-card .card-ttl .label:before, .sec03-card .card-ttl .label:after {
    border-width: 0 0 50px 22px;
    left: -22px;
    top: 0;
  }

  .sec03-card .card-ttl .label:after {
    border-width: 50px 22px 0 0;
    left: auto;
    right: -22px;
  }

  .sec03-card .card-txt {
    margin-bottom: 20px;
  }

  .sec03-card .btn-style01 {
    min-width: 260px;
  }

  /*sec04 SP*/
  .sec04 {
    padding: 50px 0;
  }

  .sec04-list-post {
    display: block;
  }

  .sec04-list-post li {
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
  }

  .sec04-list-post li:last-child {
    margin-bottom: 30px;
  }

  .sec04-list-post .list-img {
    margin-right: 15px;
    width: 100px;
  }

  .sec04-list-post .list-img img {
    width: 100%;
    height: 75px;
  }

  .sec04-list-post .list-desc {
    flex: 1;
  }

  .sec04-list-post .list-data {
    margin-bottom: 10px;
  }

  .sec04-list-post .list-data .category {
    font-size: 11px;
    padding: 5px;
    min-width: 0px;
  }

  .sec04-list-post .list-ttl {
    display: block;
    line-height: 1.3;
    min-height: 0;
    margin-bottom: 15px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .sec04-list-post .list-ttl a {
    font-size: 14px;
  }

  .sec04-list-post .list-btn {
    font-size: 11px;
    padding: 0 0 0 25px;
    line-height: 28px;
    height: 30px;
    width: 120px;
  }

  .sec04-list-post .list-btn:after {
    content: none;
  }

  /*sec05 SP*/
  .sec05 {
    padding: 50px 0;
  }

  .sec05 .item {
    right: 0;
    bottom: 0;
    width: 60px;
  }

  .sec05-layout {
    display: block;
    margin-bottom: 30px;
  }

  .sec05-layout .l-img {
    margin-bottom: 15px;
    width: 100%;
  }

  .sec05-layout .l-ttl {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 0 0 15px;
  }

  .sec05-layout .l-txt {
    padding: 0;
  }

  .sec05-btn {
    display: block;
    text-align: center;
  }

  .sec05-btn li+li {
    margin: 15px 0 0;
  }

  /*sec06 SP*/
  .sec06 {
    padding: 50px 0;
  }

  .sec06-ttl {
    border: none;
    display: block;
    margin-bottom: 25px;
    padding: 0;
  }

  .sec06-ttl .ttl {
    border-bottom: 1px solid #101350;
    font-size: 20px;
    margin-bottom: 15px;
    padding: 0 0 8px 30px;
  }

  .sec06-ttl .ttl:before {
    height: 22px;
    width: 22px;
    top: 3px;
  }

  .sec06-tab {
    margin: 0;
  }

  .sec06-tab li {
    font-size: 13px;
    margin: 0 5px 3px 0;
    padding: 5px 10px;
  }

  .sec06-list-post {
    display: block;
    margin: 0;
  }

  .sec06-list-post li {
    display: flex;
    margin: 0 0 30px;
    width: 100%;
  }

  .sec06-list-post li:last-child {
    margin: 0;
  }

  .sec06-list-post .list-img {
    width: 100px;
    margin: 0 15px 0 0;
  }

  .sec06-list-post .list-img img {
    width: 100%;
    height: 75px;
  }

  .sec06-list-post .list-desc {
    flex: 1;
  }

  .sec06-list-post .list-data time {
    font-size: 12px;
  }

  .sec06-list-post .list-ttl {
    margin-bottom: 5px;
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .sec06-list-post .list-ttl a {
    font-size: 14px;
    line-height: 1.3;
  }

  .sec06-list-post .list-category .category {
    font-size: 11px;
    padding: 5px;
    min-width: 0px;
  }

  /*sec07 SP*/
  .sec07-txt {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .sec07-layout {
    display: block;
  }

  .sec07-layout .l-desc {
    display: block;
    margin: 0 auto;
    padding: 40px 0;
    width: 90%;
  }

  .sec08 {
    padding: 50px 0;
    overflow: hidden;
  }

  .sec08-container {
    display: block;
  }

  .sec08-container.reverse .l-img {
    margin: 0 0 15px;
  }

  .sec08-container+.sec02-container {
    margin-top: 40px;
  }

  .sec08-container .l-img {
    margin: 0 0 15px;
    width: 100%;
  }

  .sec08-container .l-ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .sec08-container .l-btn {
    margin-top: 30px;
  }

  /*-----------------------------------------------------------
  footer SP
  -----------------------------------------------------------*/
  .footer01 {
    padding: 40px 0;
  }

  .footer01 .f-container {
    display: block;
    width: 90%;
  }

  .footer01 .f-item01 {
    margin: 0 auto 20px;
    padding: 0 0 20px;
    position: relative;
    text-align: center;
  }

  .footer01 .f-item01 .f-logo01 {
    margin: 0 auto 20px;
    width: 250px;
  }

  .footer01 .f-item01 .f-txt {
    font-size: 15px;
  }

  .footer01 .f-item01 .f-img {
    display: none;
  }

  .footer01 .f-item02 {
    padding: 0;
  }

  .footer01 .f-item02 .f-txt {
    font-size: 15px;
    text-align: left;
  }

  .footer01 .f-item02 .f-ttl {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .footer01 .f-item02 .f-ttl .label {
    display: table;
    font-size: 19px;
    line-height: 50px;
    margin: 0 auto 20px;
    width: 196px;
    vertical-align: 7px;
  }

  .footer01 .f-item02 .f-ttl .label:before, .footer01 .f-item02 .f-ttl .label:after {
    border-width: 0 0 50px 22px;
    left: -22px;
    top: 0;
  }

  .footer01 .f-item02 .f-ttl .label:after {
    border-width: 50px 22px 0 0;
    left: auto;
    right: -22px;
  }

  .footer01 .f-item02 .f-ttl .red {
    display: block;
    font-size: 26px;
  }

  .footer01 .f-item02 .f-ttl .num {
    font-size: 40px;
  }

  .footer02 {
    padding: 40px 0 0;
  }

  .footer02 .f-container {
    width: 90%;
    display: block;
  }

  .footer02 .f-item01, .footer02 .f-item02 {
    width: 100%;
  }

  .footer02 .f-item01 {
    margin-bottom: 20px;
  }

  .f-logo02 {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
  }

  .f-logo02 .logo {
    margin: 0 auto 20px;
    text-align: center;
    width: 100%;
  }

  .f-logo02 .sns {
    margin-right: 15px;
  }

  .f-logo02 .sns:last-child {
    margin: 0;
  }

  .f-contact {
    display: block;
    text-align: center;
  }

  .f-contact .tel-area {
    margin: 0 0 25px;
  }

  .f-address {
    font-size: 13px;
  }

  .sitemap ul li {
    font-size: 13px;
    letter-spacing: 0;
    padding-left: 13px;
  }

  .sitemap ul li:before {
    top: 7px;
  }

  .copyright {
    padding: 20px 0;
  }

  .pagetop {
    right: 5vw;
    margin-bottom: 10px;
  }

  .pagetop a {
    width: 40px;
  }

  /*-----------------------------------------------------------
  under SP
  -----------------------------------------------------------*/
  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .breadcrumb ul {
    width: 90%;
  }

  main.column2 {
    display: block;
  }

  main.column2 .contents {
    width: 100%;
  }

  main.column2 .side-navi {
    margin: 0 auto;
    width: 90%;
  }

  .page-ttl {
    height: 150px;
  }

  .page-ttl h1 {
    font-size: 28px;
    text-align: center;
  }

  /*-----------------------------------------------------------
  under parts SP
  -----------------------------------------------------------*/
  .u-h2 {
    font-size: 23px;
    padding: 0 0 20px;
    margin: 0 0 30px;
  }

  .u-h3, .postdata h3 {
    font-size: 20px;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }

  .u-h4, .postdata h4 {
    font-size: 17px;
    margin: 0 0 15px;
    position: relative;
  }

  .u-h4::after, .postdata h4::after {
    top: 3px;
  }

  /*box SP*/
  .short {
    margin: 0 0 40px;
  }

  .tall {
    margin: 0 0 60px;
  }

  /*Column SP*/
  .col2>li, .col3>li, .col4>li {
    margin: 0;
    width: 100%;
  }

  .col2-col2, .col3-col2, .col4-col2 {
    justify-content: space-between;
  }

  .col2-col2>li, .col3-col2>li, .col4-col2>li {
    margin: 0;
    width: 48%;
  }

  /*layout SP*/
  .l-imgR, .l-imgL {
    display: block;
  }

  .l-imgR .l-img, .l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.half, .l-imgR .l-img.small, .l-imgL .l-img.half, .l-imgL .l-img.small {
    width: 100%;
  }

  .l-imgR .l-img {
    margin: 0 0 15px;
  }

  .fl-imgR .l-img, .fl-imgL .l-img {
    float: none;
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

  .fl-imgR .l-img.small, .fl-imgL .l-img.small {
    width: 100%;
  }

  /*list SP*/
  .list-disc li:before {
    top: 12px;
  }

  .list-check li:before {
    width: 15px;
    height: 15px;
  }

  /*box-style SP*/
  .box-style01 {
    padding: 30px 20px;
  }

  .box-style01 .list-check li {
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding: 0 0 0 35px;
  }

  .box-style01 .list-check li:before {
    top: 2px;
    width: 20px;
    height: 20px;
  }

  .box-style01 .list-check li+li {
    margin-top: 20px;
  }

  /*table SP*/
  .table-style01.sp-block {
    border: 1px solid #ddd;
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th, .table-style01.sp-block td {
    border: none;
    display: block;
    width: 100%;
  }

  .table-style01 th, .table-style01 td {
    font-size: 14px;
    line-height: 1.5;
  }

  .table-style02.sp-block colgroup {
    display: none;
  }

  .table-style02.sp-block th, .table-style02.sp-block td {
    border: none;
    display: block;
    width: 100%;
  }

  .table-style02.sp-block th {
    padding: 0 0 5px;
  }

  .table-style02.sp-block td {
    padding: 0 0 20px;
  }

  .table-style02 th, .table-style02 td {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
  }

  /*btn SP*/
  .btn-style01 {
    font-size: 15px;
    min-width: 260px;
    padding: 10px 25px;
  }

  .btn-style01:before {
    left: 10px;
  }

  .btn-style01:after {
    content: none;
  }

  .btn-style01:hover {
    color: #101350;
  }

  .btn-style01:hover:before {
    background: url(../images/share/arrow.png) no-repeat left top/contain;
  }

  /*tel-layout SP*/
  .tel-layout {
    padding: 20px;
  }

  .tel-layout:after {
    height: 90px;
    width: 72px;
    right: -10px;
  }

  .tel-layout .ttl {
    font-size: 17px;
    line-height: 1.4;
    padding: 0 0 15px;
    margin: 0 auto 10px;
  }

  .tel-layout .wrapper {
    display: block;
    width: 100%;
  }

  .tel-layout .tel {
    display: block;
    color: #101350;
    font-family: "Poppins";
    font-weight: bold;
    font-style: italic;
    font-size: 29px;
  }

  .tel-layout .tel:before {
    content: "";
    background: url(../images/share/ico_tel.png) no-repeat left top/contain;
    display: inline-block;
    margin-right: 8px;
    height: 21px;
    width: 21px;
  }

  .tel-layout .time {
    display: table;
    margin: 0 auto;
  }

  /*-----------------------------------------------------------
  common SP
  -----------------------------------------------------------*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

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

  .sp-tal {
    text-align: left !important;
  }

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

  .sp-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  .sp-map iframe,
  .sp-map object,
  .sp-map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /*------------
  投稿パーツ SP
  --------------*/
  /*Post Type01 SP*/
  .list-post-type01 {
    margin: 0 0 50px;
  }

  .list-post-type01 li+li {
    margin-top: 20px;
  }

  .list-post-type01 .list-ttl {
    font-size: 18px;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }

  .list-post-type01 .list-img {
    float: left;
    margin: 0 15px 0 0;
    width: 40%;
  }

  .list-post-type01 .list-img img {
    width: 100%;
    height: 25vw;
  }

  .list-post-type01 .list-desc {
    margin: -5px 0 0;
  }

  .list-post-type01 .category {
    font-size: 11px;
    padding: 5px;
    min-width: 0px;
  }

  .list-post-type01 time {
    font-size: 12px;
    margin: 0 15px 0 0;
  }

  .list-post-type01 .list-txt {
    font-size: 11px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }

  .list-post-type01 .list-btn {
    margin-top: 15px;
  }

  .list-post-type01 .list-btn a {
    font-size: 11px;
    padding: 0 0 0 25px;
    line-height: 28px;
    height: 30px;
    width: 120px;
  }

  .list-post-type02 {
    margin: 0 0 -30px;
  }

  .list-post-type02 li {
    margin: 0 0 30px;
  }

  .list-post-type02 .list-img {
    width: 100%;
    margin: 0 0 10px;
  }

  .list-post-type02 .list-img img {
    width: 100%;
    height: 32.5vw;
  }

  .list-post-type02 .list-desc {
    flex: 1;
  }

  .list-post-type02 .list-data time {
    font-size: 11px;
  }

  .list-post-type02 .list-ttl {
    margin-bottom: 5px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .list-post-type02 .list-ttl a {
    font-size: 13px;
    line-height: 1.3;
  }

  .list-post-type02 .list-category .category {
    font-size: 11px;
    padding: 5px;
    min-width: 0px;
  }

  /*詳細ページ SP*/
  .l-post-single .post-data {
    margin: 0 0 10px;
  }

  .l-post-single .post-data .category {
    font-size: 11px;
    padding: 5px;
    min-width: 0px;
  }

  .l-post-single .post-data time {
    font-size: 12px;
    margin: 0 15px 0 0;
  }

  .l-post-single .l-ttl {
    font-size: 22px;
    margin: 0 0 30px;
  }

  /*セレクト式カテゴリー SP*/
  .select-area {
    display: block;
    margin: 0 0 30px;
  }

  .select-area .select-item {
    margin: 0;
  }

  .select-area .select-item+.select-item {
    margin-top: 10px;
  }

  .select-area .select-ttl {
    font-size: 15px;
  }
}
