@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font: 10px/1.6 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif, Verdana;
  font-weight: 400;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

html {
  color: #3b4043;
  background: #fff;
  font-size: 62.5%;
  line-height: 1.6;
  word-break: break-all;
}

body {
  background: #fff;
  margin: 0;
}

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

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.outer-block {
  min-width: 1005px;
}

.inner-block {
  position: relative;
  width: 965px;
}
@media only screen and (min-width: 768px) {
  .inner-block {
    margin: 0 auto;
  }
}

#wrapper {
  position: relative;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  a,
a::before,
a::after,
button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }

  .outer-block {
    min-width: 320px;
  }

  .inner-block {
    padding: 0 10px;
    width: auto;
  }

  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }

  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }

  input,
select,
textarea {
    font-size: 16px !important;
  }

  .pc {
    display: none !important;
  }
}
/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
.anm-list > * {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes ballDrop {
  60% {
    -webkit-transform: translate(0, 20px) rotate(-180deg) scale(0.5);
            transform: translate(0, 20px) rotate(-180deg) scale(0.5);
  }
  100% {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
            transform: translate(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
@keyframes ballDrop {
  60% {
    -webkit-transform: translate(0, 20px) rotate(-180deg) scale(0.5);
            transform: translate(0, 20px) rotate(-180deg) scale(0.5);
  }
  100% {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
            transform: translate(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
@media not print {
  .anm {
    opacity: 0;
  }

  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
            animation: fadeIn 1.5s forwards;
  }

  .anm-up {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }

  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
            animation: fadeInUp 1.5s forwards;
  }

  .anm-left {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    opacity: 0;
  }

  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
            animation: fadeInLeft 1.5s forwards;
  }

  .anm-right {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
  }

  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
            animation: fadeInRight 1.5s forwards;
  }
}
/*------------------------------------------------------------------------------
  gallery
------------------------------------------------------------------------------*/
.p-gallery-kv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 180px;
  background: url(https://toto.imagewave.pictures/%2Freform%2Fcampaign%2Fanshin-stories%2Fimg%2Fkv_bg_01.png) no-repeat center/cover #f9f9f9;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-gallery-kv {
    height: 24vw;
    min-height: 90px;
  }
}
.p-gallery-kv::before, .p-gallery-kv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(#193189), color-stop(50%, #193189), color-stop(50%, #51b847), to(#51b847));
  background-image: linear-gradient(to right, #193189, #193189 50%, #51b847 50%, #51b847);
}
@media only screen and (max-width: 767px) {
  .p-gallery-kv::before, .p-gallery-kv::after {
    height: 5px;
  }
}
.p-gallery-kv::before {
  top: 0;
}
.p-gallery-kv::after {
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-gallery-kv-ttl .ja {
  font-size: 2.9rem;
  line-height: 1.4;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .p-gallery-kv-ttl .ja {
    font-size: 1.4rem;
  }
}
.p-gallery-kv-ttl .cat {
  margin-top: 5px;
  padding: 0 8px;
  font-size: 1.3rem;
  height: 24px;
  line-height: 24px;
  position: relative;
  display: inline-block;
  background-color: #9cc715;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-gallery-kv-ttl .cat {
    padding: 3px 4px;
    font-size: 0.8rem;
    height: 14px;
    line-height: 1;
  }
}
.p-gallery-kv-ttl .cat::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  border-style: solid;
  border-color: transparent;
  border-left-color: #9cc715;
  right: -24px;
  border-width: 12px;
}
@media only screen and (max-width: 767px) {
  .p-gallery-kv-ttl .cat::after {
    right: -14px;
    border-width: 7px;
    border-color: transparent;
    border-left-color: #9cc715;
  }
}
.p-gallery-cont {
  padding: 24px 0 56px;
}
.p-gallery-bnr {
  width: 800px;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-gallery-bnr {
    width: 100%;
  }
}
.p-gallery-article {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .p-gallery-article {
    margin-top: 20px;
  }
}
.p-gallery-article-ttl {
  font-weight: bold;
  color: #414141;
  border-bottom: solid #13449d 1px;
}
@media only screen and (min-width: 768px) {
  .p-gallery-article-ttl {
    font-size: 2.6rem;
    padding-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .p-gallery-article-ttl {
    font-size: 1.6rem;
    padding-bottom: 8px;
    text-align: left;
  }
}
.p-gallery-article-txt {
  font-size: 1.4rem;
  padding-top: 30px;
  color: #414141;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .p-gallery-article-txt {
    font-size: 1.2rem;
    padding-top: 10px;
  }
}
.p-gallery-article-list {
  font-size: 0;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .p-gallery-article-list li {
    display: inline-block;
    width: 465px;
    vertical-align: top;
  }
  .p-gallery-article-list li:nth-child(even) {
    margin-left: 30px;
  }
  .p-gallery-article-list li:nth-child(n+3) {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .p-gallery-article-list li {
    width: 100%;
  }
  .p-gallery-article-list li + li {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .p-gallery-article-list a:hover .img {
    -webkit-box-shadow: 0px 1px 16px #13449d;
            box-shadow: 0px 1px 16px #13449d;
  }
}
.p-gallery-article-list .img {
  border-radius: 15px;
  -webkit-box-shadow: 0px 1px 5px #888;
          box-shadow: 0px 1px 5px #888;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  position: relative;
}
.p-gallery-article-list .img::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 60px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #13459e;
}
@media only screen and (max-width: 767px) {
  .p-gallery-article-list .img::before {
    width: 24px;
    height: 50px;
  }
}
.p-gallery-article-list .img::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  border: 2px solid #fff;
  border-right: none;
  border-top: none;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition: 0.6s cubic-bezier;
  transition: 0.6s cubic-bezier;
}
@media only screen and (max-width: 767px) {
  .p-gallery-article-list .img::after {
    right: 10px;
    width: 6px;
    height: 6px;
  }
}
.p-gallery-article-list .img img {
  width: 100%;
}
.p-gallery-article-list .info {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .p-gallery-article-list .info {
    margin-top: 10px;
  }
}
.p-gallery-article-list .ttl {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #414141;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .p-gallery-article-list .ttl {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}
.p-gallery-article-list .txt {
  font-size: 1.4rem;
  color: #414141;
}
@media only screen and (max-width: 767px) {
  .p-gallery-article-list .txt {
    font-size: 1.2rem;
  }
}
.p-gallery-past {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .p-gallery-past {
    margin-top: 30px;
  }
}
.p-gallery-past li {
  vertical-align: top;
  width: 240px;
}
@media only screen and (min-width: 768px) {
  .p-gallery-past li + li a {
    border-left: none;
  }
  .p-gallery-past li:nth-child(n+5) {
    margin-top: 20px;
  }
  .p-gallery-past li:nth-child(4n+1) a {
    border-left: 1px solid #dadada;
  }
}
@media only screen and (max-width: 767px) {
  .p-gallery-past li {
    width: 50%;
  }
  .p-gallery-past li:nth-child(n+3) {
    margin-top: 10px;
  }
  .p-gallery-past li:nth-child(even) a {
    border-left: none;
  }
}
.p-gallery-past li a {
  display: block;
  position: relative;
  background: #fff;
  border: solid 1px #dadada;
}
.p-gallery-past li .info {
  display: table-cell;
  vertical-align: middle;
  height: 160px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-width: 1px 1px 0;
}
.p-gallery-past li .ttl {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .p-gallery-past li .ttl {
    font-size: 14px;
  }
}
.p-gallery-past li .img {
  border-top: solid 1px #dadada;
}
.p-gallery-past li .img img {
  width: 100%;
}

#know-detail .know-list {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  width: 239px;
  margin-top: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  *display: inline;
  *zoom: 1;
}