/*
 * Narumi-So v1.0
 * Copyright TO-ON Design
 * 制作 TO-ON Design
 */
/* @import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Amiko:wght@600&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600&display=swap'); */

/*------------------------------------
  Default Styles
------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1rem;
  overflow-x:hidden;
}

body {
  font-weight: 400;
  font-size: 1rem;
font-family: "Spartan", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
/* font-family: "Noto Sans JP", "Open Sans", sans-serif; */
/*  font-family: 'Shippori Mincho', serif; */
line-height: 1.6;
  background-color: #E9E9E9;
/*  background-color: #fcfcfc; */
  color: #1b1e24;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
  text-rendering: optimizelegibility;
  /* 大画面対応 最大幅定義 */
  max-width: 1920px;
  margin: 0 auto;
}

a {
  color: #ed7a25;
/*  color: #007eb1; */
}

a:hover {
  color: #ed7a25;
/*  color: #007eb1; */
}

.bg-footer a {
  color: #fff;
}

.bg-footer a:hover {
  color: #fff;
}

a:focus {
  outline: none;
}

p {
  line-height: 1.8;
  letter-spacing: 0.2rem;
  text-align: justify; /* テキスト両端揃え */
}

figure {
  margin-bottom: 0;
}

hr {
  border-color: #e6e7e9;
}

[role=button] {
  cursor: pointer;
}

/*------------------------------------
  Headings
------------------------------------*/
.h1, .h2, .h3, .h4, .h5, .h6, .h7,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

/*------------------------------------
  Highlight Color
------------------------------------*/
::-moz-selection {
  color: #fff;
  background-color: #C6E8F5;
/*  background-color: #59287a; */
}

::selection {
  color: #fff;
  background-color: #C6E8F5;
/*  background-color: #59287a; */
}

.bg-primary ::-moz-selection {
  color: #007eb1;
/*  color: #59287a; */
  background-color: #fff;
}

.bg-primary ::selection {
  color: #007eb1;
/*  color: #59287a; */
  background-color: #fff;
}

/*----------------------------------
  Alerts
------------------------------------*/
/* Alert Icon */
.alert__icon {
  font-size: 1.25rem;
}

/* Alert Close Button */
.alert__close {
  padding: 0;
  line-height: 1.3;
  opacity: .7;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.625rem;
  transition: all .3s;
}

.alert__close--light {
  color: #fff;
}

.alert__close--dark {
  color: #1b1e24;
}

.alert__close:hover {
  opacity: 1;
}

.alert__close:focus {
  outline: 0 none;
  box-shadow: none;
}

/*----------------------------------
  Background Arrow
------------------------------------*/
.u-bg-arrow-wrapper {
  position: relative;
}

.u-bg-arrow-bottom::before {
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -20px;
  bottom: -25px;
  border-style: solid;
  border-width: 25px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
  z-index: 3;
}

/*----------------------------------
  Avatars
------------------------------------*/
.u-avatar {
  border: solid 3px #fff;
}

/*----------------------------------
  Border Radius
------------------------------------*/
.rounded-md {
  border-radius: .625rem;
}

/*----------------------------------
  Buttons
------------------------------------*/
.btntextchange {
	position: relative;
	border: 1px solid #555;
	border-radius: 25px;
	min-width: 210px;
	padding: 20px;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	color: #333;
	outline: none;
	transition: all .2s;
}

.btntextchange:hover {
	background: #c11732;
	color: #fff;
}

.btntextchange span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform:translate(-50%,-50%);
	transition: all .5s;
	display: block;
	white-space: nowrap;
}

.btntextchange span:nth-child(2){
	opacity:0;
}

.btntextchange:hover span:nth-child(1){
	opacity:0;
}

.btntextchange:hover span:nth-child(2){
	opacity:1;
}

.btntextchange_min {
	position: relative;
	border: 1px solid #555;
	border-radius: 20px;
	min-width: 150px;
  margin: 10px;
	padding: 12px;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	color: #333;
	outline: none;
	transition: all .2s;
  font-size: 0.9rem;
}

.btntextchange_min:hover {
	background: #c11732;
  border: 1px solid #fff;
	color: #fff;
}

.btntextchange_min span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform:translate(-50%,-50%);
	transition: all .5s;
	display: block;
	white-space: nowrap;
}

.btntextchange_min span:nth-child(2){
	opacity:0;
}

.btntextchange_min:hover span:nth-child(1){
	opacity:0;
}

.btntextchange_min:hover span:nth-child(2){
	opacity:1;
}

.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border {
  border: 1px solid #ff7baa;
  border-radius: 0;
  background: #fff;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}

a.btn-border:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 15px;
  height: 100%;

  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);

  border-radius: 0 50% 50% 0;
  background: #ff7baa;
}

a.btn-border:hover:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  line-height: 30px;

  width: 30px;
  height: 30px;

  content: '\f061';
  -webkit-transform: translateX(460%) translateY(.4rem);
  transform: translateX(460%) translateY(.4rem);

  color: #fff;
  border-radius: 50%;
}


a.btn-border-long {
  border: 1px solid #ff7baa;
  border-radius: 0;
  background: #fff;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}

a.btn-border-long:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 15px;
  height: 100%;

  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);

  border-radius: 0 50% 50% 0;
  background: #ff7baa;
}

a.btn-border-long:hover:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  line-height: 30px;

  width: 30px;
  height: 30px;

  content: '\f061';
  -webkit-transform: translateX(860%) translateY(.4rem);
  transform: translateX(860%) translateY(.4rem);

  color: #fff;
  border-radius: 50%;
}


/*----------------------------------
  Carousell
------------------------------------*/
.carousel-control-size {
  font-size: 2rem;
}

/*----------------------------------
  Forms
------------------------------------*/
/* Form Lable States */
.is-valid .form-label-text {
  color: #0dd157;
}

.is-invalid .form-label-text {
  color: #fb4143;
}

.is-disabled .form-label-text {
  color: #8f95a0;
}

/* Form Pilled Shape */
.form--pill {
  border-radius: 6.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Forms Icon */
.form-icon-wrapper {
  position: relative;
  display: block;
}

.form-icon-input-left {
  padding-left: 2.1875rem;
}

.form-icon-input-right {
  padding-right: 2.1875rem;
}

.form-icon {
  position: absolute;
  height: 100%;
  width: 2.5rem;
}

.form-icon--left {
  left: 0;
}

.form-icon--right {
  right: 0;
}

.form-icon__item {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #8f95a0;
  transform: translate(-50%, -50%);
}

/* Form Toggles */
.form-toggle {
  position: relative;
  cursor: pointer;
}

.form-toggle__item {
  display: block;
  padding-left: 1px;
  padding-right: 1px;
  cursor: pointer;
  width: 43px;
  height: 22px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  color: #d5d7dc;
  border: solid 1px #d5d7dc;
  border-radius: 6.25rem;
}

.form-toggle__item i::before, .form-toggle__item i::after {
  content: "";
  display: block;
  position: absolute;
}

.form-toggle__item i::before {
  content: attr(data-uncheck-icon);
  top: 0;
  left: 0;
  width: 100%;
  line-height: 18px;
  text-align: right;
  padding: 2px 7px;
}

.form-toggle__item i::after {
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #d5d7dc;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: left .2s ease;
}

.form-toggle input[type="checkbox"],
.form-toggle input[type="radio"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.form-toggle input[type="radio"]:checked + .form-toggle__item,
.form-toggle input[type="radio"]:checked + * .form-toggle__item {
  color: #fff;
  background-color: #007eb1;
  border-color: #007eb1;
/*  background-color: #59287a;
  border-color: #59287a; */
  transition: all .3s ease;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item i:before,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item i:before,
.form-toggle input[type="radio"]:checked + .form-toggle__item i:before,
.form-toggle input[type="radio"]:checked + * .form-toggle__item i:before {
  content: attr(data-check-icon);
  text-align: left;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item i::after,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item i::after,
.form-toggle input[type="radio"]:checked + .form-toggle__item i::after,
.form-toggle input[type="radio"]:checked + * .form-toggle__item i::after {
  left: calc(100% - 19px);
  background-color: #fff;
}

.is-valid .form-toggle__item {
  color: #0dd157;
  border: solid 1px #0dd157;
}

.is-valid .form-toggle__item i::after {
  background-color: #0dd157;
}

.is-valid .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-valid .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-valid .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-valid .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #0dd157;
  border-color: #0dd157;
}

.is-invalid .form-toggle__item {
  color: #fb4143;
  border: solid 1px #fb4143;
}

.is-invalid .form-toggle__item i::after {
  background-color: #fb4143;
}

.is-invalid .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-invalid .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-invalid .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-invalid .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #fb4143;
  border-color: #fb4143;
}

.is-disabled .form-toggle__item {
  color: #e6e7e9;
  border: solid 1px #e6e7e9;
}

.is-disabled .form-toggle__item i::after {
  background-color: #e6e7e9;
}

.is-disabled .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-disabled .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-disabled .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-disabled .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #e6e7e9;
  border-color: #e6e7e9;
}

/* Bootstrap's Custom Controls */
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #0dd157;
}

.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #fb4143;
}

.custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #d5d7dc;
}

/*----------------------------------
  Modals
------------------------------------*/
.modal-content {
  box-shadow: 0 0.25rem 0.6rem rgba(27, 30, 36, 0.07);
}

@media (min-width: 576px) {
  .modal-content {
    box-shadow: 0 0.5rem 1.625rem rgba(27, 30, 36, 0.07);
  }
}

/*----------------------------------
  Pager
------------------------------------*/
.pager-btn {
  min-width: 7.2rem;
}

.pager-btn.btn-sm {
  min-width: 6.2rem;
}

.pager-btn.btn-lg {
  min-width: 9.4rem;
}

/*----------------------------------
  Popover
------------------------------------*/
.popover {
  box-shadow: 0 0.25rem 0.6rem rgba(27, 30, 36, 0.07);
}

/*----------------------------------
  Progress Bars
------------------------------------*/
.progress--pill {
  border-radius: 6.25rem;
}

.u-progress-bar-vertical {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  background-color: #faf7fc;
  height: 200px;
}

.u-progress-bar-vertical__indicator {
  background-color: #C6E8F5;
/*  background-color: #59287a; */
}

/*----------------------------------
  Tabs
------------------------------------*/
.nav-tabs--v1 .nav-item {
  margin-right: 3px;
}

.nav-tabs--v1 .nav-item:last-child {
  margin-right: 0;
}

.nav-tabs--v1 .nav-link {
  border-top-width: 3px;
}

.nav-tabs--v1 .nav-link:hover, .nav-tabs--v1 .nav-link:focus {
  border-color: transparent;
}

.nav-tabs--v1 .nav-link.active,
.nav-tabs--v1 .nav-item.show .nav-link {
  border-top-color: #C6E8F5;
/*  border-top-color: #59287a; */
}

.nav-tabs--v1 .nav-link.active:hover, .nav-tabs--v1 .nav-link.active:focus,
.nav-tabs--v1 .nav-item.show .nav-link:hover,
.nav-tabs--v1 .nav-item.show .nav-link:focus {
  border-left-color: #e6e7e9;
  border-right-color: #e6e7e9;
  border-top-color: #C6E8F5;
/*  border-top-color: #59287a; */
}

.tab-content--v1 {
  padding: 1.25rem 1rem;
  margin-top: -1px;
  border: solid 1px #e6e7e9;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.tab-content--v1 p:last-of-type {
  margin-bottom: 0;
}

/*----------------------------------
  Blockquote-v1
------------------------------------*/
.blockquote-v1 {
  padding: 1.5rem 1.25rem;
  background-color: #f6f9fc;
  font-size: 1.25rem;
  font-weight: 300;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.blockquote-v1--left {
  border-left: solid 0.25rem #007eb1;
/*  border-left: solid 0.25rem #59287a; */
}

.blockquote-v1--right {
  border-right: solid 0.25rem #007eb1;
/*  border-right: solid 0.25rem #59287a; */
}

/*----------------------------------
  Blockquote-v2
------------------------------------*/
.u-blockquote-v2 {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 6px 9px -6px rgba(0, 0, 0, 0.15);
  padding: 1.875rem 1.875rem 1.875rem 3.75rem;
}

.u-blockquote-v2::before {
  content: "\201C";
  position: absolute;
  width: 3.75rem;
  margin: -1.5625rem 0 0 -2.5rem;
  color: #007eb1;
/*  color: #59287a; */
  font-size: 3.75rem;
}

.u-blockquote-v2::after {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 3.75rem;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
}

.u-blockquote-v2__image {
  width: 3.75rem;
  height: 3.75rem;
}

/*------------------------------------
  カルーセル部
------------------------------------*/
.u-clients {
  position: relative;
  margin: 80px 15px 0 15px;
  padding: 20px 40px 20px 40px;
  background-color: #54c3f1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 28' width='56' height='28'%3E%3Cpath fill='%239C92AC' fill-opacity='0.4' d='M56 26v2h-7.75c2.3-1.27 4.94-2 7.75-2zm-26 2a2 2 0 1 0-4 0h-4.09A25.98 25.98 0 0 0 0 16v-2c.67 0 1.34.02 2 .07V14a2 2 0 0 0-2-2v-2a4 4 0 0 1 3.98 3.6 28.09 28.09 0 0 1 2.8-3.86A8 8 0 0 0 0 6V4a9.99 9.99 0 0 1 8.17 4.23c.94-.95 1.96-1.83 3.03-2.63A13.98 13.98 0 0 0 0 0h7.75c2 1.1 3.73 2.63 5.1 4.45 1.12-.72 2.3-1.37 3.53-1.93A20.1 20.1 0 0 0 14.28 0h2.7c.45.56.88 1.14 1.29 1.74 1.3-.48 2.63-.87 4-1.15-.11-.2-.23-.4-.36-.59H26v.07a28.4 28.4 0 0 1 4 0V0h4.09l-.37.59c1.38.28 2.72.67 4.01 1.15.4-.6.84-1.18 1.3-1.74h2.69a20.1 20.1 0 0 0-2.1 2.52c1.23.56 2.41 1.2 3.54 1.93A16.08 16.08 0 0 1 48.25 0H56c-4.58 0-8.65 2.2-11.2 5.6 1.07.8 2.09 1.68 3.03 2.63A9.99 9.99 0 0 1 56 4v2a8 8 0 0 0-6.77 3.74c1.03 1.2 1.97 2.5 2.79 3.86A4 4 0 0 1 56 10v2a2 2 0 0 0-2 2.07 28.4 28.4 0 0 1 2-.07v2c-9.2 0-17.3 4.78-21.91 12H30zM7.75 28H0v-2c2.81 0 5.46.73 7.75 2zM56 20v2c-5.6 0-10.65 2.3-14.28 6h-2.7c4.04-4.89 10.15-8 16.98-8zm-39.03 8h-2.69C10.65 24.3 5.6 22 0 22v-2c6.83 0 12.94 3.11 16.97 8zm15.01-.4a28.09 28.09 0 0 1 2.8-3.86 8 8 0 0 0-13.55 0c1.03 1.2 1.97 2.5 2.79 3.86a4 4 0 0 1 7.96 0zm14.29-11.86c1.3-.48 2.63-.87 4-1.15a25.99 25.99 0 0 0-44.55 0c1.38.28 2.72.67 4.01 1.15a21.98 21.98 0 0 1 36.54 0zm-5.43 2.71c1.13-.72 2.3-1.37 3.54-1.93a19.98 19.98 0 0 0-32.76 0c1.23.56 2.41 1.2 3.54 1.93a15.98 15.98 0 0 1 25.68 0zm-4.67 3.78c.94-.95 1.96-1.83 3.03-2.63a13.98 13.98 0 0 0-22.4 0c1.07.8 2.09 1.68 3.03 2.63a9.99 9.99 0 0 1 16.34 0z'%3E%3C/path%3E%3C/svg%3E");
/*  background-color: #54C3F1; */
  border-radius: 30px;
}

.article_list_title {
  margin-top: -90px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.article_list_title_text {
  color: #0071BA;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  margin: 20px 0 40px 0;
}

.article_list_title img {
  width: 300px;
}

.u-clients__item {
  position: relative;
  padding: 15px;
  height: 500px;
}

.u-clients__image {
  width: 100%;
}

.u-clients__image img {
  border-radius: 10px;
}

.u-clients__text {
  position: absolute;
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
  padding: 20px 30px;
  top: 45%;
  left: 10%;
  border-radius: 10px;
  opacity: 0.8;
}

.u-clients__contents {
  font-size: 1.0rem;
  letter-spacing: 0.2rem;
  line-height: 1.2rem;
}

@media screen and (max-width: 1200px) {
  .article_list_title {
    margin-top: -70px;
    margin-bottom: 30px;
  }

  .article_list_title img {
    width: 250px;
  }

  .article_list_title_text {
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.8rem;
    letter-spacing: 0.1rem;
    margin: 20px 0 40px 0;
  }

  .u-clients__item {
    height: 400px;
  }
        
  .u-clients__text {
    width: 85%;
    top: 35%;
    left: 7.5%;
  }

  .u-clients__contents {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    line-height: 1.2rem;
  }

}

@media screen and (max-width: 767px) {
  .u-clients {
    margin: 80px 15px 0 15px;
    padding: 20px 10px 20px 10px;
    background-color: #54C3F1;
    border-radius: 30px;
  }
    .u-clients__text {
    padding: 15px 20px;
    width: 90%;
    top: 40%;
    left: 5%;
    border-radius: 10px;
  }
}

@media screen and (max-width: 650px) {

  .u-clients__item {
    height: 500px;
  }

  .u-clients__text {
    top: 65%;
  }

}

@media screen and (max-width: 550px) {

  .u-clients__item {
    height: 450px;
  }

  .u-clients__text {
    padding: 15px 20px;
    width: 90%;
    top: 55%;
    left: 5%;
    border-radius: 10px;
  }

}

@media screen and (max-width: 450px) {

  .u-clients__item {
    height: 400px;
  }

  .u-clients__text {
    padding: 15px 20px;
    width: 90%;
    top: 45%;
    left: 5%;
    border-radius: 10px;
  }

}

/*------------------------------------
  Mockup (Browser)
------------------------------------*/
.u-browser-img {
  position: relative;
  top: -7px;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/*------------------------------------
  Device (iPad)
------------------------------------*/
.u-device {
  position: relative;
  width: 85%;
  z-index: -1;
/*  margin-bottom: -10rem; */
}

.u-device__item {
  border-radius: 2rem;
  box-shadow: 10px 15px 55px 15px rgba(140, 152, 164, 0.1);
}

/*------------------------------------
  Icon
------------------------------------*/
.u-icon {
  position: relative;
  z-index: 1;
  line-height: .7;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.125rem;
  border-radius: .25rem;
  transition: .3s ease-in-out;
}

.u-icon__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-icon__inner-bottom-minus {
  top: 90%;
}

/*------------------------------------
  Icon Sizes
------------------------------------*/
/* Extra Small */
.u-icon--size--xs {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.8125rem;
}

/* Small */
.u-icon--size--sm {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

/* Large */
.u-icon--size--lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.75rem;
}

/* Extra Large */
.u-icon--size--xl {
  width: 5rem;
  height: 5rem;
  font-size: 2.375rem;
}

/*------------------------------------
  Icon Default Styles
------------------------------------*/
/* primary */
.u-icon-primary {
  color: color-yiq(#007eb1);
  background-color: #007eb1;
  border-color: #007eb1;
/*  color: color-yiq(#59287a);
  background-color: #59287a;
  border-color: #59287a; */
}

.u-icon-primary[href]:hover {
  color: color-yiq(#006a95);
  background-color: #006a95;
  border-color: #006a95;
/*  color: color-yiq(#441f5d);
  background-color: #441f5d;
  border-color: #3d1b54; */
}

.u-icon-primary.disabled, .u-icon-primary:disabled {
  background-color: #007eb1;
  border-color: #007eb1;
/*  background-color: #59287a;
  border-color: #59287a; */
}

/* secondary */
.u-icon-secondary {
  color: color-yiq(#00c9a7);
  background-color: #00c9a7;
  border-color: #00c9a7;
}

.u-icon-secondary[href]:hover {
  color: color-yiq(#00a387);
  background-color: #00a387;
  border-color: #00967d;
}

.u-icon-secondary.disabled, .u-icon-secondary:disabled {
  background-color: #00c9a7;
  border-color: #00c9a7;
}

/* success */
.u-icon-success {
  color: color-yiq(#0dd157);
  background-color: #0dd157;
  border-color: #0dd157;
}

.u-icon-success[href]:hover {
  color: color-yiq(#0bad48);
  background-color: #0bad48;
  border-color: #0aa143;
}

.u-icon-success.disabled, .u-icon-success:disabled {
  background-color: #0dd157;
  border-color: #0dd157;
}

/* info */
.u-icon-info {
  color: color-yiq(#2972fa);
  background-color: #2972fa;
  border-color: #2972fa;
}

.u-icon-info[href]:hover {
  color: color-yiq(#065af7);
  background-color: #065af7;
  border-color: #0555eb;
}

.u-icon-info.disabled, .u-icon-info:disabled {
  background-color: #2972fa;
  border-color: #2972fa;
}

/* warning */
.u-icon-warning {
  color: color-yiq(#fab633);
  background-color: #fab633;
  border-color: #fab633;
}

.u-icon-warning[href]:hover {
  color: color-yiq(#f9a90e);
  background-color: #f9a90e;
  border-color: #f4a306;
}

.u-icon-warning.disabled, .u-icon-warning:disabled {
  background-color: #fab633;
  border-color: #fab633;
}

/* danger */
.u-icon-danger {
  color: color-yiq(#fb4143);
  background-color: #fb4143;
  border-color: #fb4143;
}

.u-icon-danger[href]:hover {
  color: color-yiq(#fa1c1e);
  background-color: #fa1c1e;
  border-color: #fa0f12;
}

.u-icon-danger.disabled, .u-icon-danger:disabled {
  background-color: #fb4143;
  border-color: #fb4143;
}

/* light */
.u-icon-light {
  color: color-yiq(#f6f9fc);
  background-color: #f6f9fc;
  border-color: #f6f9fc;
}

.u-icon-light[href]:hover {
  color: color-yiq(#d9e6f2);
  background-color: #d9e6f2;
  border-color: #d0e0ef;
}

.u-icon-light.disabled, .u-icon-light:disabled {
  background-color: #f6f9fc;
  border-color: #f6f9fc;
}

/* dark */
.u-icon-dark {
  color: color-yiq(#1b1e24);
  background-color: #1b1e24;
  border-color: #1b1e24;
}

.u-icon-dark[href]:hover {
  color: color-yiq(#0b0c0e);
  background-color: #0b0c0e;
  border-color: #050607;
}

.u-icon-dark.disabled, .u-icon-dark:disabled {
  background-color: #1b1e24;
  border-color: #1b1e24;
}

/* white */
.u-icon-white {
  color: color-yiq(#fff);
  background-color: #fff;
  border-color: #fff;
}

.u-icon-white[href]:hover {
  color: color-yiq(#ececec);
  background-color: #ececec;
  border-color: #e6e6e6;
}

.u-icon-white.disabled, .u-icon-white:disabled {
  background-color: #fff;
  border-color: #fff;
}

/* facebook */
.u-icon-facebook {
  color: color-yiq(#3b5998);
  background-color: #3b5998;
  border-color: #3b5998;
}

.u-icon-facebook[href]:hover {
  color: color-yiq(#30497c);
  background-color: #30497c;
  border-color: #2d4373;
}

.u-icon-facebook.disabled, .u-icon-facebook:disabled {
  background-color: #3b5998;
  border-color: #3b5998;
}

/* google */
.u-icon-google {
  color: color-yiq(#d14130);
  background-color: #d14130;
  border-color: #d14130;
}

.u-icon-google[href]:hover {
  color: color-yiq(#b33628);
  background-color: #b33628;
  border-color: #a93325;
}

.u-icon-google.disabled, .u-icon-google:disabled {
  background-color: #d14130;
  border-color: #d14130;
}

/* twitter */
.u-icon-twitter {
  color: color-yiq(#1da1f2);
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.u-icon-twitter[href]:hover {
  color: color-yiq(#0d8ddc);
  background-color: #0d8ddc;
  border-color: #0c85d0;
}

.u-icon-twitter.disabled, .u-icon-twitter:disabled {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

/* instagram */
.u-icon-instagram {
  color: color-yiq(#3f729b);
  background-color: #3f729b;
  border-color: #3f729b;
}

.u-icon-instagram[href]:hover {
  color: color-yiq(#345e80);
  background-color: #345e80;
  border-color: #305777;
}

.u-icon-instagram.disabled, .u-icon-instagram:disabled {
  background-color: #3f729b;
  border-color: #3f729b;
}

/* github */
.u-icon-github {
  color: color-yiq(#24292e);
  background-color: #24292e;
  border-color: #24292e;
}

.u-icon-github[href]:hover {
  color: color-yiq(#131619);
  background-color: #131619;
  border-color: #0e1011;
}

.u-icon-github.disabled, .u-icon-github:disabled {
  background-color: #24292e;
  border-color: #24292e;
}

/*------------------------------------
  Icon Block
------------------------------------*/
.u-icon-block__col {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .u-icon-block {
    border-bottom: solid 1px #e6e7e9;
  }
  .u-icon-block__col--left-brd {
    border-left: solid 1px #e6e7e9;
  }
}

/*----------------------------------
  Header
------------------------------------*/
@media (max-width: 767px) {
  .navbar-expand-sm.fixed-top {
    background-color: rgba(136, 177, 222, 0.3);
/*    background-color: rgba(27, 30, 36, 0.3); */
  }
}

@media (max-width: 991px) {
  .navbar-expand-md.fixed-top {
    background-color: rgba(136, 177, 222, 0.3);
/*    background-color: rgba(27, 30, 36, 0.3); */
  }
}

@media (max-width: 1199px) {
  .navbar-expand-lg.fixed-top {
    background-color: rgba(136, 177, 222, 0.3);
/*    background-color: rgba(27, 30, 36, 0.3); */
  }
}

.navbar-bg-onscroll.fixed-top {
  background-color: #74b2e0;
/*  background-color: #672e8d; */
  transition: all .3s ease-out;
}

.navbar-bg-onscroll.fixed-top--fade {
  transition: all .4s ease-out;
}

/*============
logo
=============*/
#logo_head {
  position: fixed;
  left: 45%;
  top: 3%;
  transform: translateX(-45%)
             translateY(-3%);
/*	left: 40px;
	top: 30px; */
	z-index: 2;
	/* はじめは非表示 */
	opacity: 1;
	transform: translateY(-350px);
/*	mix-blend-mode: exclusion; */
}

#logo_head img {
	width: 150px;
}

#logo_head.logo_head_small img {
  width: 80px;
}

#logo_head.DownMove {
	animation: DownAnime 0.8s forwards;
}

@keyframes DownAnime{
	from {
		opacity: 0;
		transform: translateY(-150px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#logo_head.UpMove {
	animation: UpAnime 0.8s forwards;
}

@keyframes UpAnime{
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(-150px);
	}
}

@media screen and (max-width: 850px) {
  #logo_head {
    left: 41%;
    top: 1%;
  }
  
  #logo_head img {
    width: 150px;
  }
  
}

@media screen and (max-width: 500px) {
  #logo_head {
    left: 38%;
    top: 3%;
  }
  
  #logo_head img {
    width: 100px;
  }
  
}

/*============
logo(subpage)
=============*/
.logo_title_sub {
    position: absolute;
    top: 10px;
    left: 7%;
    background-color: #c11732;
    width: 150px;
    padding: 10px;
    border-radius: 50%;
    z-index: 9;
    text-align: center;
/*    margin-top: -180px; */
}

@media screen and (max-width: 980px) {
    .logo_title_sub {
      left: 5%;
      width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .logo_title_sub {
    left: 3%;
    width: 100px;
  }
}

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
  /*はじめは非表示に*/
display: none;
  /*ボタンの位置*/
position:fixed;
top:30px;
left: 30px;
z-index: 999;
  /*ボタンの形状*/
background:#c11732;
cursor: pointer;
  width: 50px;
  height:50px;
border-radius: 50px;
}

/*ボタンのアイコン設定*/
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px;	
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeDownAnime{
from {
  opacity: 0;
  transform: translateY(-100px);
}

to {
  opacity: 1;
  transform: translateY(0);
}
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	height: 50px;
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
/*	background:#fefefe; */
	color:#777;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}

/*==ヘッダーのテキストナビゲーションの形状*/
#header {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#g-navi ul{
  position: absolute;
  top: 65%;
  /* absolute 中央寄せ */
  left: 0;
  right: 0;
  margin: auto;
  /* absolute 中央寄せ */
  z-index: 999;
  width: 45%;
	list-style: none;
	display: flex;
	justify-content: center;
  background-color: #c11732;
  color: #fff;
  padding: 7px;
  border-radius: 100px;
  font-size: 1.0rem;;
}

#g-navi ul li a{
	text-decoration: none;
  color: #fff;
	padding:10px;
}

#g-navi ul li.current a,
#g-navi ul li a:hover{
	color:#999;	
}

@media screen and (max-width: 1200px) {
  #g-navi ul {
    width: 55%;
    font-size: 0.8rem;;
  }
}

@media screen and (max-width: 950px) {
  #g-navi ul{
    display: none;
  }
}

/* .dnoneクラスがついたヘッダーのテキストナビゲーションの形状 */
#header.dnone #g-navi{
  /*固定位置にして最背面に*/
  position:fixed;
  /* 2023/01/14 メニュー自体は見えないが、存在していた為、強制的に５００px上にずらしている */
  top: -500px;
  left: 0;
  z-index: -1;
  /*高さと幅*/
  width:100%;
  height: 100vh;
  /*天地中央＆テキスト中央揃え*/  
  display: flex;
  justify-content: start;
/*  justify-content: center; */
  align-items: start;
/*  align-items: center; */
  text-align: left;
/*  text-align: center; */
  /*はじめは透過0に*/  
  opacity: 0;
  transition: all 0.4s;
  font-size: 2.0rem;
}

#header.dnone #g-navi ul {
  position: static;
  z-index: 9999;
  width: 100%;
	list-style: none;
	display: flex;
	justify-content: center;
  background-color: none;
  color: #fff;
  padding: 7px;
  border-radius: 20px;
  font-size: 2.5rem;;
  margin-top: 100px;
  margin-left: 50px;
}

@media screen and (max-width:600px) {

  #header.dnone #g-navi ul {
    margin-top: 100px;
    margin-left: 20px;
    font-size: 2.0rem;
  }
  
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
  /* 2023/01/14 ハンバーガーメニューボタンがクリックされたタイミングでメニューパネルを定位置に移動 */
  top: 0;
	opacity: 1;/*不透明に*/
	z-index:3;/*最前面に*/
	background:#c11732;
}

#header.dnone.panelactive #g-navi ul{
	display:block;/*flexの横並びをblockにして縦並びに*/
}

#header.dnone.panelactive #g-navi li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition:all 0.3s;
}

/* 予約アイコン */
.reservation_icon {
	position: fixed;
	top: 200px;
	right: 0;
	z-index: 9;
}
.reservation_icon img {
	width: 120px;
}

@media (max-width: 1200px){

  .reservation_icon {
    top: 150px;

  }  
}

@media (max-width: 600px){

  .reservation_icon {
      top: 30px;
      right: -3px;
  
    }
    .reservation_icon img {
      width: 80px;
    }
    
  }
  
/*------------------------------------
  Portfolio
------------------------------------*/
.u-portfolio-controls__item {
  display: inline-block;
  cursor: pointer;
}

.u-portfolio-controls__item:not(:last-child)::after {
  content: "|";
  font-size: 0.71429rem;
  margin: 0 4px;
  position: relative;
  top: -2px;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  color: transparent;
}

@media (min-width: 992px) {
  .u-portfolio-controls__item:not(:last-child)::after {
    color: #d5d7dc;
    margin: 0 7px 0 12px;
  }
}

.u-portfolio-controls a {
  color: #1b1e24;
}

.u-portfolio-controls a.active {
  color: #007eb1;
/*  color: #59287a; */
}

.u-portfolio__item {
  overflow: hidden;
  z-index: 2;
}

.u-portfolio__image {
  display: block;
  width: 100%;
  height: auto;
  transition: all .2s ease;
}

.u-portfolio__item:hover .u-portfolio__image {
  transform: translate3d(0, -60px, 0);
}

.u-portfolio__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.75rem;
  overflow: hidden;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  color: #333;
/*  color: #fff; */
  background-color: #C6E8F5;
/*  background-color: #59287a; */
  transition: all .2s ease;
  transform: translate3d(0, 3.75rem, 0);
}

.u-portfolio__info small {
  opacity: .7;
}

.u-portfolio__item:hover .u-portfolio__info {
  transform: translate3d(0, 0, 0);
}

.u-portfolio__zoom {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-indent: -10000px;
}

/*----------------------------------
  Promo Block v1
------------------------------------*/
.u-promo-block {
  position: relative;
  min-height: 100vh;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.u-promo-block--mheight-300 {
  min-height: 300px;
}

.u-promo-block--mheight-450 {
  min-height: 450px;
}

.u-promo-block--mheight-500 {
  min-height: 500px;
}

.u-promo-block--mheight-600 {
  min-height: 600px;
}

.u-promo-block--mheight-700 {
  min-height: 700px;
}

@media (max-width: 1199px) {
  .u-promo-block {
/*    background-attachment: fixed; */
  }
}

/*------------------------------------
  prbox( 各テキスト枠 )
------------------------------------*/
.u-prbox {
  margin-top: -80px;
/*  border-top: solid;
  border-top-color: #ff7baa;
  border-top-width: 5px; */
  background-color: #fff;
}

.u-prbox__header {
  position: relative;
  padding: 2.5rem 1.5rem;
}

.u-prbox__header-title {
  font-family: 'Amiko', sans-serif;
  display: block;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.u-prbox__header-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 40px;
  margin: auto;
  background-color: #888;
  transform: rotate(45deg);
}

.u-prbox__header-title {
  opacity: .8;
}

.u-prbox__header-decoration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.u-prbox__content {
  padding: 1.5rem;
}

.u-prbox__content .disabled .u-icon {
  color: #85778f;
  background-color: rgba(133, 119, 143, 0.1);
}

.u-prbox .disabled {
  color: #85778f;
}

/*----------------------------------
  Spaces
------------------------------------*/
.u-content-space {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.u-content-space-top {
  padding-top: 6.25rem;
}

.u-content-space-bottom {
  padding-bottom: 6.25rem;
}

.u-content-half-space {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.u-content-half-space-top {
  padding-top: 3rem;
}

.u-content-half-space-bottom {
  padding-bottom: 3rem;
}

/*----------------------------------
  Pull
------------------------------------*/
.u-pull-half {
  transform: translate3d(0, -50%, 0);
}

/*----------------------------------
  Links
------------------------------------*/
.u-link {
  color: #1b1e24;
  text-decoration: none;
}

.u-link:hover {
  color: #007eb1;
/*  color: #59287a; */
  text-decoration: none;
}

/*----------------------------------
  Box Shadow
------------------------------------*/
.u-box-shadow-sm {
  box-shadow: 0 0.2rem 1.25rem 0 rgba(27, 30, 36, 0.07);
}

.u-box-shadow-lg {
  box-shadow: 0 0.4rem 2.2rem 0 rgba(27, 30, 36, 0.1);
}

/*----------------------------------
  Hero Image
------------------------------------*/
.u-hero-img {
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

/*----------------------------------
  Overlays
------------------------------------*/
.u-overlay {
  position: relative;
}

.u-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.u-overlay--dark::after {
  background-color: rgba(27, 30, 36, 0.3);
}

.u-overlay--light::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.u-overlay__inner {
  position: relative;
  z-index: 1;
}

/*----------------------------------
  Block Alignments
------------------------------------*/
.u-ver-center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate3d(0, -50%, 0);
}

.u-ver-bottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 0, 0);
}

/*----------------------------------
  Typography
------------------------------------*/
/* Font Family */
.u-font-accent {
  font-family: "Playfair Display", serif;
}

/* Font Size */
.u-font-size-75 {
  font-size: 75%;
}

.u-font-size-90 {
  font-size: 90%;
}

/* Letter Spacing */
.u-letter-spacing-xs {
  letter-spacing: 1px;
}

.u-letter-spacing-sm {
  letter-spacing: 2px;
}

/* カテゴリーアイコン表示エリア */
.parent {
    width: 100%;
    text-align: center;         /* 子要素を左右中央揃えにする */
/*    padding:  10px;             /* 余白指定 */
}
.inline-block_icon {
    width: 20%;
    display: inline-block;      /* インラインブロック要素にする */
/*    background-color:  #ccc;    /* 背景色指定 */
    padding:  0 50px 0 50px;             /* 余白指定 */
    height: 90px;              /* 高さ指定 */
    vertical-align:  middle;    /* 要素を上下中央揃えにする */
    font-size: 0.8em;
    letter-spacing: 0.5em;
    border-right: solid 1px;
    border-right-color: #999999;
}
.inline-block_icon:last-child {
    border: none;
}

@media (max-width:992px) {
    .inline-block_icon {
        font-size: 0.7em;
        padding: 0 15px 0 15px;
        height: 65px;              /* 高さ指定 */
        vertical-align:  middle;    /* 要素を上下中央揃えにする */
    }
    .inline-block_icon img {
        width: 75%;
    }
}

@media (max-width:767px) {
    .inline-block_icon {
		width: 30%;
        font-size: 0.6em;
        padding: 0 5px 0 5px;
        height: 65px;              /* 高さ指定 */
        vertical-align:  middle;    /* 要素を上下中央揃えにする */
    }
    .inline-block_icon img {
        width: 75%;
    }
}

@media (max-width:320px) {
    .inline-block_icon {
        font-size: 0.4em;
    }
}


/*----------------------------------
  Others
------------------------------------*/
.u-opacity-1 {
  opacity: .1;
}

.u-opacity-6 {
  opacity: .6;
}

/* 背景色（トライアド) */
.tri_bgcolor_a01{
    background-color: #BECAFA !important;    
}

.tri_bgcolor_a02{
    background-color: #A9C1DE !important;    
}

.tri_bgcolor_a03{
    background-color: #A9DDDE !important;    
}

.tri_bgcolor_a04{
    background-color: #BEFAEB !important;    
}

/* Table */

    .table-wrapper {
    overflow: auto;
    }
    .table-wrapper table{
    width:100%;
    }
    .table-wrapper::-webkit-scrollbar{
    height: 5px;
    }
    .table-wrapper::-webkit-scrollbar-track{
    background: #377252;
    }
    .table-wrapper::-webkit-scrollbar-thumb {
    background: #377252;
    }
    .table-wrapper td, .table-wrapper th{
    white-space: nowrap;
    }

	table {
		margin: 0 auto 0;
/*		margin: 0 0 0.5rem 0; */
		width: 100%;
	}

		table tbody tr {
/*			border: solid 1px; */
			border-left: 0;
			border-right: 0;
		}

		table td {
			padding: 0.75rem 0.75rem;
      text-align: center;
		}

		table th {
			font-size: 1.8rem;
			font-weight: 600;
			padding: 0.75rem 0.75rem;
/*			text-align: left; */
		}

		table thead {
			border-bottom: solid 2px;
		}

		table tfoot {
			border-top: solid 2px;
		}

		table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td {
/*				border: solid 1px; */
				border-left-width: 0;
				border-top-width: 0;
			}

				table.alt tbody tr td:first-child {
					border-left-width: 1px;
				}

			table.alt tbody tr:first-child td {
				border-top-width: 1px;
			}

			table.alt thead {
				border-bottom: 0;
			}

			table.alt tfoot {
				border-top: 0;
			}

	table tbody tr {
		border-color: rgba(142, 191, 225, 0.25);
	}

		table tbody tr:nth-child(2n + 1) {
			background-color: rgba(55, 114, 82, 0.25);
		}

	table th {
		font-size: 1.5rem;
		color: #555555;
	}

	table thead {
		border-bottom-color: rgba(142, 191, 225, 0.25);
	}

	table tfoot {
		border-top-color: rgba(142, 191, 225, 0.25);
	}

	table.alt tbody tr td {
		border-color: rgba(142, 191, 225, 0.25);
	}

/* masonryレイアウト設定 */
.grid {
    margin: 0 auto;
}

.grid-item { 
     width: 300px;
     margin:5px;
     box-sizing:border-box;
     padding:0.5rem;
     font-size:1rem;
     background: white;
     border-radius:5px;
}

@media screen and (min-width: 560px) {
    .grid-item--large { 
         width: 600px;
    }    
}
/* masonryレイアウト設定 */


.f-in {
    display:  block;                /* ブロック要素にする */
    margin: 0 auto;                 /* 要素中央揃え */
    position:  relative;            /* 位置指定 */
    opacity: 0;
  
  /* アニメーション */
  animation: fadeIn 1.5s ease-in-out;
  animation-fill-mode: both;
}
/* ---------------------------- */
/* --- Animation --- */
/* ---------------------------- */
@keyframes fadeIn{
	0%{
		opacity: 0;
        top: 50px;
	}
	100%{
		opacity: 1;
        top: 0;
	}
}

/* 文字列にアンダーアインを入れる */
.under {
  background: linear-gradient(transparent 50%, #ffff00 50%);
}

/* トップページ前半部分 */
.intro_section {
  width: 100%;
  background-image: url(../img/home/background001.png);

}

/* トップページ前半部分 */
.intro_section_sub {
  width: 100%;

}


/* メインロゴ表示部 */
.start_container {
  position: relative;
/*  padding-bottom: 100px; */
}

.logo_title {
    position: absolute;
    top: 30%;
    left: 0px;
    background-color: #377252;
    margin-top: 50px;
	  width: 180px;
    padding: 20px 20px 20px 15px;
    border-radius: 0 20px 20px 0;
    z-index: 9;
    
/*	mix-blend-mode: exclusion; */
}

@media screen and (max-width: 1200px) {
    .logo_title {
      width: 150px;
    }
}

@media screen and (max-width: 980px) {
  .logo_title {
      top: 10%;
      width: 120px;
      padding: 10px 10px 10px 7px;
    }
}

@media screen and (max-width: 767px) {
  .logo_title {
    top: 10%;
    width: 120px;
    padding: 7px 7px 7px 5px;
  }
}

@media screen and (max-width: 600px) {
  .logo_title {
    top: 5%;
    width: 100px;
  }
}

/*==============================================
 メインビジュアル用スライダーのためのCSS
 ==============================================*/
 #vegas_slider {
   margin: 0 auto;
   padding: 0;
   z-index: 1;
   width: 85vw;
   height: 85vh;
   background: #fcfcfc;
   border-radius: 30px;
 }

 .slider-item {
   width: 100vw;
   height: 90vh;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   border-radius: 30px;
 }

 @media screen and (max-width: 1200px) {
   .main_slider {
     width: 90vw;
   }
 }

 @media screen and (max-width: 767px) {
  #vegas_slider {
    width: 90vw;
     height: 100vh;
     border-radius: 30px;
   }
  .slider-item {
    width: 100vw;
    height: 100vh;
    border-radius: 30px;
  }

 }

.next_container {
  width: 100%;
  margin-top: 0px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  background: url(../img/home/bg_fire_img01.png), linear-gradient(to top, rgba(233, 233, 233, 1.0) 0%, rgba(233, 233, 233, 1.0) 80%, rgba(151, 217, 225, 0.0) 80%, rgba(151, 217, 225, 0.0) 100%);  /* 背景画像指定 */
/*  background-repeat:  no-repeat;  /* 背景の繰り返し設定 */
  background-position: center;    /* 背景の位置指定 */ 
/*  background-color: #E9E9E9; */
/* background-image: url("../img/home/bg_fire_img01.png"); */
/*background: linear-gradient(180deg, #E9E9E9 0%, #E9E9E9 70%, #C4AF96 70%, #C4AF96 100%); */
/*  background-size: 100%; */
  background-repeat: repeat-x;
}

.next_container .concept_area {
  position: relative;
  padding: 80px 0 120px 0;
}

.next_container .concept_area .main_logo {
  position: absolute;
  top: 10%;
  left: 15%;
  z-index: 1;
}

.next_container .concept_area .main_logo img {
  width: 340px;
  height: auto;
}

.next_container .concept_area .concept_title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  line-height: 1.5rem;
}
.next_container .concept_area .concept_box a {
  display: block;
/*  background: #fcfcfb; */
/***  background: #ededdf; ***/
  padding: 20px;
}

.next_container .concept_area .concept_box {
  padding: 80px 120px 20px 30px;
/*  padding: 20px; */
/*  background: #fcfcfb; */
/***  background: #ededdf; ***/
}

@media screen and (max-width: 1300px) {

  .next_container .concept_area .main_logo {
    position: absolute;
    top: 10%;
    left: 7%;
  }

}

@media screen and (max-width: 991px) {

  .next_container .concept_area .main_logo {
    position: absolute;
    top: -13%;
    /* absolute 中央寄せ */
    left: calc(50% - 150px);
  }
  
  .next_container .concept_area .main_logo img {
    width: 300px;
    height: auto;
  }

 .next_container .concept_area .concept_box {
    padding: 100px 80px 20px 80px;
/*    padding: 40px; */
  /*  background: #fcfcfb; */
  /***  background: #ededdf; ***/
  }
  
}

@media screen and (max-width: 767px) {

  .next_container .concept_area .main_logo {
    position: absolute;
    top: -5%;
    /* absolute 中央寄せ */
    left: calc(50% - 140px);
  }
  
  .next_container .concept_area .main_logo img {
    width: 280px;
    height: auto;
  }

 .next_container .concept_area .concept_box {
    padding: 140px 80px 20px 80px;
/*    padding: 40px; */
  /*  background: #fcfcfb; */
  /***  background: #ededdf; ***/
  }
  
}

@media screen and (max-width: 500px) {

  .next_container {
    margin-top: -80px;
    background-repeat: repeat-x;
  }
  
  .next_container .concept_area {
    position: relative;
    padding: 80px 0 120px 0;
  }
  
  .next_container .concept_area .main_logo {
    position: absolute;
    top: 5%;
    /* absolute 中央寄せ */
    left: calc(50% - 100px);
  }
  
  .next_container .concept_area .main_logo img {
    width: 200px;
    height: auto;
  }
  .next_container .concept_area .concept_box {
    padding: 140px 20px 20px 20px;
  }

  .next_container .concept_area .concept_box h3 {
    font-size: 1.7rem;
  }

}

/***********************/
/* 火とお酒紹介導入部エリア */
/***********************/
.introduce_area {
  background-color: #fcfcfb;
  padding: 100px 0 100px;
}

.introduce_sub_area {
  background: url("../img/home/intro_room_bgimg.jpg");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.introduce_sub_area_contents {
  padding: 50px;
  margin: 0 0 0 auto;
  background-color: #fff;
  opacity: 0.9;
  height: 100%;
  width: 40%;
}

.introduce_sub_area_contents h2 {
  margin: 40px 0 50px 0;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.4rem;
  line-height: 3.2rem;
  font-family: 'Oswald', sans-serif;
  font-family: 'Shippori Mincho', serif;
}

.introduce_sub_area_contents p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  line-height: 2.2rem;
  font-family: 'Oswald', sans-serif;
  font-family: 'Shippori Mincho', serif;
}

@media screen and (max-width: 1200px) {
  .introduce_sub_area_contents h2 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.3rem;
    line-height: 3.0rem;
  }    
}

@media screen and (max-width: 940px) {
  .introduce_sub_area_contents h2 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    line-height: 2.5rem;
  }

  .introduce_sub_area_contents p {
    font-size: 1.0rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    line-height: 1.8rem;
  }
  
}

@media screen and (max-width: 800px) {
  .introduce_sub_area_contents {
    padding: 30px;
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .introduce_sub_area_contents {
    padding: 30px;
    opacity: 0.8;
    width: 100%;
  }
}

/***********************/
/* 宿コンセプト＆全体特徴紹介エリア */
/***********************/
.conceptinfo_area {
  position: relative;
  width: 100%;
  margin: 0;
}

.conceptinfo_area .name_logo {
  position: absolute;
  bottom: -8%;
  left: -25%;
}

.conceptinfo_area .name_logo img {
  width: 400px;
  height: auto;
}

.conceptinfo_area_title h3 {
  margin: 20px auto;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 2.2rem;
  font-family: "Noto Sans JP", "Open Sans", sans-serif;
}

.conceptinfo_area_title p {
  margin: 40px 0;
}

.conceptinfo_area_contents {
  padding: 30px 0 0;
/*  background-color: #f0e6e2; */
  background: linear-gradient(180deg, #e9e9e9 0%, #e9e9e9 30%, #b4c3cb 30%, #b4c3cb 100%);
}

.conceptinfo_area_contents p {
  padding: 20px 0;
  font-size: 1.0rem;
  letter-spacing: 0.2rem;
  line-height: 1.8rem;
  font-weight: 900;
}

/* 横スクロールバナー表示エリア設定　*/
.scroll_content {
  display: flex;
  max-width: 1485px;
  margin: auto;
  overflow-x: auto;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;  
}

/*スクロールバー非表示（Chrome・Safari）*/
.scroll_content::-webkit-scrollbar{
  display:none;
}

.scroll_content li {
  width: 90%;
  padding: 8px;
  margin: 3px;
  flex-shrink: 0;
  list-style: none;
}

.scroll_content img {
  width: 100%;
  max-height: 225px;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .conceptinfo_area .name_logo {
    bottom: -8%;
    left: 3%;
  }  
}

@media screen and (max-width: 600px) {  
  .conceptinfo_area .name_logo {
    bottom: -5%;
  }  

  .conceptinfo_area .name_logo img {
    width: 300px;
    height: auto;
  }
}

@media screen and (min-width: 450px) {
  .scroll_content li {
    width: 45%;
  }
}


/*******************************/
/* ここから コンセプト詳細2分割スタイル */
/*******************************/
.conceptdetail_area {
  width: 100%;
  margin: 0 auto;
}

.conceptdetail_area_contents {
  position: relative;
  margin: 80px 40px;
  padding: 40px 40px 20px;
}

.conceptdetail_area_contents .conceptdetail_txt {
  padding: 0 50px;
}

.conceptdetail_area_contents .conceptdetail_txt h3 {
  margin: 20px auto;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  line-height: 2.2rem;
}

.conceptdetail_area_contents .conceptdetail_txt p {
  padding: 20px 0;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  line-height: 1.8rem;
  font-weight: 900;
}

@media screen and (max-width: 600px) {
  .conceptdetail_area_contents {
    margin: 80px 20px;
    padding: 40px 20px 20px;
  }

  .conceptdetail_area_contents .conceptdetail_txt {
    padding: 40px 0 40px 0;
  }
  }


/*******************************/
/* ここから 赤背景エリアのスタイル */
/*******************************/
.bonfire_area {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #c11732;
  color: #fff;
/*  background: linear-gradient(180deg, #fcfcfc 0%, #fcfcfc 30%, #90828e 30%, #90828e 100%); */
}

.bonfire_area .fire_logo {
  position: absolute;
  top: -30%;
  left: 13%;
  opacity: 0.7;
}

.bonfire_area .fire_logo img {
  width: 400px;
  height: auto;
}

.bonfire_area_contents {
  position: relative;
/*  margin: 80px 40px; */
  padding: 120px 40px 80px;
/*  background-color: #c3a59e; */
}

.bonfire_area_contents .bonfire_img {
  top: 0px;
  left: 0px;
}

.bonfire_area_contents .bonfire_txt {
  padding: 0 40px;
}

.bonfire_area_contents .bonfire_txt h3 {
  margin: 20px auto;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  line-height: 2.2rem;
/*  font-family: 'Shippori Mincho', serif; */
}

.bonfire_area_contents .bonfire_txt p {
  padding: 20px 0;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  line-height: 1.8rem;
  font-weight: 900;
}

@media screen and (max-width: 991px) {
  .bonfire_area .fire_logo {
    top: -15%;
    left: calc(50% - 175px);
  }
  
  .bonfire_area .fire_logo img {
    width: 350px;
    height: auto;
  }
}

@media screen and (max-width: 600px) {

  .bonfire_area .fire_logo {
    top: -20%;
    left: calc(50% - 150px);
  }
  .bonfire_area .fire_logo img {
    width: 300px;
    height: auto;
  }

  .bonfire_area_contents {
    margin: 80px 20px;
    padding: 40px 20px 20px;
  }

  .bonfire_area_contents .bonfire_txt {
    padding: 0;
  }
  }

/*******************************/
/* ここから アクセス情報表示部スタイル */
/*******************************/
.info_access {
  width: 100%;
  margin: 0 0 150px 0;
  position: relative;
  background: linear-gradient(90deg, #c11732 0%, #c11732 20%, #fff4db 20%, #fff4db 100%);
  color: #000;
}

.info_access .container .mapinfo {
/*  margin-top: 60px; */
  padding-top: 60px;
  margin-bottom: -60px;
  filter: grayscale(85%);

}

.info_access .text {
  padding: 40px 40px 20px;
}

.info_access .text p {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
}

.info_access h3 {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 2.2rem;
  font-weight: 900;
}

.info_access .mapinfo iframe {
  margin-left: 0;
  width: 100%;
  height: 500px;
  vertical-align: bottom;
}

@media (min-width: 768px) {
  .info_access .container {
    display: flex;
    max-width: 1920px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
  }

  .info_access .mapinfo {
    flex: 6;
  }

  .text {
    flex: 4;
    padding: 50px;
  }
}


@media (max-width: 500px) {

  .info_access .container {
    padding-top: 40px;
  }
  
}
/*******************************/
/* ここまで アクセス情報表示部スタイル */
/*******************************/

/**************************************/
/* START 各スポット・リスト表示レイアウト用 */
/**************************************/
.fdb-block {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  padding: 0.5rem 0 7.5rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
  .fdb-block .container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    .fdb-block .container.bg-r {
      background-position: right; }
  .fdb-block.fdb-viewport {
    min-height: calc(100% - 2 * 7.5rem); }
    .fdb-block.fdb-viewport .container {
      min-height: calc(100% - 2 * 7.5rem); }
  .fdb-block.fdb-image-bg {
    color: #f2f2f2; }
  .fdb-block .fdb-box {
    background: #FFFFFF;
    padding: 3.75rem 2.5rem;
    overflow: hidden;
    color: #444444;
    border-radius: 0.25rem;
    box-shadow: 0 0.3125rem 0.875rem 0 rgba(129, 129, 129, 0.2) !important; }
  .fdb-block .fdb-touch {
    border-top: solid 0.3125rem #329ef7;
    z-index: 2; }
  .fdb-block img + p, .fdb-block img + h3, .fdb-block img + h4 {
    margin-top: 1.25rem; }
  .fdb-block img + h1, .fdb-block img + h2 {
    margin-top: 2.5rem; }
  .fdb-block .col-fill-left {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1; }
    .fdb-block .col-fill-left + div {
      position: relative;
      z-index: 2; }
  .fdb-block .col-fill-right {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1; }
    .fdb-block .col-fill-right + div {
      position: relative;
      z-index: 2; }
  .fdb-block img.fdb-icon {
    width: auto;
    width: 3.75rem; }
  .fdb-block img.fdb-icon-round {
    width: auto;
    width: 3.75rem; }
  .fdb-block .row-100 {
    height: 6.25rem;
    width: 100%; }
  .fdb-block .row-50 {
    height: 3.125rem;
    width: 100%; }
  .fdb-block .row-70 {
    height: 4.375rem;
    width: 100%; }

    .spot_desc {
        margin-top: 10px;
        letter-spacing: 0.2rem;
        line-height: 1.2rem;
        font-size: 0.8rem;
        font-weight: 400;
    }

    .spot_access {
        letter-spacing: 0.1rem;
        line-height: 1.2rem;
        font-size: 0.7rem;
        font-weight: 300;    
    }


/**************************************/
/*  END  各スポット・リスト表示レイアウト用 */
/**************************************/


/* 2分割カテゴリーバナー部 */
.items {
	width: 80%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.item {
    display: flex;
    flex-direction: column;
}

.items .item {
  width: 50%;
}

.flex-btn {
    margin-top: auto;
    margin-bottom: 30px;
}

.item-title {
	font-family: 'Amiko', sans-serif;
    letter-spacing: 0.1rem;
    line-height: 1.4rem;
    font-size: 2.7rem;
    font-weight: 400;
    text-align: center;
	margin: 150px auto 5px auto;
   
}

.item-text {
	text-align: center;
    padding: 10px 20px;
    letter-spacing: 0.3rem;
    line-height: 1.4rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: #555555;
}

.category_cl0 {
	background-color: #4db1ec;
    background-image: url("../img/home/about_img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
    background-size: cover;
	background-blend-mode: screen;
/*	height: 100vh; */
	display: flex;
	align-items: center;
    min-height: 400px;
}

.category_cl1 {
	background-color: #4db1ec;
    background-image: url("../img/home/service_img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
    background-size: cover;
	background-blend-mode: screen;
/*	height: 100vh; */
	display: flex;
	align-items: center;
    min-height: 400px;
}

.category_cl2 {
	background-color: #4db1ec;
    background-image: url("../img/home/recruit_img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
    background-size: cover;
	background-blend-mode: screen;
/*	height: 100vh; */
	display: flex;
	align-items: center;
    min-height: 400px;
}

.category_cl3_1 {
	background-color: #4db1ec;
    background-image: url("../img/home/villege_img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
    background-size: cover;
	background-blend-mode: screen;
/*	height: 100vh; */
	display: flex;
	align-items: center;
    min-height: 400px;
}

.category_cl3_2 {
	background-color: #4db1ec;
    background-image: url("../img/home/viewspot_img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
    background-size: cover;
	background-blend-mode: screen;
/*	height: 100vh; */
	display: flex;
	align-items: center;
    min-height: 400px;
}

.category_cl3 {
	background-color: #93d6a4;
    background-image: url("../img/home/toshima_img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
    background-size: cover;
	background-blend-mode: screen;
	display: flex;
	align-items: center;
    min-height: 500px;
}

/* 1分割カテゴリーバナー部 */
.items_full {
	width: 80%;
    margin-top: 0;
    margin-bottom: 80px;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.item_full {
	display: flex;
    flex-direction: column;
}

.items_full .item_full {
	width: 100%;
}

.flex-btn_full {
    margin-top: auto;
    margin-bottom: 130px;
}

.item-title_full {
	font-family: 'Amiko', sans-serif;
    letter-spacing: 0.1rem;
    line-height: 1.4rem;
    font-size: 2.7rem;
    font-weight: 400;
    text-align: center;
	margin: 150px auto 5px auto;
   
}

.item-text_full {
	text-align: center;
    padding: 10px 20px;
    letter-spacing: 0.3rem;
    line-height: 1.4rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: #555555;
}

@media (max-width:600px) {
   .items {
       flex-wrap: wrap;
	   width: 100%;
    }

	.item-title {
		letter-spacing: 0.1rem;
		line-height: 1.4rem;
		font-size: 1.8rem;
		font-weight: 300;
		text-align: center;
		margin: 50px auto 5px auto;

	}

	.item-text {
		text-align: center;
		padding: 10px 20px;
		letter-spacing: 0.2rem;
		line-height: 1.2rem;
		font-size: 0.8rem;
		font-weight: 400;
		color: #555555;
	}
	
   .items_full {
       flex-wrap: wrap;
	   width: 100%;
    }

	.item-title_full {
		letter-spacing: 0.1rem;
		line-height: 1.4rem;
		font-size: 1.8rem;
		font-weight: 300;
		text-align: center;
		margin: 70px auto 5px auto;

	}

	.item-text_full {
		text-align: center;
		padding: 30px 20px;
		letter-spacing: 0.2rem;
		line-height: 1.2rem;
		font-size: 0.8rem;
		font-weight: 400;
		color: #555555;
	}

	.flex-btn_full {
		margin-top: auto;
		margin-bottom: 50px;
	}

	.category_cl0,
	.category_cl1,
	.category_cl2,
	.category_cl3_1,
	.category_cl3_2 {
		min-height: 100px;
	}

	.category_cl3 {
		min-height: 120px;
	}
	
	.items .btntextchange,
	.items_full .btntextchange {
		min-width: 130px;
	}
    
}

.story_main_box {
	background: linear-gradient(135deg, #FCBA98 0%, #FCBA98 20%, #FCFCFC 20%, #FCFCFC 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
@media (max-width:980px) {
	.story_main_box {
		background: linear-gradient(135deg, #FCBA98 0%, #FCBA98 10%, #FCFCFC 10%, #FCFCFC 100%);
	}
}

/* 個別記事見出し */
.story_box {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}
@media (max-width:767px) {
	.story_box {
		display: block;
	}
}

/* 背景-ナナメストライプ */
.bg_stripe {
    background-size: 40px 40px;
    background-image:
        linear-gradient(
        -45deg,
        #fff 25%,
        #f1f8f9 25%, #f1f8f9 50%,
        #fff 50%, #fff 75%,
        #f1f8f9 75%, #f1f8f9
        );
}

/* 背景-水玉 */
.bg_dot {	
	background-color: #fff;
	background-image: radial-gradient(#F3D6CF 30%, rgba(241,248,249,1) 30%);
	background-size: 20px 20px;
}

.bg_skew_dot{
  background-color: #f1f8f9;
  background-image:
    radial-gradient(#F3D6CF 20%, rgba(255,255,255,0) 20%),
    radial-gradient(#F3D6CF 20%, rgba(255,255,255,0) 20%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

.footer_info {
    letter-spacing: 0.1rem;
    line-height: 1.2rem;
    font-size: 0.8rem;
    font-weight: 400;    
}

/**************************/
/* 各カテゴリーグリット表示部 */
/**************************/
.grid_list {
    padding: 5rem 3rem 10rem;
}

.deco_base {
    position: relative;
}

.deco_child {
    position: absolute;
    top: -5%;
    left: 0%;
}

/* カテゴリーアイコン装飾用 */
.deco_icon {
    width: 100px;
    position: absolute;
    top: 30%;
    left: 70%;
}

.deco_icon img {
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
.deco_icon {
    width: 70px;
    top: 25%;
	}
	.doco_icon img {
		width: 50%;
	}
}
/* ↑ カテゴリーアイコン装飾用　↑ */

/* トップページ「本日の運行状況等」アイコン表示用 */
.top_status_icon {
    width: 120px;
    position: absolute;
    top: 5rem;
    right: 10%;
}

.top_status_icon img {
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
.top_status_icon {
    width: 100px;
    top: 6rem;
/*    width: 50%; */
/*    top: 25%; */
	}
}
/* ↑ トップページ「本日の運行状況等」アイコン表示用　↑ */

/* トップページ「あんこプロジェクトページ」リンクアイコン表示用 */
.top_anko_icon {
    width: 120px;
    position: absolute;
    top: 5rem;
    left: 10%;
}
.top_anko_icon img {
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
.top_anko_icon {
    width: 100px;
    top: 6rem;
	}
}
/* ↑ トップページ「あんこプロジェクトページ」リンクアイコン表示用　↑ */


/*.item_title {
    background-color: #efefef;
    padding: 5px 10px;
} */

.item_title {
  position: relative;
  padding: 0.5rem 1.5rem calc(0.5rem + 10px);
/*  border: 2px solid #fff; */
  background-color: rgba(52,106,149,0.8);
  color: #ffffff;
}

.item_title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  border-top: 2px solid #fff;
  background-image: -webkit-repeating-linear-gradient(135deg, #fff, #fff 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ２分割レイアウト */
.divide_box {
    position: relative;
    padding: 20px;
}

.dv_box_child {
    position: absolute;
    top: 0%;
    left: 0%;
}


/* トップページアイコンリンク */
.linkbox {
    position: relative;
}
.linkbox a {
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
}

/* 以下見た目をわかりやすくするための設定*/
.linkbox a:hover{/* マウスオーバー時に色変更*/
    opacity: 0.1;
    background-color: #E77B9F;
}

/* カードアイコンリンク */
.area_linkbox {
    position: relative;
}
.area_linkbox a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
}

/* 以下見た目をわかりやすくするための設定*/
.area_linkbox a:hover{/* マウスオーバー時に色変更*/
    opacity: 0.7;
    background: -webkit-repeating-linear-gradient(-180deg,#badde2 0,#badde2 10px,#fff 10px,#fff 20px);
    background: -o-repeating-linear-gradient(-180deg,#badde2 0,#badde2 10px,#fff 10px,#fff 20px);
    background: repeating-linear-gradient(-180deg,#badde2 0,#badde2 10px,#fff 10px,#fff 20px);
}

/* 囲み枠 */
.box_ptn01 {
    position: relative;
    margin: 4em 0 0;
    padding: 1.5em 2em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.box_ptn01 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 25px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box_ptn01 p {
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
    margin: 0; 
    padding: 1em;
}

.box_ptn01 li {
	font-size: 1.0rem;
	letter-spacing: 0.1rem;
    margin: 0; 
    padding: 0.5em;
}

@media (max-width:480px) {
	.box_ptn01 {
		margin: 1em 0 0;
		padding: 1em 1em;
	}
	.box_ptn01 .box-title {
		font-size: 18px;
	}
	.box_ptn01 p {
		font-size: 0.9rem;
	}
	.box_ptn01 li {
		font-size: 0.8rem;
	}	
}

/* ニュース１行の周りの余白 */
.news_list {
	margin-top: 40px;
}

.slider a {
	display: block;
	background: #fff;
	padding: 20px;
}

/* 日付 */
.slider span {
    font-family: 'Amiko', sans-serif;
	display:inline-block;
	font-size:1rem;
	margin-right: 10px;
	color:#777;
}


/* サブページの見出しTEXT */
.sub_page_main_title {
    color: #004263;
	font-size: 3.5rem;
	font-weight: 500;
	line-height: 3.8rem;
	letter-spacing: 0.5rem;
}
.sub_page_top_title {
    color: #333;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 3.8rem;
	letter-spacing: 0.3rem;
}
.sub_page_title {
    color: #333;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.8rem;
	letter-spacing: 0.2rem;
}
.sub_page_disc {
    color: #333;
	font-size: 1.0rem;
	font-weight: 400;
	line-height: 1.5rem;
	letter-spacing: 0.2rem;
}
@media (max-width:480px) {
	.sub_page_main_title {
		font-size: 2.0rem;
		font-weight: 500;
		line-height: 2.5rem;
		letter-spacing: 0.1rem;
	}
	.sub_page_top_title {
		font-size: 1.8rem;
		font-weight: 500;
		line-height: 2.5rem;
		letter-spacing: 0.2rem;
	}
	.sub_page_title {
		font-size: 0.8rem;
		font-weight: 500;
		line-height: 1.2rem;
		letter-spacing: 0.1rem;
	}
	.sub_page_disc {
		color: #333;
		font-size: 0.7rem;
		font-weight: 400;
		line-height: 1.5rem;
		letter-spacing: 0.1rem;
	}
}

/* カルーセルスライド部分の文字重ね位置指定 */
.target_img {
	position: relative;
}

.text_posi {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 85%;
	background-color: #000000;
	color: #ffffff;
	padding: 15px;
	font-size: 1.0rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
}

@media screen and (max-width: 767px) {
	.text_posi {
		padding: 5px;
		font-size: 0.8rem;
		font-weight: 400;
	}
}

/* gurtenbergを使用して画像を差し込んだ際に縦伸びしたものをアス比を維持 */
.wp-block-image img {
  max-width: 100%;
  height: auto!important;
}

/* フェードイン、右から左へスライドインアニメーション */
.fadeIn {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  animation-name: fadeInAnime;
  animation-fill-mode: backwards;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-direction: normal;
  opacity: 0;
}

@keyframes fadeInAnime {
  0% {
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
    transform: translateX(80px);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/*---------------------------------
お知らせ一覧用 styleSheet
----------------------------------*/
.concept_area .concept_box {
	margin: 40px 0 60px;
	padding: 80px 120px 20px 50px;
/*	background: #fff; */
}

.concept_box a {
	display: block;
/*	background: #fff; */
	padding: 20px;
}

.concept_box h3 {
  font-size: 2.3rem;
  letter-spacing: 0.2rem;
  font-weight: 900;
  margin: 20px 0 40px 0;
}

p.main_text {
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  line-height: 2.0rem;
  font-weight: 600;
}

/* サブページのメインビジュアルタイトル部のサイズ調整 */
@media screen and (max-width: 600px) {
  .mv_title img {
    width: 200px;
    height: auto;
  }
}


/*****************************/
/* 100%幅の30%：70%レイアウト部 */
/*****************************/
.topics_area {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.topics_area .topics_title {
  margin: 0 auto;
  padding: 50px 0 30px;
}

.topics_area .topics_title h1 {
  font-size: 4.5em;
  font-weight: bold;
  color: #0a4986;
  text-align: center;
}

.topics_area .basic_info {
  margin: 0;
  background-color: #fff;
}

.topics_area .banner_screen {
  position: relative;
  max-width: 990px;
  padding: 0;
  margin: 0;
}

/*****
.banner_screen iframe {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
*****/

.topics_area .topics_info {
  padding: 50px;
}

.topics_area .topics_info h2 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
}

.topics_area .topics_info h3 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  line-height: 1.0rem;
}

.topics_area .topics_info .basic_info {
  padding: 20px 0px 0px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8rem;
}

.topics_area .topics_info .em_text {
	font-size: 2.5rem;
	font-weight: 900;
	font-family: "Noto Sans JP", "Open Sans", sans-serif;
}

@media screen and (max-width: 600px) {
  .topics_area {
    background-size: 350px;
    background-position: top right 20%;
  }
  
  .topics_area .topics_title {
    margin: 0 auto;
    padding: 30px 0 30px;
  }
  
  .topics_area .topics_title h1 {
    font-size: 3.5em;
    font-weight: bold;
    text-align: center;
  }
  
  .topics_area .basic_info {
    margin: 0;
    background-color: #fff;
  }
  
  .topics_area .map_screen {
    position: relative;
    max-width: 900px;
    margin: 0;
  }
  
/*****
  .banner_screen iframe {
    width: 100%;
    height: 100%;
    margin: 0;
  }
*****/
  
  .topics_area .topics_info {
    padding: 50px;
  }
  
  .topics_area .topics_info h2 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    line-height: 2.4rem;
  }
  
  .topics_area .topics_info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    line-height: 2.0rem;
  }
	
  .topics_area .topics_info .em_text {
	font-size: 1.5rem;
	font-weight: 900;
  }
}


/******************************/
/***  アクセスページスタイル設定  ***/
/******************************/
.map_area iframe {
  margin: 0 auto;
  width: 100%;
  height: 500px;
  filter: grayscale(85%);
}

/* モーダル制御 */
/* モーダルのボタンの色を変更したい場合 */
.modaal-close:after, 
.modaal-close:before{
  background:#ccc;  
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}

/******************************/
/* サブページスタイル指定 */
/******************************/
.sub_page_container {
  width: 100%;
  margin-top: 80px;
  padding-top: 20px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  background: url(../img/home/bg_fire_img01.png), linear-gradient(to top, rgba(233, 233, 233, 1.0) 0%, rgba(233, 233, 233, 1.0) 90%, rgba(151, 217, 225, 0.0) 90%, rgba(151, 217, 225, 0.0) 100%);  /* 背景画像指定 */
  background-position: 130px 200px;    /* 背景の位置指定 */ 
  background-repeat: repeat-x;
}

.sub_page_container .concept_area {
  position: relative;
  padding: 80px 0 40px;
}

.sub_page_container .concept_area .concept_title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  line-height: 1.5rem;
}
.sub_page_container .concept_area .concept_box a {
  display: block;
/*  background: #fcfcfb; */
/***  background: #ededdf; ***/
  padding: 20px;
}

.sub_page_container .concept_area .concept_box {
  padding: 30px 100px 20px 30px;
/*  padding: 20px; */
/*  background: #fcfcfb; */
/***  background: #ededdf; ***/
}

.sub_page_container .concept_area .concept_box p.main_text {
  font-size: 1.0rem;
  letter-spacing: 0.2rem;
  line-height: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}


@media screen and (max-width: 991px) {

 .sub_page_container .concept_area .concept_box {
    padding: 250px 80px 20px 80px;
/*    padding: 40px; */
  /*  background: #fcfcfb; */
  /***  background: #ededdf; ***/
  }
  
}

@media screen and (max-width: 767px) {

 .sub_page_container .concept_area .concept_box {
    padding: 240px 80px 20px 80px;
/*    padding: 40px; */
  /*  background: #fcfcfb; */
  /***  background: #ededdf; ***/
  }
  
}

@media screen and (max-width: 500px) {

  .sub_page_container {
    margin-top: 20px;
    background-repeat: repeat-x;
  }
  
  .sub_page_container .concept_area {
    position: relative;
    padding: 80px 0 120px 0;
  }
  .sub_page_container .concept_area .concept_box {
    padding: 140px 20px 20px 20px;
  }

  .sub_page_container .concept_area .concept_box h3 {
    font-size: 1.7rem;
  }

}

.information_box {
  padding: 40px 0 20px;
  display: flex;
}

.information_box .box27 {
  flex: 1;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.box27 {
  position: relative;
  margin: 3rem 0.5rem 1rem;
  padding: 0.5em 1em;
  border-right: solid 3px #c11732;
  border-bottom: solid 3px #c11732;
/*  background: #62c1ce; */
  color: #c11732;
  border-radius: 0 50px 50px 0;
}
.box27 .box-title {
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 12px;
  height: 25px;
  line-height: 25px;
  font-size: 1.2rem;
  color: #c11732;
  font-weight: bold;
}
.box27 p {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 900;
}

@media screen and (max-width: 500px) {
  .information_box {
    display: block;
  }

  .box27 p {
    font-size: 1.0rem;
  }
  
}

.fadeUpTrigger{
  opacity: 0;
}

.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.fadeRightTrigger{
  opacity: 0;
}

.fadeRight{
  animation-name: fadeRightAnime;
  animation-duration: 1.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeLeftTrigger{
  opacity: 0;
}

.fadeLeft{
  animation-name: fadeLeftAnime;
  animation-duration: 1.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner_badge {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 9999;
	transition: 0.3s;
}

.banner_badge:hover {
	opacity: 0.7;
	transform: rotate(45deg);
}

.banner_badge img {
	width: 120px;
	height: auto;
}

/**********************************/
/*  トップページメインビジュアル上のタイトル */
/**********************************/
.outer{
  position: relative;
}

.inner{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.inner h1 {
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.2rem;
  font-size: 2.3rem;
}

.inner img {
  width: 450px;
  height: auto;
}

@media screen and (max-width: 500px) {
  .inner h1 {
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.15rem;
    font-size: 1.5rem;
  }
  
  .inner img {
    width: 300px;
    height: auto;
  }
  
}