@charset "UTF-8";
/*--------------------------------------------------
変数定義
--------------------------------------------------*/
/*--------------------------------------------------
map型(key: value)でブレークポイントを定義する。
--------------------------------------------------*/
/*------------------------------------------
html
------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* 10pxが1remとなる様に調整*/
  background-color: #F8EDE1;
  /*バックグラウンドカラー設定*/
  scroll-behavior: smooth;
  /*スムーズにスクロールする*/
}

body {
  margin: 0;
  font-size: 16px;
  /*デフォルトフォントサイズ16px*/
  font-size: 1.6rem;
  color: #363636;
  /*デフォルトフォントカラー#363636*/
  line-height: 1.5em;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: #001ABE;
}

/*パソコン非表示*/
.pc_none {
  display: none;
}
@media screen and (max-width: 795px) {
  .pc_none {
    display: block;
  }
}

/*------------------------------------------------------------------------------------
ヘッダーブロック
------------------------------------------------------------------------------------*/
header {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
  background-color: #F8EDE1;
}
header .header_block {
  margin: 0 auto;
  width: 864px;
  max-width: 100%;
  text-align: center;
}
header .header_block img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 420px) {
  header .header_block img {
    width: 100%;
    max-width: 100%;
  }
}

/*------------------------------------------------------------------------------------
コンテンツブロック
------------------------------------------------------------------------------------*/
.contents_wrapper {
  width: 100%;
}
.contents_wrapper .contents_container {
  display: flex;
  flex-wrap: wrap;
  max-width: 864px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(to bottom, #F5DEE5 0%, #FFFFFF 100%);
}

/*------------------------------------------------------------------------------------
フッターブロック
------------------------------------------------------------------------------------*/
.footer_info {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 20px;
  overflow: hidden;
  background-color: #D4D4D4;
  border-top: 4px solid #CB2E54;
}
.footer_info .footer_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.copyright {
  display: inline-block;
  width: 100%;
  height: auto;
  min-height: 50px;
  background-color: #CB2E54;
  color: white;
  text-align: center;
  vertical-align: middle;
  font-size: 12px;
  overflow: hidden;
}
.copyright p {
  padding: 0 10px;
}

.footer_box1 {
  margin: 10px;
  width: 320px;
}

.info_midashi {
  margin-bottom: 10px;
  font-size: 1.7rem;
  font-weight: bold;
  color: white;
  padding: 5px 10px;
  max-width: 100%;
  background-color: #CB2E54;
}

.info_name {
  max-width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #CB2E54;
}

/*------------------------------------------------------------------------------------
タイトル見出し
------------------------------------------------------------------------------------*/
h1 {
  background-color: #CB2E54;
  color: white;
  margin: 0 auto;
  padding: 30px 0;
  max-width: 864px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 420px) {
  h1 {
    font-size: 28px;
  }
}

/*------------------------------------------------------------------------------------
説明ブロック
------------------------------------------------------------------------------------*/
.explanation {
  margin: 0 auto;
  width: 761px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 10px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/*------------------------------------------------------------------------------------
問い合わせブロック
------------------------------------------------------------------------------------*/
.notes {
  margin: 0 auto;
  width: 761px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border: 1px solid #FF3539;
  margin-bottom: 60px;
}

.notes_text, .notes_title, .notes_content {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.notes_title {
  width: 166px;
  color: #1E00D8;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #1E00D8;
}

.notes_content span {
  font-size: 24px;
  color: #D8005E;
  line-height: 2em;
}

/*------------------------------------------------------------------------------------
ボタン配置ブロック
------------------------------------------------------------------------------------*/
.button_container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  justify-content: center;
  gap: 20px;
}

.button1 {
  position: relative;
  width: 200px;
  height: 80px;
  background-color: white;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: ease 0.3s;
}
@media screen and (max-width: 420px) {
  .button1 {
    width: 100px;
    height: 100px;
    flex-direction: column;
    gap: 0px;
  }
}
.button1 .icon_link1 {
  width: 46px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(36%) saturate(3976%) hue-rotate(323deg) brightness(95%) contrast(91%);
}
@media screen and (max-width: 795px) {
  .button1 .icon_link1 {
    width: 32px;
  }
}
.button1 .button_text {
  text-align: center;
  font-size: 14px;
  color: #363636;
  transition: ease 0.3s;
}
@media screen and (max-width: 795px) {
  .button1 .button_text {
    font-size: 12px;
  }
}
.button1 .button_text span {
  font-size: 18px;
  font-weight: 600;
  color: #000790;
  transition: ease 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .button1:hover {
    background-color: #000790;
  }
  .button1:hover .button_text {
    color: white;
  }
  .button1:hover .button_text span {
    color: white;
  }
  .button1:hover .icon_link1 {
    filter: brightness(0) saturate(100%) invert(100%) sepia(18%) saturate(0%) hue-rotate(15deg) brightness(103%) contrast(102%);
  }
}
@media (hover: none) {
  .button1:active {
    background-color: #000790;
  }
  .button1:active .button_text {
    color: white;
  }
  .button1:active .button_text span {
    color: white;
  }
  .button1:active .icon_link1 {
    filter: brightness(0) saturate(100%) invert(100%) sepia(18%) saturate(0%) hue-rotate(15deg) brightness(103%) contrast(102%);
  }
}

/*------------------------------------------------------------------------------------
段落
------------------------------------------------------------------------------------*/
.article1 {
  padding: 10px;
}

/*------------------------------------------------------------------------------------
ページトップボタン
------------------------------------------------------------------------------------*/
.page-top {
  /* buttonタグのリセットCSS */
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  /* ボタンの装飾 */
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F5DEE5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.page-top::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-bottom: -6px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
}
.page-top:hover {
  transform: scale(1.1);
}

#page-top {
  opacity: 0.0;
  transition: ease .5s opacity;
}

#page-top.view {
  opacity: 1.0;
}
