@charset "UTF-8";
/* Scss Document */
html {
  font-size: 62.5%;
  height: 100%; }

body {
  font-family: 'Noto Sans JP',"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 1.2rem;
  font-weight: 300;
  color: #333;
  line-height: 1.4;
  letter-spacing: 1px;
  height: 100%;

	/* 画像ファイルの指定 */
  background-image: url("https://shuga.daa.jp/img/back.jpg");
   
  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
   
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
   
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
   
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
   
  /* 背景画像が読み込まれる前に表示される背景のカラー */
    background-color: rgba(#fff, 0.7);
    background-blend-mode: lighten;
}


p {
  margin: 10px 5px 10px 10px; }

a {
  color: #333;
  transition: 0.2s; }

a:hover {
  opacity: 0.6;
  transition: 0.2s; }

h1, h2, h3 {
  font-family: 'Josefin Sans', sans-serif; }

h2 {
  display: inline-block;
  border-bottom: 3px solid #e9dacb;
  margin: 10px 0px 5px 0px; }

h3 {font-size: 0.8em;
  margin: 5px 0 5px; }

em {
  text-decoration: underline;
  font-style: normal; }

ul, ol, dl {
  margin: 24px 0; }

ul.yoko {
  display: flex; }
  ul.yoko li {
    margin-right: 16px; }

input {
  border: none;
  border-bottom: 1px solid #bbbeca; }

input[type="submit"] {
  cursor: pointer; }

.btn {
  background-color: #e3e6e1;
  border: 1px solid #bbbeca;
  margin: 16px 0; }

/*---------------------------------
横幅設定
---------------------------------*/
@media screen and (min-width: 1024px) {
  header, footer {
    width: 1024px;
    margin: 0 auto; } }
/*---------------------------------
ヘッダー
---------------------------------*/
header {}
  @media screen and (min-width: 1024px) {
    header {
      display: flex;
      justify-content: space-between; } }
  /*サイト名*/
  header h1 {
    margin: 24px ; }
    header h1 a {
      text-decoration: none; }
    @media screen and (max-width: 1023px) {
      header h1 {
        margin: 32px 0 0;
        text-align: center; } }

/*メニュー*/
.globalnav ul {
  display: flex;
  list-style: none;
  margin: 40px 0 32px;
  padding: 0; }
  @media screen and (max-width: 1023px) {
    .globalnav ul {
      justify-content: center;
      margin: 32px 0; } }
  .globalnav ul li {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
	font-size: 1.6rem;
    padding: 0 24px; }
    @media screen and (max-width: 1023px) {
      .globalnav ul li {
        padding: 0 16px; } }
    .globalnav ul li a {
      text-decoration: none; }

/*---------------------------------
トップ画像
---------------------------------*/
.topimg {
  margin-bottom: 48px; }
  .topimg img {
    margin: 0 auto; }
  @media screen and (max-width: 1023px) {
    .topimg {
      height: 30vh; }
      .topimg img {
        height: 100%;
        object-fit: cover; } }

/*---------------------------------
メイン
---------------------------------*/
main {
  padding: 0 24px;
 }
  @media screen and (min-width: 1024px) {
    main {
      width: 1024px;
      margin: 24px auto; } }
  @media screen and (max-width: 1023px){
    main{
      padding:0 8px;
    }
  }
  main section {
    margin: 24px 0; }

  /*イラスト*/
  main #illust, main .illust{
          display: grid;
          grid-template-columns: repeat(auto-fit, 226px);
          gap:24px;
          grid-auto-rows:226px;
  }
  @media screen and (max-width: 1023px){
          main #illust, main .illust{
                  grid-template-columns: repeat(auto-fit, calc(50vw - 12px));
                  gap:8px;
                  grid-auto-rows:calc(50vw - 12px);
          }
  }

    /*イラストサムネイル*/
      main #illust .thumbs img, main .illust .thumbs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.2s; }

  /*コンテンツ*/
  @media screen and (min-width: 1024px) {
    main #contents {
      display: flex; }
      main #contents .left, main #contents .right {
        width: 50%; }
      main #contents .right{
        padding-left: 24px; }
      }
  @media screen and (max-width: 1023px) {
    main #contents {
      padding: 0 8px; } }
  /*sns*/
  main #contents .left .sns {
    display: flex;
    margin: 16px 0; }
    main #contents .left .sns a img {
      transition: 0.2s; }
      main #contents .left .sns a img:hover {
        opacity: 0.6;
        transition: 0.2s; }
    main #contents .left .sns i {
      font-size: 30px;
      margin-left: 8px; }
    main #contents .left .sns .twitter i {
      color: #55acee; }
    main #contents .left .sns .facebook i {
      color: #315096; }
    main #contents .left .sns .instagram i {
      color: #e1306c; }

  /*Contact*/
  main #contents .right .contact input {
    margin-bottom: 8px; }
  main #contents .right .contact textarea {
    width: 100%;
    height: 100px; }

  /*項目付きリスト*/
  main #contents .gridlist {
    display: grid;
    grid-template-columns: auto 1fr; }
    main #contents .gridlist dt {
      border-right: 1px solid #bbbeca;
      padding-right: 8px;
      margin-bottom: 8px; }
    main #contents .gridlist dd {
      padding-left: 8px; }

/*---------------------------------
フッター
---------------------------------*/
footer {
  position: relative;
  text-align: center; }
  /*クレジット*/
  footer small {
    padding: 16px 0; }
  /*矢印*/
  footer .totop {
    position: absolute;
    right: 24px;
    bottom: 0; }
    @media screen and (max-width: 1023px) {
      footer .totop {
        right: 5px;
        bottom: -16px; } }
    footer .totop i {
      font-size: 2rem; }

/*---------------------------------
　イラスト個別ページ
---------------------------------*/
.illustIndiv {
  position: relative;
  height: 100%; }
  .illustIndiv img {
    max-height: 100%;
    margin: 0 auto; }

  /*タイトル、キャプション*/
  .illustIndiv h2, .illustIndiv p {
    display: block;
    max-width: 800px;
    margin: 24px auto;
    border: none; }
    @media screen and (max-width: 1023px) {
      .illustIndiv h2, .illustIndiv p {
        padding: 0 8px; } }
  .illustIndiv h2 {
    font-size: 2rem; }
  .illustIndiv p {
    margin-bottom: 64px; }

  /*前へ、次へ*/
  .illustIndiv .prev, .illustIndiv .next {
    position: absolute;
    top: 50%;
    margin-top: -2rem; }
    @media screen and (max-width: 1023px) {
      .illustIndiv .prev, .illustIndiv .next {
        top: auto;
        margin-bottom: 24px; } }
    .illustIndiv .prev i, .illustIndiv .next i {
      font-size: 4rem; }
      @media screen and (max-width: 1023px) {
        .illustIndiv .prev i, .illustIndiv .next i {
          font-size: 3rem; } }
  .illustIndiv .prev {
    left: 5%; }
    @media screen and (max-width: 1023px) {
      .illustIndiv .prev {
        left: 3%; } }
  .illustIndiv .next {
    right: 5%; }
    @media screen and (max-width: 1023px) {
      .illustIndiv .next {
        right: 3%; } }


.card-container{
  background-color: rgb(255 255 255 / .9);
    color: #111;
    display: flex;
    margin: 20px auto;
    max-width: 500px;
	height: 100px;
    box-shadow: 0 12px 10px -6px rgba(0,0,0,.25);
}

.card-container2{
  background-color: rgb(255 255 255 / .9);
    color: #111;
    margin: 20px auto;
    max-width: 500px;
padding: 20px;
    box-shadow: 0 12px 10px -6px rgba(0,0,0,.25);
}
.card-container a{
    text-decoration: none;
    color: #20b2aa;
}

.card-text{
    width:100%;
		height: 40%;
    margin: 10px 0px 0px 10px;
}
.card-text h2{
    padding-top: 2px 0px 0px 0px;
    font-size: 1em;
}
.card-text p{
    font-size: 0.9em;
}
.card-img{
    max-width: 100px;
margin: 10px 20px;
	    vertical-align:baseline;
}

img{
    width: 60px;
    height:60px;
    vertical-align:bottom;
background-size: cover;
	    margin: 10px 10px;
}
.image_size_m{
	width: 150px;
	height: 150px;
	margin: 10px 10px;}

table{
	align-content: center;
  background-color: rgb(255 255 255 / .9);
	color: #111;
	max-width: 500px;
	    margin: 20px 20px;
}

td{padding: 20px;}
tr{	    margin: 20px 20px;}
/*PCサイズ*/

@media screen and (min-width:650px) {
    .card-container{
        max-width: 500px;
        max-height: 150px;
    }
    .card-container2{
        max-width: 500px;

    }
    .card-text h2{
        font-size: 1.3em;
    }
    .card-text p{
        font-size: 0.9em;
    }
}