@charset "UTF-8";
/* ------------------------------------------------------------------
intial set
------------------------------------------------------------------ */
/* フォントの読み込みをfontsディレクトリから読み込む */
@font-face{
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  font-family: 'Noto Sans JP';
  src: url("../fonts/NotoSansJP-Bold.ttf") format("ttf");
}

html {
  font-size: 62.5%;
}

/* 10px */
body {
  color: #333333;
  background: url(../img/bg.png);
  font-size: 1.4rem;
  height: 100%;
  box-sizing: border-box;
}

div.page {
  overflow: hidden;
}

p {
  font-size: 1.6rem;
  /* 16px */
  line-height: 1.6em;
}

ol {
  padding: 0;
}

a, a:focus, a:active, a.active {
  outline: 0;
  color: #144892;
  text-decoration: none;
}

a:hover {
  outline: 0;
  color: #49689B;
  text-decoration: none;
}

h1 {
  margin: 0;
}

h2, h3, h4, h5, h6 {
  margin-top: 0;
  text-transform: uppercase;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1.4em;
}

ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.img-centered {
  margin: 0 auto;
}

@media(min-width:768px) {
  body {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.6rem;
    line-height: 1.6em;
  }
}

@media(min-width:1024px) {
  body {
    font-size: 1.4rem;
  }

  p {
    font-size: 1.8rem;
    line-height: 1.9em;
  }
}

@media only screen and (max-width: 736px) {
  p {
    font-size: 1.6rem;
    line-height: 2.0em;
  }

  ul, ol {
    font-size: 1.6rem;
    line-height: 2.0em;
  }
}

/* ------------------------------------------------------------------
header nav
------------------------------------------------------------------ */
.navbar {
  border: 0px solid transparent;
  background: #224160;
  font-weight: 700;
  border-radius: 0;
  margin-bottom: 0;
}

.navbar a:focus {
  outline: 0;
}

ul.navbar-nav li {
  position: relative;
}

ul.navbar-nav li a {
  width: 100%;
  -moz-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -webkit-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -o-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -ms-transition: background-color .2s linear, color .2s linear, border .2s linear;
  transition: background-color .2s linear, color .2s linear, border .2s linear;
  font-weight: 600;
}

.navbar .navbar-nav li a:focus {
  outline: 0;
}

.navbar-default .navbar-toggle {
  border-color: transparent;
}

.navbar-toggle {
  padding: 0px 0px;
  margin-top: 21px;
  margin-bottom: 0px;
  width: 50px;
  height: 50px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-toggle img {
  width: 100%;
  height: 100%;
}

@media(min-width:768px) {
  .navbar-collapse {
    padding-right: 0px;
    padding-left: 0px;
  }

  .navbar {
    width: 100%;
    height: 130px;
    padding-top: 0px;
    text-align: center;
    margin: 0 0 0px 0;
  }

  .navbar-header {
    float: none;
    height: 130px;
  }

  .fixed-top {
    height: 130px;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transition: padding .3s;
    -moz-transition: padding .3s;
    transition: padding .3s;
    top: 0;
    box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.1);
  }

  .navBox {
    float: none;
    background: #3bbfe5;
  }

  .navbar-nav {
    float: none;
    text-align: center;
  }

  .navInner {
    padding: 0 30px;
  }

  ul.navbar-nav li {
    float: none;
    display: inline-block;
  }

  ul.navbar-nav li a {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 30px;
    padding: 0 10px;
  }

  .nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
    color: #fef500;
  }

  ul.navbar-nav li a:hover::after {
    width: 100%;
  }

  ul.navbar-nav li a::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 0;
    height: 4px;
    background-color: #fef500;
    transition: .3s;
  }

  .nav>li>a {
    padding: 0;
  }

  .nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background: transparent;
  }
}

@media(min-width:769px) {}

@media(min-width:1024px) {
  .navbar-header {
    float: none;
  }

  ul.navbar-nav li a {
    font-size: 1.5rem;
    padding: 0 6px;
    line-height: 30px;
  }
}

@media(min-width:1366px) {
  .navInner {
    width: 1000px;
    padding: 0 0px;
    margin-left: auto;
    margin-right: auto;
  }

  ul.navbar-nav li a {
    font-size: 1.5rem;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 736px) {
  .navbar {
    width: 100%;
    height: 90px;
    padding-top: 0px;
  }

  .navbar-header {
    float: none;
    height: 90px;
  }

  .fixed-top {
    height: 90px;
  }

  .navbar-nav {
    margin: 0px -15px;
  }

  .nav>li>a {
    color: #fff;
  }

  .nav>li>a:focus, .nav>li>a:hover {
    background-color: #2758a7 !important;
  }

  .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.4);
    margin-left: -10px;
    margin-right: -10px;
  }

  .navbar-collapse {
    position: absolute !important;
    z-index: 33;
    width: 100%;
    margin-left: 0px;
    border-top: 0px solid transparent;
    top: 90px;
  }

  .navbar-collapse.in {
    position: absolute;
    z-index: 33;
    display: block;
    width: 100%;
    margin-left: 0px;
    top: 90px;
  }

  .navbar-nav>li {
    border-bottom: solid 0px #fff;
    background: #3bbfe5;
  }

  .navbar-nav>li>a {
    font-size: 1.5rem;
    line-height: 40px;
    text-align: center;
  }

  ul.navbar-nav li img:nth-of-type(1) {
    display: none;
  }
}

/* ------------------------------------------------------------------
logo　電話番号　ボタン
------------------------------------------------------------------ */
.header_logo {
  overflow: hidden;
}

.custom-navbar .navbar-brand {
  background-image: url("../img/logo.webp");
  -webkit-background-image: url("../img/logo.webp");
  -moz-background-image: url("../img/logo.webp");
  -ms-background-image: url("../img/logo.webp");
  -o-background-image: url("../img/logo.webp");
  background-size: contain;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -ms-background-size: contain;
  -o-background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-indent: -9999em;
  white-space: nowrap;
  position: absolute;
}

.header_right {
  float: right;
}

@media(min-width:768px) {
  .navbar-header .inner {
    position: relative;
    height: 130px;
  }

  .header_logo {
    float: left;
    padding-top: 30px;
    padding-left: 0;
    margin-left: -30px;
  }

  .navbar-brand {
    top: 20px;
    left: 0;
    width: 294px;
    height: 89px;
  }

  .header_right {
    float: right;
    padding-top: 14px;
  }
    
  .header_right img {
    width: 410px;
    height: 95px;
  }
}

@media(min-width:1024px) {
  .header_logo {
    padding-top: 25px;
  }

  .navbar-brand {
    top: 20px;
    left: 0;
    width: 308px;
    height: 93px;
  }
}

@media(min-width:1366px) {}

@media only screen and (max-width: 736px) {
  .header_logo {
    float: left;
    padding-top: 0px;
    padding-left: 0px;
  }

  .navbar-brand {
    top: 30px;
    left: 10px;
    width: 99px;
    height: 30px;
  }

  .header_right {
    margin-right: 20px;
    padding-top: 25px;
  }

  .header_right img {
    width: 173px;
    height: 40px;
  }
}

@media only screen and (max-width: 414px) {}

/* ------------------------------------------------------------------
mv
------------------------------------------------------------------ */
.mvBox {
  background: #3bbfe5;
  position: relative;
}

.mv_main {
  margin-left: auto;
  margin-right: auto;
}

.mv_main img {
  display: block;
  width: 100%;
  height: auto;
}

.mvBox .head_btn a img {
  width: 100%;
}

@media(min-width:768px) {
  .mvBox {
    margin-top: 190px;
  }

  .mv_main {
    width: 100%;
  }

  .mvBox .head_btn a {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 40%;
  }
}

@media(min-width:1024px) {
  .mvBox {
    margin-top: 190px;
  }
}

@media(min-width:1366px) {
  .mvBox {
    margin-top: 190px;
  }
}

@media(min-width:1728px) {
  .mv_main {
    width: 1440px;
  }
}

@media only screen and (max-width: 736px) {
  .mvBox .head_btn a {
    position: absolute;
    top: 79.5%;
    left: 0;
    right: 0;
    margin: auto;
    width: 714px;
    max-width: 95%;
  }
}

@media only screen and (max-width: 428px) {}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 320px) {}

/* ------------------------------------------------------------------
inner
------------------------------------------------------------------ */
.inner, .header-inner, .innerBox {
  margin-left: auto;
  margin-right: auto;
}

.shadowBox {
  background: #fff;
  -moz-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, .4);
  -webkit-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, .4);
  box-shadow: 0 0 14px 0px rgba(115, 115, 115, .4);
}

.white_bg {
  background-color: #fff;
}

.under-page-inner {
  margin: 100px 0 100px;
}

@media(min-width:768px) {
  .inner {
    width: 740px;
  }

  .header-inner {
    margin-left: -15px;
    margin-right: -15px;
  }

  .innerBox {
    width: 620px;
    padding: 0px 0;
  }
}

@media(min-width:1024px) {
  .inner {
    width: 960px;
  }

  .innerBox {
    width: 1000px;
  }
}

@media(min-width:1366px) {
  .inner {
    width: 1000px;
  }

  .innerBox {}
}

@media only screen and (max-width: 736px) {
  .inner {
    padding: 0px 15px 0;
  }

  .header-inner {
    padding: 0px 15px 0;
  }

  .innerBox {
    padding: 0px 0px;
  }

  .under-page-inner {
    margin: 40px 0 40px;
  }
}

/* ------------------------------------------------------------------
リスト カラム
------------------------------------------------------------------ */
ul.list-3-column, ol.list-3-column, ul.list-2-column, ul.list-4-column, ol.list-4-column, ul.list-5-column, ul.list-6-column {
  letter-spacing: -.4em;
  text-align: center;
}

ul.list-3-column li, ol.list-3-column li, ul.list-2-column li, ul.list-4-column li, ol.list-4-column li, ul.list-5-column li, ul.list-6-column li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

ul.list-3-column li, ol.list-3-column li {
  width: 31%;
  margin-left: 3.5%;
  margin-bottom: 3.5%;
}

ul.list-3-column li:first-child, ol.list-3-column li:first-child {
  margin-left: 0;
}

ul.list-3-column li:nth-child(3n+1), ol.list-3-column li:nth-child(3n+1) {
  margin-left: 0;
}

ul.list-2-column li {
  width: 48%;
  margin-left: 4%;
  margin-bottom: 3.5%;
}

ul.list-2-column li:first-child {
  margin-left: 0;
}

ul.list-2-column li:nth-child(odd) {
  margin-left: 0;
}

ul.list-4-column li, ol.list-4-column li {
  width: 23.5%;
  margin-left: 2%;
  margin-bottom: 2%;
}

ul.list-4-column li:first-child, ol.list-4-column li:first-child {
  margin-left: 0;
}

ul.list-4-column li:nth-child(4n), ol.list-4-column li:nth-child(4n) {
  margin-right: 0;
}

ul.list-4-column li:nth-child(4n+5), ol.list-4-column li:nth-child(4n+5) {
  margin-left: 0;
}

ul.list-5-column li {
  width: 18.4%;
  margin-left: 2%;
  margin-bottom: 2%;
}

ul.list-5-column li:first-child {
  margin-left: 0;
}

ul.list-5-column li:nth-child(5n) {
  margin-right: 0;
}

ul.list-5-column li:nth-child(5n+6) {
  margin-left: 0;
}

ul.list-6-column li {
  width: 15%;
  margin-left: 2%;
  margin-bottom: 2%;
}

ul.list-6-column li:first-child {
  margin-left: 0;
}

@media(min-width:768px) {
  ul.list-6-column li:nth-child(6n) {
    margin-right: 0;
  }

  ul.list-6-column li:nth-child(6n+7) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 736px) {
  ul.list-3-column li, ol.list-3-column li, ul.list-2-column li, ul.list-5-column li {
    display: block;
  }

  ul.list-3-column li, ol.list-3-column li, ul.list-5-column li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }

  ul.list-2-column li {
    width: 100%;
    margin-left: 0%;
  }
}

@media only screen and (max-width: 414px) {
  ul.list-4-column li, ol.list-4-column li, ul.list-6-column li {
    display: inline-block;
  }

  ul.list-4-column li, ol.list-4-column li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 15px;
  }

  ul.list-4-column li:first-child, ol.list-4-column li:first-child {
    margin-left: 0;
  }

  ul.list-4-column li:nth-child(2n), ol.list-4-column li:nth-child(2n) {
    margin-right: 0;
  }

  ul.list-4-column li:nth-child(2n+3), ol.list-4-column li:nth-child(2n+3) {
    margin-left: 0;
  }

  ul.list-6-column li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 15px;
  }

  ul.list-6-column li:first-child {
    margin-left: 0;
  }

  ul.list-6-column li:nth-child(2n) {
    margin-right: 0;
  }

  ul.list-6-column li:nth-child(2n+3) {
    margin-left: 0;
  }
}

/* ------------------------------------------------------------------
高さそろえる　flex
------------------------------------------------------------------ */
ul.list-2-flex li:first-child, ul.list-3-flex li:first-child, ul.list-4-flex li:first-child {
  margin-left: 0;
}

ul.list-2-flex, ul.list-3-flex, ul.list-4-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media(min-width:667px) {
  ul.list-2-flex li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 3.5%;
  }

  ul.list-2-flex li:nth-child(odd) {
    margin-left: 0;
  }

  ul.list-3-flex li {
    width: 31%;
    margin-left: 3.5%;
    margin-bottom: 30px;
    box-sizing: border-box;
    overflow: hidden;
  }

  ul.list-3-flex li:nth-child(3n+1) {
    margin-left: 0;
  }

  ul.list-4-flex li {
    width: 23.5%;
    margin-left: 2%;
    margin-bottom: 2%;
  }

  ul.list-4-flex li:nth-child(4n) {
    margin-right: 0;
  }

  ul.list-4-flex li:nth-child(4n+5) {
    margin-left: 0;
  }

  .flexInner {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 428px) {
  ul.list-4-flex li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 3.5%;
  }

  ul.list-4-flex li:nth-child(odd) {
    margin-left: 0;
  }
}

/* ------------------------------------------------------------------
横スライド
------------------------------------------------------------------ */
ul.beside_slide_5_column {
  letter-spacing: -.4em;
  text-align: center;
}

ul.beside_slide_5_column li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

@media(min-width:768px) {
  ul.beside_slide_5_column li {
    width: 18.4%;
    margin-left: 2%;
    margin-bottom: 2%;
  }

  ul.beside_slide_5_column li:first-child {
    margin-left: 0;
  }

  ul.beside_slide_5_column li:nth-child(5n) {
    margin-right: 0;
  }

  ul.beside_slide_5_column li:nth-child(5n+6) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 428px) {
  ul.beside_slide_5_column {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }

  ul.beside_slide_5_column li {
    vertical-align: top;
    text-align: center;
    width: 70%;
    white-space: normal;
    display: inline-block;
    margin: 0 10px;
  }
}

/* ------------------------------------------------------------------
リストteble
------------------------------------------------------------------ */
ul.teble-list li {
  border-bottom: solid 1px #e4dac0;
  display: table;
  width: 100%;
  font-size: 1.4rem;
}

ul.teble-list li:first-child {
  border-top: solid 1px #e4dac0;
}

ul.teble-list li div {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 10px;
}

ul.teble-list li div:first-child {
  background: #f1ecdf;
  width: 20%;
  text-align: center;
  letter-spacing: 1px;
  border-left: solid 1px #e4dac0;
  font-weight: 600;
  color: #333;
}

ul.teble-list li div:last-child {
  border-right: solid 1px #e4dac0;
}

/* -----teble-list 3カラム----- */
ul.teble-3list li {
  border-bottom: solid 1px #e4dac0;
  display: table;
  width: 100%;
  font-size: 1.4rem;
}

ul.teble-3list li:first-child {
  border-top: solid 1px #e4dac0;
}

ul.teble-3list li:first-child div {
  background: #f1ecdf;
}

ul.teble-3list li div {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 10px;
  border-right: solid 1px #e4dac0;
  width: 30%;
  text-align: center;
}

ul.teble-3list li div:nth-child(1) {
  background: #f1ecdf;
  width: 40%;
  text-align: center;
  letter-spacing: 1px;
  border-left: solid 1px #e4dac0;
  font-weight: 600;
  color: #333;
}

/* -----teble-listライン----- */
ul.teble-listLine li {
  display: table;
  width: 100%;
  font-size: 1.3rem;
}

ul.teble-listLine li div {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 15px;
}

ul.teble-listLine li div:first-child {
  width: 25%;
  letter-spacing: .5px;
  border-bottom: solid 1px #e4dac0;
  font-weight: 600;
  text-align: center;
  padding: 8px 0px;
}

ul.teble-listLine li div:last-child {
  border-bottom: solid 1px #eee;
}

@media(min-width:768px) {

  /* -----teble-listライン----- */
  ul.teble-listLine li:first-child div:first-child {
    border-top: solid 1px #e4dac0;
  }

  ul.teble-listLine li:first-child div:last-child {
    border-top: solid 1px #eee;
  }

  /* -----teble-list 3カラム----- */
  ul.teble-listLine li:first-child div:first-child {
    border-top: solid 1px #e4dac0;
  }

  ul.teble-listLine li:first-child div:last-child {
    border-top: solid 1px #eee;
  }
}

@media only screen and (max-width: 736px) {
  ul.teble-list li {
    display: block;
    border: 0;
    font-size: 1.3rem;
  }

  ul.teble-list li:first-child {
    border: 0;
  }

  ul.teble-list li div {
    display: block;
    padding: 5px 10px;
  }

  ul.teble-list li div:first-child {
    width: 100%;
    text-align: left;
    padding: 5px 10px;
    border-right: solid 1px #e4dac0;
    border-left: solid 1px #e4dac0;
  }

  ul.teble-list li div:last-child {
    border-right: solid 1px #e4dac0;
    border-left: solid 1px #e4dac0;
  }

  ul.teble-list li:first-child div:first-child {
    border-top: solid 1px #e4dac0;
  }

  ul.teble-list li:last-child div:last-child {
    border-bottom: solid 1px #e4dac0;
  }

  /* -----teble-list 3カラム----- */
  ul.teble-3list li {
    font-size: 1.3rem;
  }

  /* -----teble-listライン----- */
  ul.teble-listLine li {
    display: block;
    border: 0;
    font-size: 1.3rem;
  }

  ul.teble-listLine li:first-child {
    border: 0;
  }

  ul.teble-listLine li div {
    display: block;
  }

  ul.teble-listLine li div:first-child {
    width: 100%;
    text-align: left;
    padding: 5px 10px;
  }

  ul.teble-listLine li div:last-child {
    border-bottom: solid 0px #eee;
    padding: 10px 10px 30px;
  }
}

/* ------------------------------------------------------------------
bootsytap teble
------------------------------------------------------------------ */
.table-bordered {
  border: 1px solid #ccc;
}

.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
  border: 1px solid #ccc;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
  padding: 8px 13px;
  text-align: center;
  vertical-align: middle;
}

.table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
  border-bottom-width: 1px;
}

.table>thead>tr>th {
  vertical-align: middle;
  text-align: center;
  background: #2758a7;
  color: #fff;
}

.table>tbody>tr>td:last-child {
  font-weight: 600;
  text-align: right;
  color: #cf0501;
}

.table-bordered {
  font-size: 1.3rem;
}

@media only screen and (max-width: 736px) {
  .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 5px 5px;
  }
}

/* ------------------------------------------------------------------
leftBox/rightBox
------------------------------------------------------------------ */
.leftBox {
  width: 100%;
}

.rightBox {
  width: 100%;
}

@media(min-width:1024px) {
  .leftBox {
    float: left;
    width: 48%;
    margin-left: 0%;
  }

  .rightBox {
    float: left;
    width: 48%;
    margin-left: 4%;
  }
}

@media only screen and (max-width: 736px) {}

/* ------------------------------------------------------------------
img
------------------------------------------------------------------ */
.photaria {
  margin-left: auto;
  margin-right: auto;
}

.photaria img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: auto;
}

.phot-disc {
  display: block !important;
  font-size: 1.18rem;
  margin: .3em 0 .5em;
  text-align: center;
}

.photaria-stop {
  margin-bottom: -25px;
  margin-top: -30px;
}

.photaria-stop img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: auto;
}

/* -----画像トリミング・角丸.3em----- */
.fix-phot-radius {
  position: relative;
  width: 100%;
  /*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
  padding-top: 100%;
  /*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）　*/
  overflow: hidden;
  /*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
  margin: 0 auto;
  -moz-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -webkit-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -o-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -ms-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  transition: border-radius .2s linear, color .2s linear, border .2s linear;
}

.fix-phot-radius img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 150%;
  max-height: 150%;
}

.fix-phot-top {
  position: relative;
  width: 100%;
  padding-top: 66.666666%;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 0;
  -moz-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -webkit-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -o-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  -ms-transition: border-radius .2s linear, color .2s linear, border .2s linear;
  transition: border-radius .2s linear, color .2s linear, border .2s linear;
}

.fix-phot-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 150%;
  max-height: 150%;
}

.blog-phot, .trimming-photo {
  background: url(../img/nophoto.png) no-repeat top center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  position: relative;
  width: 100%;
  /*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
  padding-top: 100%;
  /*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）　*/
  overflow: hidden;
  /*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
  margin: 0 auto;
}

.trimming-photo {
  padding-top: 75%;
}

.blog-phot img, .trimming-photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 140%;
  max-height: 140%;
}

.photoLeft {
  width: 190px;
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.photoRight {
  width: 300px;
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.photoLeft img, .photoRight img {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.scale {
  margin-left: auto;
  margin-right: auto;
}

.scale img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: auto;
}

@media(min-width:768px) {
  .scale {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .scale img {
    width: 100%;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
  }

  .scale img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  .photaria-stop img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 70%;
    height: auto;
    margin-top: -30px;
  }
}

@media only screen and (max-width: 736px) {
  .photoLeft {
    margin-right: 15px;
    margin-bottom: 5px;
  }

  .photoRight {
    margin-left: 15px;
    margin-bottom: 5px;
  }
}

.shadow {
  -moz-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, .4);
  -webkit-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, .4);
  box-shadow: 0 0 14px 0px rgba(115, 115, 115, .4);
}

/* ------------------------------------------------------------------
youtube
------------------------------------------------------------------ */
#topYoutube {
  border-radius: 6px;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (max-width: 736px) {
  #topYoutube {
    margin: 15px 0;
    padding: 15px;
  }
}

/* ------------------------------------------------------------------
margin　スクロール
------------------------------------------------------------------ */
.mb-box {
  margin-bottom: 30px;
}

.mb-box:last-child {
  margin-bottom: 0px;
}

.scrollBox {
  margin-top: -120px;
  padding-top: 120px;
}

.ps {
  padding-top: 10px;
  padding-bottom: 5px;
}

.mb8 {
  margin-bottom: 8px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 10px;
}

.mt5 {
  margin-top: 5px;
}

@media only screen and (max-width: 736px) {
  .mb-box {
    margin-bottom: 10px;
  }

  .scrollBox {
    margin-top: -50px;
    padding-top: 50px;
  }
}

/* ------------------------------------------------------------------
inline-block
------------------------------------------------------------------ */
.need_container {
  text-align: center;
}

.needsBox {
  display: inline-block;
  text-align: left;
}

/* ------------------------------------------------------------------
ボタン
------------------------------------------------------------------ */
.btn_aria {
  position: relative;
  width: 170px;
  height: 30px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.btn_aria img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.btn_aria:hover img:nth-of-type(2) {
  opacity: 0;
}

@media only screen and (max-width: 736px) {
  .btn_aria img:nth-of-type(1) {
    opacity: 0;
  }
}

.btn {
  position: relative;
  line-height: 54px;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: normal;
  font-weight: 600;
  -moz-border-radius: .1em;
  -webkit-border-radius: .1em;
  -o-border-radius: .1em;
  -ms-border-radius: .1em;
  border-radius: .1em;
  border: 0px solid transparent;
  padding: 0px 0 0 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -moz-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -webkit-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -o-transition: background-color .2s linear, color .2s linear, border .2s linear;
  -ms-transition: background-color .2s linear, color .2s linear, border .2s linear;
  transition: background-color .2s linear, color .2s linear, border .2s linear;
}

.btn:focus, .btn:active, .btn.active {
  outline: 0;
  color: #fff;
}

.btn a {
  text-decoration: none !important;
}

.btn:hover {
  background: #fff;
}

.radius {
  -moz-border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  -o-border-radius: 30px !important;
  -ms-border-radius: 30px !important;
  border-radius: 30px !important;
}

.btn_arrow_blue:before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 5px;
  top: 50%;
  background: url('../img/arrow_right_blue.png') no-repeat 0 0;
  background-size: 16px 16px;
  margin-top: -7px;
}

.btn_arrow_blue:hover:before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 5px;
  top: 50%;
  background: url('../img/arrow_right_white.png') no-repeat 0 0;
  background-size: 16px 16px;
  margin-top: -7px;
}

.btn_arrow_white:before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 5px;
  top: 50%;
  background: url('../img/arrow_right_white.png') no-repeat 0 0;
  background-size: 12px 12px;
  margin-top: -5px;
}

.btn_arrow_white:hover:before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 5px;
  top: 50%;
  background: url('../img/arrow_right_blue.png') no-repeat 0 0;
  background-size: 12px 12px;
  margin-top: -5px;
}

.btn-dblue, .btn-dblue:focus, .btn-dblue:active {
  background-color: #224160;
  color: #fff;
}

.btn-dblue:hover {
  background-color: #4482c0;
  color: #fff;
}

.btn-blue-o, .btn-blue-o:focus, .btn-blue-o:active {
  background: #fff;
  color: #224160;
  border: solid 2px #224160;
}

.btn-blue-o:hover {
  background: #ffff00;
  color: #224160;
  border: solid 2px #224160;
}

.btn-orange, .btn-orange:focus, .btn-orange:active {
  background-color: #f57e17;
  color: #fff;
}

.btn-orange:hover {
  background-color: #ffbe2c;
  color: #fff;
}

.btn-green, .btn-green:focus, .btn-green:active {
  background-color: #32b16c;
  color: #fff;
}

.btn-green:hover {
  background-color: #5ae7aa;
  color: #fff;
}

/* ------------------------------------------------------------------
fontsize color 蛍光マーカー
------------------------------------------------------------------ */
.toptex {
  font-weight: 600;
  line-height: 2.0em;
  font-size: 2.0rem;
}

.yellow_line_narrow {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #fdf64d 0%) repeat scroll 0 0;
}

.text-weight {
  font-weight: 600;
}

.text-red {
  color: #cf0501;
}

.text-block {
  color: #28292C;
}

.text-green {
  color: #00af3a;
}

.text-blue {
  color: #114dd0;
}

.textL {
  font-weight: 600;
  font-size: 2.2rem;
}

.md-center {
  text-align: center;
  display: block;
}

.kome {
  display: block;
  font-size: 2.0rem;
  line-height: 1.2em;
  font-weight: 400;
}

.kome1 {
  display: block !important;
  font-size: 11px;
  line-height: 1em;
  font-weight: 400;
}

.kome3 {
  font-size: 12px;
  line-height: 34px;
  font-weight: 400;
}

.kome4 {
  font-size: 1.2rem;
  ;
  display: inline-block;
  font-weight: 400;
}

.grayBox {
  padding: 10px 10px 0;
  border: solid 1px #eee;
  border-radius: .2em;
  margin-top: 10px;
}

.grayBox p {
  font-size: 1.1rem;
}

@media only screen and (max-width: 736px) {
  .toptex {
    line-height: 1.6em;
    font-size: 1.5rem;
  }

  .textL {
    font-size: 1.8rem;
  }

  .kome1 {
    line-height: 2em;
    margin-left: 15px;
    padding-right: 15px;
    display: block;
  }

  .md-center {
    text-align: left;
  }
}

@media only screen and (max-width: 320px) {
  .toptex {
    font-size: 1.3rem;
  }
}

/* ------------------------------------------------------------------
footer
------------------------------------------------------------------ */
footer {
  background: #039BE5;
  padding: 30px 0 30px;
}

footer .inner {
  position: relative;
}

footer ul {
  text-align: center;
  letter-spacing: -.4em;
}

footer ul li {
  text-align: left;
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin-bottom: 1em;
  padding-left: .8em;
  padding-right: .8em;
}

footer ul li a {
  color: #333;
}

footer ul li a:hover {
  color: #995e3e;
  text-decoration: underline;
}

.f_logo {
  display: block;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 10px;
  width: 120px;
}

.f_logo_tex {
  font-weight: 600;
  text-align: center;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
}

.f_logo_tex a {
  color: #fff;
}

footer .copy {
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1;
}

@media(min-width:768px) {
  footer ul li {
    position: relative;
  }

  footer ul li::before {
    display: block;
    content: "";
    width: 1px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 4px;
    background: #ccc;
  }

  footer ul li:first-child::before {
    display: none;
  }
}

@media(min-width:1024px) {}

@media only screen and (max-width: 736px) {
  footer {
    margin-bottom: 108px;
  }

  footer ul {
    margin-bottom: 30px;
  }

  footer ul li {
    width: 100% !important;
    margin-left: 0 !important;
    display: block !important;
    font-size: 1.4rem;
    border-bottom: 1px dashed #aaa;
  }

  footer ul li a {
    display: block;
    margin-bottom: 1em;
  }

  footer ul li a:before {
    top: 6px;
  }

  .f_logo {
    width: 110px;
    width: 2;
    margin-bottom: 10px;
  }

  .f_logo_tex {
    font-size: 2.0rem;
  }

  footer .copy {
    font-size: 1.3rem;
    margin-bottom: 0px;
  }
}

/* ------------------------------------------------------------------
パンくず
------------------------------------------------------------------ */
.breadcrumb {
  text-align: center;
  padding: 0px 0;
  margin-bottom: 0px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  font-size: 1.1rem;
  border-radius: 0;
  white-space: nowrap;
  overflow-x: hidden;
  font-weight: 400;
}

.breadcrumb li {
  position: relative;
  padding: 0 .8em;
  color: #fff;
}

.breadcrumb li a {
  color: #fff;
}

.breadcrumb li a:hover {
  color: #b5b5b5 !important;
  text-decoration: underline !important;
}

.breadcrumb li:first-child {
  padding-left: 0;
  padding-right: .4em;
}

.breadcrumb>li+li:before {
  display: inline-block;
  content: "／";
  position: absolute;
  left: -9px;
  top: 0px;
  color: #fff;
}

@media only screen and (max-width: 736px) {
  .breadcrumb {
    display: none;
  }
}

/* ------------------------------------------------------------------
ページナビ
------------------------------------------------------------------ */
.wp-pagenavi {
  margin: 40px 0 0px;
  display: block;
  float: right;
  height: 39px;
}

.wp-pagenavi a, .wp-pagenavi span {
  background: #f7f3f0;
  margin: 0 0px 0 0 !important;
  color: #ad7d63;
  padding: 10px 15px !important;
}

.wp-pagenavi span.current {
  color: #fff;
  background: #ad7d63;
}

@media only screen and (max-width: 736px) {
  .wp-pagenavi {
    margin: 20px 0px 0px 0px;
  }

  .wp-pagenavi a, .wp-pagenavi span {
    padding: 10px 15px !important;
  }
}

/* ------------------------------------------------------------------
ページトップへ
------------------------------------------------------------------ */
.scroll-top {
  z-index: 1049;
  position: fixed;
  right: 30px;
  bottom: 70px;
  width: 80px;
  height: 80px;
}

.scroll-top .btn:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url('../img/arrow-buttom.png') no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
  margin-left: -10px;
}

.scroll-top .btn:hover:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url('../img/arrow-buttom.png') no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
  margin-left: -10px;
}

.scroll-top .btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 30px;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-indent: 200%;
  white-space: nowrap;
  box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
}

.scroll-top .btn:focus {
  outline: 0;
}

@media(min-width:768px) {
  .scroll-top {}
}

@media only screen and (max-width: 736px) {
  .scroll-top {
    position: fixed;
    right: 10px;
    bottom: 120px;
    width: 50px;
    height: 50px;
  }

  .scroll-top .btn {
    width: 50px;
    height: 50px;
  }
}

/* ------------------------------------------------------------------
selection
------------------------------------------------------------------ */
::-moz-selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(255, 255, 255, .2);
}

::selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(0, 0, 0, .1);
}

img::selection {
  background: 0 0;
}

img::-moz-selection {
  background: 0 0;
}

/* ------------------------------------------------------------------
非表示
------------------------------------------------------------------ */
.hidden_aria {
  display: none !important;
}

/* ------------------------------------------------------------------
br
------------------------------------------------------------------ */
@media only screen and (max-width: 736px) {
  .hidden_md {
    display: none !important;
  }
}

@media(min-width:768px) {
  .brmd:before {
    content: "\A";
    white-space: pre;
  }

  .hidden_xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1021px) {
  .brmd_pad:before {
    content: "\A";
    white-space: pre;
  }
}

@media only screen and (max-width: 736px) {
  .brxs:before {
    content: "\A";
    white-space: pre;
  }
}
