@charset "UTF-8";
/*
Katatium style.css v1.1
*/

/***** form *****/
.form > *:first-child {
  margin-top: 0;
}
.form .required {
  background: #dd423c;
  border-radius: 2px;
  color: #fff;
  font-size: .6em;
  padding: 0 8px 2px 8px;
  position: relative;
  top: -2px;
  margin: 0 0 0 .5em;
}
.form input {
  background: #fff;
  width: 100%;
  padding: 8px 20px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
}
.form textarea {
  background: #fff;
  width: 100%;
  padding: 8px 20px;
  margin-top: 8px;
  display: block;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
}
.form select {
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  padding: 8px 28px 8px 20px;
  margin-top: 8px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 2px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}
.form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/images/common/icon-selectbox.png) no-repeat right .75em center /.6em #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  display: inline-block;
  margin-top: 8px;
  outline: none;
  padding: 8px 28px 8px 20px;
  width: 100%;
}
.area-birthday .selectbox {
  display: inline-block;
  margin-right: .25em;
  width: inherit;
}
.zipcode {
  display: inline-block;
  margin-left: .25em;
  width: inherit !important;
}
.form .checkbox,
.form .radio {
  display: block;
}
.form .checkbox input,
.form .radio input {
  margin-right: .25em;
  width: inherit;
}
.form .wrap-content {
  margin: 0;
}
.form .box-group {
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-top: .5em;
}
.wrap-content label {
  width: auto;
}
.form .btn {
  color: #212121;
  font-weight: 700;
  letter-spacing: .25em;
  background: #ccc;
  border: 1px solid #ccc;
  border-radius: 2px;
  display: block;
  padding: 8px 0;
  text-align: center;
  transition: all .3s;
  width: 50%;
  margin: 40px auto 0 auto;
}
.form .btn-submit {
  color: #fff;
  font-weight: 700;
  letter-spacing: .25em;
  background: #4285f4;
  border: 1px solid #4285f4;
  border-radius: 2px;
  display: block;
  padding: 8px 0;
  text-align: center;
  transition: all .3s;
  width: 50%;
  margin: 40px auto 0 auto;
}
.form .btn-submit:hover {
  background: #fff;
  border: 1px solid #4285f4;
  color: #4285f4;
  transition: all .3s;
}
.form .btn-submit:disabled,
.form .btn-submit:disabled:hover {
  background: #ccc;
  border-color: #ccc;
  color: #fff;
}
.form div {
  margin: 1em 0 0 0;
}
.form p {
  margin: 0;
}
.form .box-flex > * {
  margin: 0 .5em;
}
.form .box-flex > *:first-child {
  margin-left: 0;
}
.form .box-flex > *:last-child {
  margin-right: 0;
}
.message-error {
  background: #f2d7d7;
  color: #da4437;
  border: 1px solid #da4437;
  border-radius: 4px;
  font-size: .8em;
  margin: 1em 0;
  padding: 1em;
}
.message-success {
  background: #e6f7df;
  color: #4ca02d;
  border: 1px solid #4ca02d;
  border-radius: 4px;
  font-size: .8em;
  margin: 1em 0;
  padding: .5em 1em;
}


/***** fonts *****/
body {
  font-family: "Noto Sans JP", 游ゴシック, "Yu Gothic", YuGothic, "Hiragino Gothic ProN", HGSゴシックE, メイリオ, Meiryo, sans-serif;
}
.font-serif {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

/***** Layout *****/
main,
article {
  padding-bottom: 80px;
}
section,
article {
  padding-top: 80px;
}
footer {
  padding: 80px 0 40px;
}
.layout1,
.layout2,
.layout3 {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 2%;
}
.layout1 {
  width: 648px;
}
.layout2 {
  width: 1080px;
}
.layout3 {
  width: 1280px;
}
.content-margin {
  margin-top: 80px !important;
}
.content-margin-s {
  margin-top: 40px !important;
}
.content-margin-ss {
  margin-top: 20px !important;
}
.no-margin {
  margin: 0 !important;
}
.float-r,
.box-float-r > * {
  float: right;
}
.float-l,
.box-float-l > * {
  float: left;
}
.box-relative {
  position: relative;
}
.box-block {
  display: block;
}
.box-flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.box-flex > * {
  flex: 1;
  margin: 0;
}
.box-flex .flex2 {
  flex: 2;
}
.box-flex .flex3 {
  flex: 3;
}
.box-flex .flex4 {
  flex: 4;
}
.box-flex.flex-col {
  flex-direction: column;
}
.box-flex .order1 {
  order: 1;
}
.box-flex .order2 {
  order: 2;
}
.col-2 > * {
  flex: inherit;
  margin: 0 2%;
  width: 48%;
}
.col-3 > * {
  flex: inherit;
  margin: 0 2%;
  width: 30.6666%;
}
.col-4 > * {
  flex: inherit;
  margin: 0 2%;
  width: 22%;
}
.col-2 > *:nth-child(odd),
.col-3 > *:nth-child(3n + 1),
.col-4 > *:nth-child(4n + 1) {
  margin-left: 0;
}
.col-2 > *:nth-child(even),
.col-3 > *:nth-child(3n + 3),
.col-4 > *:nth-child(4n + 4) {
  margin-right: 0;
}
.col-2 > *:nth-child(n + 3),
.col-3 > *:nth-child(n + 4),
.col-4 > *:nth-child(n + 5) {
  margin-top: 2%;
}
.col-2 .order1 {
  margin: 0 2% 0 0;
}
.col-2 .order2 {
  margin: 0 0 0 2%;
}
.box-table {
  margin: 20px 0 0 0;
  width: 100%;
}
.box-table th {
  background: #666;
  border: 1px solid #666;
  color: #fff;
  padding: 1em;
  text-align: center;
  width: 30%;
}
.box-table tr:not(:last-child) th {
  border-bottom-color: #fff;
}
.box-table td {
  border: 1px solid #666;
  padding: 1em;
  width :70%;
}
.box-group {
  background: #fff;
  border-radius: 8px;
  padding: 1em;
}
.box-group .txt {
  line-height: 1.25;
  padding: 1em .5em;
}
.box-group .img {
  text-align: center;
}
.box-group-inner {
  background: #fff;
  padding: 4%;
}
.box-rtl {
  flex-direction: row-reverse;
}
.hide {
  display: none;
}
.sp-show {
  display: none;
}
.sp-br {
  display: none;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
.disabled {
   pointer-events: none;
}
.icon{
  margin-right: .25em;
}
.icon-r {
  margin-left: .25em;
}
.breadcrumb {
  margin: 0;
}
.breadcrumb li {
  display: inline-block;
  font-weight: bold;
}
.breadcrumb li:not(:first-child)::before {
  content: ">";
  padding: 0 .5em;
}
.breadcrumb li a {
  color: #fff;
  font-weight: normal;
}
.googlemap {
  width: 100%;
  height: 40vh;
}
#area-info {
  margin-top: 0;
}
#area-info a {
  display: block;
  padding: 1em 0;
}
#area-info a:hover {
  text-decoration: none;
  background: rgba(66, 133, 244, .25);
  transition: .5s;
}
#area-info > *:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
#area-info .category {
  background: #c9c9c9;
  border-radius: 2px;
  font-size: .5em;
  margin: 0 1em;
  padding: 0.25em 1em;
  position: relative;
  top: -0.1em;
  left: 0;
}
.youtube {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
/* .youtube iframe{
  height: calc(9 * 648px / 16);
  width: 100%;
} */
/***** Style *****/
a img:hover {
  opacity: .5;
}
.txt-s {
  font-size: .8em;
}
.txt-l {
  font-size: 1.5em;
}
.txt-xl {
  font-size: 3em;
}
.txt-b {
  font-weight: 700;
}
.txt-indent p {
  text-indent: 1em;
}
.space-l {
  letter-spacing: .25em;
}
.align-l {
  display: block;
  text-align: left !important;
}
.align-c {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.align-r {
  display: block;
  text-align: right;
}
.line-height-l {
  line-height: 2;
}
.vertical-t {
  align-items: flex-start;
}
.vertical-b {
  align-items: flex-end;
}
.box-bg {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 2% 4%;
}
.box-border {
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 2% 4%;
}
.box-round {
  border-radius: 8px;
}
#area-gnav {
  position: absolute;
  width: 100%;
}
#area-gnav li {
  overflow: hidden;
  position: relative;
  transition: all .3s;
  z-index: 1;
}
#area-gnav li::after {
  content: "";
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  transition: all .3s;
  width: 100%;
  z-index: -1;
}
#area-gnav li:hover::after {
  top: 0;
  background: #4285f4;
}
#area-gnav a {
  display: block;
  padding: 1em 0;
}
#area-gnav a:hover {
  text-decoration: none;
  color: #fff;
}
#area-gnav.fixed {
  box-shadow:0 2px 4px rgba(0, 0, 0, .25);
  position: fixed;
  top: 0;
  z-index: 9999;
}
#area-breadcrumb {
  background:#e9e9e9;
}
#area-blog article {
  padding: 0;
}
#area-blog .blog-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pagination {
  display: flex;
  justify-content:center;
  margin:40px auto;
  width:50%;
}
.pagination li {
  line-height:3em;
  flex: 1;
  text-align:center;
}
.pagination li:not(:first-child) {
  border-left:1px solid #fff;
}
.pagination li:first-child.active,
.pagination li:first-child a {
  border-radius:4px 0 0 4px;
}
.pagination li:last-child.active,
.pagination li:last-child a {
  border-radius:0 4px 4px 0;
}
.pagination .active {
  background:#ffe800;
}
.pagination li a {
  background:#ffc;
  color:#666;
  display:block;
  transition:all .2s;
}
.pagination li a:hover {
  background:#ffe800;
}

.underline {
  background: linear-gradient(transparent 60%, #ffff66 90%, transparent 90%);
  padding: 0 .5em;
}
.btn {
  background: #fff;
  border: 1px solid #212529;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  padding: 1em 20px;
  position: relative;
  text-align: center;
  width: 60%;
  z-index: 1;
}
.btn:hover {
  text-decoration: none;
  color: #fff;
  transition: all .3s;
}
.btn::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  transition: all .3s;
  width: 100%;
  z-index: -1;
}
.btn:hover::after {
  left: 0;
  background: #4285f4;
}
.btn.active {
  background: #4285f4;
  color: #fff;
}
.list-style li {
  padding-left: 1em;
}
.list-style li::before {
  content: "・";
  margin-left: -1em;
}
.bullet > * {
  margin-top: .5em;
  padding: 0 0 0 40px;
  position: relative;
}
.bullet > *::before {
  background: url(/images/common/list-checked.png) no-repeat left center;
  background-size: contain;
  content: "";
  display:inline-block;
  height: 1.5em;position: absolute;
  top: 0;
  left: 0;
  width: 2em;
}
#area-policy ol {
  list-style: outside decimal;
  padding-left: 1em;
}
#area-policy ol > li {
  margin-top: 1em;
}
#area-policy ol ul {
  margin-top: 0;
  font-size: .8em;
}
.pointer,
.modal,
.btn {
  cursor: pointer;
}
.notes {
  color: #da4437;
  font-size: .8em;
}
.sns-icon{
  color: #fff;
  font-size: 40px;
  padding:10px;
  background: #003b83;
}

@media screen and (max-width: 1280px) {
  .layout3 {
    width: 100%;
  }
}

@media screen and (max-width: 1080px) {
  .layout2 {
    width: 100%;
  }
}

@media screen and (max-width: 648px) {
  /* Layout */
  .layout1 {
    width: 100%;
  }
  main,
  article {
    padding-bottom: 40px;
  }
  section,
  article {
    padding-top: 40px;
  }
  footer {
    padding: 20px 0 80px 0;
  }
  .box-flex:not(.sp-flex) {
    display: block;
  }
  .col-2:not(.sp-flex),
  .col-3:not(.sp-flex),
  .col-4:not(.sp-flex) {
    display: block;
  }
  .col-2:not(.sp-flex) > *,
  .col-3:not(.sp-flex) > *,
  .col-4:not(.sp-flex) > *  {
    margin: 20px 0;
    width: 100%;
  }
  .col-2 .order1,
  .col-2 .order2 {
    margin: 20px 0;
  }
  .sp-show {
    display: block;
  }
  .pc-show {
    display: none;
  }
  .pc-br {
    display: none;
  }
  .sp-br {
    display: block;
  }
  .box-group {
    padding-top: 1em;
  }
  .box-table
  .box-table tr,
  .box-table th,
  .box-table td {
    display: block;
    width: 100%;
  }
  .content-margin {
    margin-top: 40px !important;
  }
  #area-gnav {
    box-shadow:0 -2px 4px rgba(0, 0, 0, .25);
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  #area-breadcrumb > .box-flex {
    display: flex;
  }

  .pagination {
    width: 80%;
  }
  .pagination li .fa-angle-left {
    margin-right:4px;
  }
  .pagination li .fa-angle-right {
    margin-left:4px;
  }

  /* .youtube iframe {
    height: 60vw;
  } */

  /* style */
  .btn {
    width: 80%;
  }
}

@media print {
  .no-print {
    display: none !important;
  }
}

@keyframes slidedown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
