@charset "UTF-8";

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #000;
    --linkhover-color: #666;
    --back-color: #fff;
    --border-color: #eeeeee;
    --white-color: #fff;
    --gray-color: #f5f5f5;
    --gray-right: #f8f8f8;
    --red-color: #cc0000;
    --darkgray-color: #333;
    --paleblue-color: #f0faff;
    --darkgray-color: #333;
    --point-color: #c4538b;
}

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
*{
margin:0;
padding:0;
}
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    scroll-padding-top: 150px;
}
@media (max-width : 1000px) {
  html {
      font-size: 14px;
  }
}
p {
  line-height: 1.8;
}
ul, li {
  margin: 0;
  padding: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
.center {
  text-align: center;
}

/*ーーーーーーーーーー
.header
ーーーーーーーーーーー*/
#head_wrap {
  top: -80px;
  position: relative;
  width: 100%;
  margin: 100px auto 0;
  line-height: 1;
  z-index: 999;
  height: 0px;
  text-decoration: none;
}

#head_wrap a {
  text-decoration: none;
}

#head_wrap .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#head_wrap .inner:after {
  content: "";
  clear: both;
  display: block;
}

#global-nav {
  position: absolute;
  right: 0;
  top: 0;
}

#global-nav ul {
  list-style: none;
  font-size: 17px;
  margin: 10px 25px 0 0;
  display: inline-flex;
}

@media (max-width: 1000px) {
  #global-nav ul {
    display: block;
    margin-right: 0px;
  }
}

#global-nav ul li {
  padding: 0 10px;
}
#global-nav ul li.sns {
  font-size:140%;
  line-height: 1;
}

#global-nav ul li:last-child {
  border-right: none;
}

@media (max-width: 1000px) {
  #global-nav ul li {
    border-right: none;
  }
}

#global-nav ul li a {
  padding: 0 10px;
  transition: all .6s ease 0s;
  box-sizing: border-box;
  font-weight: 500;
}

/* Fixed */
#head_wrap.fixed {
  background: rgba(255, 255, 255, 1);
  margin-top: 0;
  top: 0;
  position: fixed;
  height: 100px;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  z-index: 9999;
  background: var();
}

#head_wrap.fixed .logo {
  font-size: 36px;
  color: #333;
}

#head_wrap.fixed #global-nav ul li a {
  color: #333;
  padding: 0 10px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
}

@media (max-width: 1000px) {
  #head_wrap {
    top: 0;
    position: fixed;
    margin-top: 0;
    width: 100%;
    padding: 0;
    /* Fixed reset */
  }
  #head_wrap .inner {
    width: 100%;
    padding: 0;
  }
  #head_wrap .fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    height: 60px;
    z-index: 999;
    position: relative;
  }

  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -500px;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 15px;
    margin-top: 20px;
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #head_wrap #global-nav ul li a,
  #head_wrap.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 5px 0;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  #nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 11px;
  }
  #nav-toggle span:nth-child(3) {
    top: 22px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }
}


/* headline -------------------------------------- */

h1 {
  margin: 30px 0 0 30px;
  color: var(--point-color);
}
}
h2 {
  display: block;
  margin: 30px auto;
  font-size:40px;
  color: var(--point-color);
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}
h3 {
  margin: 30px 0;
  font-size:30px;
  color: var(--point-color);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
h4 {
  font-size:24px;
  font-weight: 600;
}
h5 {
  font-size:20px;
  font-weight: 600;
}
@media (min-width: 1000px) {
  h1 {
  margin-top: 40px;
  }
  h2 {
    margin: 0;
    font-size:60px;
  }
  h3 {
    font-size:36px;
  }
  h4 {
    font-size:20px;
  }
  h4 {
    font-size:18px;
  }
}


/* Main -------------------------------------- */
main {
 margin: 0;
 padding: 60px 0 200px 0;
}
@media ( min-width : 1000px ) {
  main {
    padding-top: 10px;
  }
}



/* GridBox -------------------------------------- */
.containerAll {
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    position: relative;
}
.container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 2.0rem;
    position: relative;
}
/* ブロックを縦に表示 */
.row {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

.col {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
}
.col p, .col li, .col dt, .col dd {
	text-align: center;
}
.col p img {
  max-width: 100%;

}
/* 768px以上の表示 */
@media ( min-width : 768px ) {
.row {
    display: flex;
    flex-direction: row;
    padding: 0;
}
.col {
    margin-left: 4%;
}

.col:first-child {
    margin-left: 0;
}

.row .col.span-1 {
    flex: 0 0 4.66666666667%;
    max-width: 4.66666666667%;
}
.row .col.span-2 {
    flex: 0 0 13.3333333333%;
    max-width: 13.3333333333%;
}
.row .col.span-3 {
    flex: 0 0 22%;
    max-width: 22%;
}
.row .col.span-4 {
    flex: 0 0 30.6666666667%;
    max-width: 30.6666666667%;
}
.row .col.span-5 {
    flex: 0 0 39.3333333333%;
    max-width: 39.3333333333%;
}
.row .col.span-6 {
    flex: 0 0 48%;
    max-width: 48%;
}
.row .col.span-7 {
    flex: 0 0 56.6666666667%;
    max-width: 56.6666666667%;
}
.row .col.span-8 {
    flex: 0 0 65.3333333333%;
    max-width: 65.3333333333%;
}
.row .col.span-9 {
    flex: 0 0 74.0%;
    max-width: 74.0%;
}
.row .col.span-10 {
    flex: 0 0 82.6666666667%;
    max-width: 82.6666666667%;
}
.row .col.span-11 {
    flex: 0 0 91.3333333333%;
    max-width: 91.3333333333%;
}
.row .col.span-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* オフセット */
.row .col.offset-1 {
    margin-left: 8.66666666667%;
}
.row .col.offset-2 {
    margin-left: 17.3333333333%;
}
.row .col.offset-3 {
    margin-left: 26%;
}
.row .col.offset-4 {
    margin-left: 34.6666666667%;
}
.row .col.offset-5 {
    margin-left: 43.333333333%;
}
.row .col.offset-6 {
    margin-left: 52%;
}
.row .col.offset-7 {
    margin-left: 60.6666666667%;
}
.row .col.offset-8 {
    margin-left: 69.3333333333%;
}
.row .col.offset-9 {
    margin-left: 78.0%;
}
.row .col.offset-10 {
    margin-left: 86.6666666667%;
}
.row .col.offset-11 {
    margin-left: 95.3333333333%;
}
}

/* Facebook -------------------------------------- */
.fb-box {
  right: 0;
  bottom: 0;
}
.fb-like {
  margin: 5px;
}


/* PageTop -------------------------------------- */
.btn_pagetop {
    position: fixed;
    bottom: 100px;
    right: 16px;
    font-size:60px;
}
.btn_pagetop a {
    display: block;
    text-decoration: none;
    color: var(--link-color:);
    opacity: 0.3;
}
.btn_pagetop:hover {
    opacity: 0.5;
}

/* Footer -------------------------------------- */
footer {
	z-index: 99;
	position: fixed;
	bottom: 0px;
	width: 100%;
	background-color: #fff;
	clear:both;
}
footer p {
  text-align: center;
  padding: 10px;
}
footer p a {
  text-decoration: none;
}

@media only screen and (min-width: 1000px) {
footer {
	height: 60px;
}
}

/* BG -------------------------------------- */
.pink {
  background: var(--point-color);
}
.rgray {
  background: var(--gray-right);
}
.paleblue {
  background: var(--paleblue-color);
}


 /* タイル
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
 // ブレイクポイントの設定
 $breakpoint-tab: 1024px;
 $breakpoint-sp: 768px;

 // タブレット用のスタイル
 @mixin tab {
   @media screen and (max-width: $breakpoint-tab) {
     @content;
   }
 }

 // スマートフォン用のスタイル
 @mixin sp {
   @media screen and (max-width: $breakpoint-sp) {
     @content;
   }
 }

 // 任意サイズのメディアクエリ
 @mixin sc-size(500) {
   @media screen and (max-width: #500px) {
     @content;
   }
 }

 .tilecontent {
   max-width: 100%;
   margin: 0 auto;
   padding: 0;
 }
 .tilecontent p {
   margin: 10px auto;
   line-height:1.5;
 }
 .tilecontent p img {
   display: block;
   margin: 5px auto;
   text-align: center;
   box-sizing: border-box;
 }

 .grid-container {
   display: grid;
   gap: 1em 0.5em;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

   @include sc-size(500) {
     // display: block;
     grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
   }
 }
.grayline {
  border:1px solid #ccc;
 }
.grid-item {
  text-align: center;
}


/* body style -------------------------------------- */
.anchor {
  padding-top: 150px;
  margin-top: 150px;
}
.btn_sheetDl {
	display:inline-block;
  text-align: center;
}
.btn_sheetDl a {
	display:block;
	margin: 5px auto 0 auto;
	padding: 5px 10px;
	font-size:16px;
	color:#FFF;
	background: var(--point-color);
	moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}
.netprint {
  color: var(--darkgray-color);
}
.headline {
  display: block;
  width:fit-content;
  margin: 30px auto;
  padding: 0 0 40px 0;
  font-size:40px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  border-bottom: 3px solid var(--point-color);
}
.readcopy {
  margin: 0 auto 30px auto;
}
.largeImg {
  display: block;
  width:100%;
}
hr {
	padding: 30px 0;
	border: 0;
	height: 0;
	border-bottom: 2px solid #eee;
	clear:both;
}
@media ( min-width : 1000px ) {
  .largeImg {
    margin: 0 auto;
    width:80%;
    text-align: center;
  }
  .headline {
    margin: 50px auto;
    font-size:50px;
  }
}
