@charset "UTF-8";

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  font-family: 'メイリオ', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Cambria Math','Avenir',sans-serif;
  color: #242424;
  padding: 0;
  margin: 0;
}

body#text p {
  line-height: 2em;
}

#kaniicon{
  margin-top: 50px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
}
#name_jp{
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
#name_en{
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}
dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

dl dd,
dl dt {
  display: block;
}

.row {
  text-align: center;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  -webkit-transition: .2s;
  transition: .2s;
}

a:hover {
  color: rgb(50, 124, 235);
}

p, dl {
  font-size: 17px;
  padding-left: 0px;
  line-height: 1.8em;
}

.sns{
  padding-top: 15px;
  display:block; 
  font-weight: 700;
}

.works{
  max-width:767px;
  margin: 20px auto 10px;
  text-align: left;
}

.worklist{
  list-style: disc;
  line-height:1.8em;
}
.worklist::marker{
  color : #58CFFB;
}
@media screen and (max-width: 767px) {
  p, ul, dl {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

h1, h2, h3, h4 {
  font-family: 'Noto Sans JP', sans-serif;
}

h4 {
  padding-left: 0px;
  margin: 0 0 10px;
  font-size: 120%;
}

p#menubtn {
  color: #333333;
  margin: 0;
  cursor: pointer;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 25px;
  position: absolute;
  color: #242424;
  top: 5px;
  right: 10px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  z-index: 99999;
  display: none;
}

@media screen and (max-width: 767px) {
  p#menubtn {
    display: block;
  }
}

.margin-top {
  margin-top: 30px;
}

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

.center {
  text-align: center;
}

img {
  max-width: 100%;
}

img + img {
  margin-left: 5px;
}

h2 {
  font-size: 200%;
  margin: 40px 0px 15px;
  color: #242424;
  width: 100%;
  background-image: linear-gradient(135deg, #F0FF00 10%, #58CFFB 100%);
  background-repeat: no-repeat;
  background-size: 200px 13px;
  background-position: bottom;
  text-align: center;
  font-weight: bold;
}


@media screen and (max-width: 767px) {
  h2 {
    font-size: 180%;
  }
}

a.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  background: gray;
  color: #ffffff;
  margin: 20px auto;
  -webkit-transition: .2s;
  transition: .2s;
}

a.btn:hover {
  background: #b3b3b3;
  -webkit-transition: .2s;
  transition: .2s;
}

a.btn.white {
  background: #ffffff;
  color: #333333;
}

a.btn.white:hover {
  color: #666666;
  -webkit-transition: .2s;
  transition: .2s;
}

a.btn.black {
  background: #333333;
}

a.btn.black:hover {
  background: #595959;
  -webkit-transition: .2s;
  transition: .2s;
}

a.btn.pink {
  background: #fa3c72;
}

a.btn.pink:hover {
  background: #fc87a8;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

a.btn.blue {
  background: #4169e1;
}

a.btn.blue:hover {
  background: #839deb;
  -webkit-transition: .2s;
  transition: .2s;
  color: #ffffff;
}

hr {
  height: 2px;
  background-color: royalblue;
  width: 100px;
  border: none;
  margin: 60px auto;
}

h3 {
  font-weight: normal;
  font-size: 130%;
  display: block;
  margin: 30px 0 15px 0;
  border-left: 4px solid;
  padding: 0 0 0 15px;
}

.tobirae-container {
  width: 100%;
  height: 500px;
  background-size: 100%;
}

.tobirae-container img {
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .tobirae-container {
    height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .tobirae-container {
    height: 300px;
  }
}

@media screen and (max-width: 479px) {
  .tobirae-container {
    height: 200px;
  }
}

.tobirae img {
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 70px;
  background: linear-gradient(45deg,#ffffff,#ffffff,transparent);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

header .container {
  height: 70px;
}

header .row {
  background: transparent;
}

header .header__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  height: 70px;
  position: relative;
}

header h1 {
  color: rgb(0, 0, 0);
  padding: 0;
  font-size: 180%;
  line-height: 70px;
}

header ul#navmenu {
  display: -webkit-box;
  display: flex;
  margin: 0;
}

header ul#navmenu li {
  height: 70px;
  padding-left: 20px;
  padding-right: 20px;
}

header ul#navmenu li a {
  display: block;
  position: relative;
  height: 100%;
  line-height: 70px;
  color: #333333;
}

header ul#navmenu li a:after {
  position: absolute;
  bottom: 10px;
  left: 0;
  content: '';
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #F0FF00 10%, #58CFFB 100%);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

header ul#navmenu li a:hover {
  color: inherit;
}

header ul#navmenu li a:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
  header {
    height: auto;
    min-height: 60px;
  }
  header h1 {
    font-size: 150%;
    line-height: 50px;
  }
  header .container, header .header__wrapper {
    height: auto;
    min-height: 60px;
  }
  header .header__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  header ul#navmenu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    padding: 0;
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
  header ul#navmenu.checked {
    display: -webkit-box;
    display: flex;
  }
  header ul#navmenu li {
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
  header ul#navmenu li a {
    line-height: 50px;
  }
}


.swipebox:hover .caption {
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
}

.caption p{
  position: absolute;
  color: #FFF;
  padding-right: 0 !important;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.caption-title{
  color: #FFFFFF;
  font-size: 13px;
  font-weight: bold;
  position: absolute;
  top: 5px;
  left: 5px;
}
.caption-sup{
  border-radius: 10px;
  font-size: 10px;
  background-color: #FFF;
  color: #000000;
  padding: 0 5px;
  position: absolute;
  bottom: 5px;
  left: 5px;

}

ul.illust-1 li:not(:last-of-type) {
  margin-right: 5px;
}

ul.illust-1 li a {
  display: block;
  -webkit-transition: .2s;
  transition: .2s;
}

ul.illust-1 li.new::after {
  content: 'new';
  font-family: 'Noto Sans JP', sans-serif;
  position: absolute;
  padding: 0 5px;
  left: -3px;
  top: 0px;
  display: block;
  font-size: 12px;
  font-weight: bold;
  background: #333333;
  color: #ffffff;
  height: 18px;
  line-height: 18px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  padding: 0 7px;
}


ul.illust-1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 0px auto;
  padding: 0;
}

ul.illust-1 li {
  position: relative;
  margin-bottom: 5px;
}
ul.illust-1 li a img {
  -o-object-fit: cover;
     object-fit: cover;
}
.caption{
  opacity: 0;
  display: grid;
  background: #00000099;
  position: absolute;
  margin: 0;
  padding: 0;
}



ul.illust-1 {
  width: 1110px;
}
ul.illust-1 li {
  height: 270px;
  width: 270px;
}
ul.illust-1 li a img {
  height: 270px;
  width: 270px;
}
.caption{
  width: 270px;
  height: 270px;
}

@media (max-width: 1199px) {
  ul.illust-1 {
    width: 930px;
  }
  ul.illust-1 li {
    height: 225px;
    width: 225px;
  }
  ul.illust-1 li a img {
    height: 225px;
    width: 225px;
  }
  .caption{
    width: 225px;
    height: 225px;
  }
}
@media (max-width: 991px) {
  header h1 {
    font-size: 140%;
    line-height: 65px;
  }
  ul.illust-1 {
    width: 690px;
  }
  ul.illust-1 li {
    height: 165px;
    width: 165px;
  }
  ul.illust-1 li a img {
    height: 165px;
    width: 165px;
  }
  .caption{
    width: 165px;
    height: 165px;
  }
}

@media (max-width: 767px) {
  ul.illust-1 {
    width: 510px;
  }
  ul.illust-1 li {
    height: 165px;
    width: 165px;
  }
  ul.illust-1 li a img {
    height: 165px;
    width: 165px;
  }
  .caption{
    width: 165px;
    height: 165px;
  }
}

@media (max-width: 575px) {
  ul.illust-1 {
    width: 100%;
  }
  ul.illust-1 li {
    height: 128px;
    width: 100%;
  }
  ul.illust-1 li a img {
    height: 128px;
    width: 100%;
  }
  .caption{
    height: 128px;
    width: 100%;
  }
}


footer {
  background: #dddddd;
  overflow: hidden;
  margin-top: 80px;
  padding-bottom: 120px;
}

footer .footer {
  padding: 30px 0;
}

footer .footer > p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

footer .footer .title {
  font-size: 130%;
}

footer .bottom {
  background: #8f8f8f;
  color: #ddd;
}

footer .bottom .template {
  text-align: right;
  width: 100%;
  font-size: 12px;
  padding: 5px 10px;
  margin: 0;
}

footer a.home {
  text-decoration: none;
  color: #54c6ff;
  display: block;
  padding: 10px 20px;
  font-size: 14px;
}

h2.h2-a {
  padding: 10px 20px;
  background: linear-gradient(45deg, black, royalblue);
  color: #ffffff;
}

h2.h2-b {
  padding: 10px 20px;
  background: transparent;
  text-align: center;
  color: #333333;
}

h2.h2-b:before {
  content: '';
  height: 2px;
  width: 10%;
  display: inline-block;
  background: #333333;
  vertical-align: middle;
  margin-right: 30px;
}

h2.h2-b:after {
  content: '';
  height: 2px;
  width: 10%;
  display: inline-block;
  background: #333333;
  vertical-align: middle;
  margin-left: 30px;
}

h2.h2-c {
  font-size: 150%;
  border-bottom: 1px dotted #cccccc;
  padding: 0 10px 10px;
}

h3.h3-a {
  padding: 10px 20px;
  background: transparent;
  color: #000000;
  border-left: none;
  border-bottom: 3px dotted #000000;
}

h3.h3-b {
  border-left: none;
}

h3.h3-b:before {
  content: '//';
  font-size: 105%;
  margin-right: 1em;
}

h3.h3-b:after {
  content: '//';
  font-size: 105%;
  margin-left: 1em;
}

ul.li-a {
  list-style: square inside;
  margin: 1em 0.5em;
}

ul.li-a li {
  margin-bottom: 0.5em;
}

ul.li-b {
  list-style: disc inside;
  margin: 1em 0.5em;
}

ul.li-b li {
  margin-bottom: 0.5em;
}

ol.li-a {
  list-style: decimal inside;
  margin: 1em 0.5em;
}

ol.li-a li {
  margin-bottom: 0.5em;
}

ol.li-b {
  list-style: lower-alpha inside;
  margin: 1em 0.5em;
}

ol.li-b li {
  margin-bottom: 0.5em;
}

span.pink {
  color: #fa3c72;
}

blockquote {
  background: #ededed;
  padding: 20px 30px;
  margin: 20px;
  font-size: 15px;
  font-style: italic;
}

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