@charset "utf-8";
/* CSS Document */

/* body ----------------------------------------------------------- */

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-family: "Arial","Helvetica Neue","Noto Sans","Hiragino Sans","Meiryo","Hiragino Kaku Gothic ProN",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  overflow-wrap: break-word;
  background: #fff;
  color: #333;
}

html{ scroll-behavior: smooth;}

p, h1, h2, h3, h4, h5, h6 { margin-top: 0;}

img { vertical-align: middle;}

a {
  text-decoration: underline;
  color: #4c4398;
}

a:hover { color: #e4007f;}

a img:hover {
  -webkit-filter: drop-shadow(0 0 5px #fff);
  filter: drop-shadow(0 0 5px #fff) contrast(120%);
}

.bold { font-weight:bold;}
.center{ text-align: center;}
.right{ text-align: right;}
.under{ text-decoration: underline;}
.red{ color: #DC0509;}

.pc { display: initial;}
.sp { display: none;}

/* body end ----------------------------------------------------------- */

/* header ----------------------------------------------------------- */

.wrapper{
  min-height: 100vh;
  position: relative;/*←相対位置*/
  padding-bottom: 70px;/*←footerの高さ*/
  box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
  overflow: hidden;
}

header { margin: 0 auto; padding: 10px 0; background: #fff;}

.logo { margin: 0;}

.logo-box img{
  max-width: 100px;
  width: 100%;
}

.home-image {
  text-align: center;
  position: relative;
	max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.home-image img{
	max-width: 1000px;
  width: 100%;
}

/*header end ----------------------------------------------------------- */

/* base ----------------------------------------------------------- */

.wrappar {
  padding: 0;
  margin: 0;
}

main{ margin-bottom: 50px;}

.contents {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* base end ----------------------------------------------------------- */

/* main ----------------------------------------------------------- */

.main {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.zero{ margin: 20px auto;}
section{ padding: 0 20px;}

/* main ----------------------------------------------------------- */

/* ゴシック体 */
h1,h2,h3,h4 {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* subtitle ----------------------------------------------------------- */
h1 {
  margin-bottom: 0;
  font-size: 3.6rem;
  line-height: 1.2;
  text-align: center;
  color: #000;
}

h1 span{ font-size: 2.5rem; color: #E36028;}

h2,section h2 {
  font-size: 2.0rem;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 10px 0;
  padding: 0 20px;
  position: relative;
  text-align: center;
  color: #231815;
}
h2 span,section h2 span{ font-size: 1.6rem; color: #666;}

h3,section h3 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  padding: 0 10px;
  margin: 10px 0;
  text-align: center;
  border-bottom: 1px solid #999;
}

h4,section h4 {
	letter-spacing: 1px;
	padding-left: 12px;
	margin-bottom: 3px;
  text-align: center;
}

section p { padding: 0 20px;}

/* subtitle end ----------------------------------------------------------- */

/* box ----------------------------------------------------------- */

.note{
  max-width: 700px;
  width: 100%;
  border: 4px solid #E36028;
  margin: 10px auto;
  padding: 10px 20px;
}

.note p{ padding: 0 40px;}

/* box end ----------------------------------------------------------- */

/* icon ----------------------------------------------------------- */

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  vertical-align: middle;
}

/* アイコン装飾用css */
.icon{
  margin: 0 5px;
  padding: 0 0 3px;
  text-decoration: none;
  text-shadow: none;
  text-indent: 0;
}

.icon.i-c{
  padding: 5px;
  border-radius: 50%;
  background: #F3B0C2;
  color: #fff;
}

a .icon.i-c:hover{
  background: #fff;
  color: #F3B0C2;
}

/* アイコン横並び */

.icon-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto 20px;
  padding: 0 30px;
}

/* 特定の拡張子の場合自動で表示 */
.btn-box a[href$=".docx"]::after,
.btn-box a[href$=".doc"]::after {
  padding-left: 10px;
  display: inline-block;
  content: url("img/icon/word_icon.png");
  vertical-align: middle;
}

.btn-box a[href$=".pdf"]::after {
  padding-left: 10px;
  display: inline-block;
  content: url("img/icon/pdf_icon.png");
  vertical-align: middle;
}

.btn-box a[href$=".xlsx"]::after {
  padding-left: 10px;
  display: inline-block;
  content: url("img/icon/excel_icon.png");
  vertical-align: middle;
}

.btn-box a[href$=".pptx"]::after,
.btn-box a[href$=".ppt"]::after {
  padding-left: 10px;
  display: inline-block;
  content: url("img/icon/pptx_icon.png");
  vertical-align: middle;
}

.btn-box a.noicon::after{ content: "";}

/* icon end ----------------------------------------------------------- */

/* button ----------------------------------------------------------- */

/*ボタン設定--まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,a.btn {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  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;
  justify-content: space-around;
  border-radius: 0;
  border: 4px double #fff;
  outline: 1px solid #fff;
  color: #fff;
}

.btn:hover,a.btn:hover{ filter: brightness(120%);}

.btn-box,.poster-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto;
}

.btn-box .btn-w{ width: 260px;}
.btn-box a{ margin-bottom: 10px;}

.btn-box img{
  max-width: 250px;
  width: 100%;
  margin-bottom: 10px;
}

.poster-box img{
  max-width: 400px;
  width: 100%;
  margin: 0 10px 10px;
  border: 1px solid #fbe6ef;
}

/* button個別 */

.btn-1,a.btn-1 { background: #E80111;}
.btn-1:hover,a.btn-1:hover{ background: #E36028;}

/* button end ----------------------------------------------------------- */

.sp-bn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: flex-start;
  margin: 0 auto;
}

.bn-box {
  max-width: 150px;
  width: 100%;
  margin: 10px;
}

.bn-box img {
  max-width: 150px;
  width: 100%;
  border: none;
}
/* .bn-box a img:hover{ background: #fff;} */

.bn-box p {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;  /* HP毎に調整 */
  color: #E80111;
}

/* arrow ----------------------------------------------------------- */

/*リンクを右下に固定*/
#arrow {
  position: fixed;
  bottom: 8%;
  right: 1%;
  z-index: 2;
   /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

#arrow a {
  /*天地中央にテキストを配置*/
  display: flex;
  align-items: center;
  justify-content: center;
  /*円の形状（spは45px）*/
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  padding: 0 20px;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
  outline: 1px solid #fff;
  background: linear-gradient(180deg,#E80111,#F9C5AD);
  color: #fff;
}

#arrow a:hover {
  outline: 1px solid #fff;
  background: #fff;
  color: #E80111;
}

/*　上に上がる動き　*/

#arrow.upmove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#arrow.downmove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/* arrow up */
a.arrow-up {
  display: block;
  position: relative;
  text-align: center;
  background: currentColor;
}

a.arrow-up::after {
  content: '';
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  box-sizing: border-box;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  transform: translateY(3px) rotate(-45deg);
  transform-origin: top right;
  top: 35%;
  bottom: 0;
  right: 50%;
}

a.arrow-up:hover::after{ transform: translateY(-5px) rotate(-45deg);}

/* arrow end ----------------------------------------------------------- */

/* footer ----------------------------------------------------------- */

footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  font-weight: bold;
  background: #fff;
  color: #727171;
}

footer small { font-size: 15px;}

/* footer end ----------------------------------------------------------- */

/* android・iPhone ----------------------------------------------------------- */

@media screen and (max-width: 768px) {
  /* body */
  body{ font-size: 1.4rem;}
  .wrapper{ min-height: auto;}

  /* header */
  h1 { font-size: 2.5rem;}
  h1 span{ font-size: 1.8rem;}
  h2,h3{ font-size: 1.6rem;}
  h2 span{ font-size: 1.4rem;}

  /* button */
  .btn,a.btn { font-size: 1.6rem;}

  /* arrow */
  #arrow a {
    width: 50px;
    height: 50px;
  }
}
/* android・iPhone end ----------------------------------------------------------- */
