@charset "UTF-8";

/* pc -------------------------------------------------------------------------------------*/
@media screen and (min-width: 641px) {

/* タイトル */
.title {
width: 100%;
height: 140px;
overflow: hidden;
position: relative;
}

/*タイトル部分ここから*/
.titlebar__inner{
  width: 1040px;          /* 指示：左右1040px */
/*  margin: 0 auto;*/
  padding: 18px 20px;
  display: flex;              /* flexbox */
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  top:0;
  left: 50%;            /* 親の左から 50% の位置へ */
  transform: translate(-50%, 0%); /* 自身の幅と高さの半分だけ戻す */
}

.titlebar__inner img{
width: 21px;
height: 21px;
}

/* 左：タイトル（左寄せ＋下線） */
.titlebar__title{
  margin: 0;
  color: #2f6f90;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* 右：リンク（右寄せ） */
.titlebar__nav{
  display: flex;              /* flexbox */
  align-items: center;
  justify-content: flex-end;  /* 右寄せ */
  gap: 60px;
  flex: 0 0 auto;
}

/*タイトル部分ここまで*/


/*---------------------------------------------------------*/

/* 共通 */
section {
border-top: 5px solid #99bed6;
border-bottom: 5px solid #99bed6;
  max-width:100%;
  margin:0 auto 80px;
  padding:9em 0;
  text-align: center;
}

/*---------------------------------------------------------*/

.txt_1 {
line-height: 2.2em;
}

.txt_2 {
font-weight: 700;
margin-top: 4em;
}

}


/* sp -------------------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {

/* タイトル */
.title {
width: 100%;
height: 5em;
overflow: hidden;
position: relative;
}

/*タイトル部分ここから*/
.titlebar__inner{
  width: 100%;
/*  margin: 0 auto;*/
  padding: 0.5em 0 0 0.9em;
  display: flex;              /* flexbox */
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  top:0;
  left: 0;            /* 親の左から 50% の位置へ */
/*  transform: translate(-50%, 0%); /* 自身の幅と高さの半分だけ戻す */
}

/* 左：タイトル（左寄せ＋下線） */
.titlebar__title{
  margin: 0;
  color: #2f6f90;
  font-weight: 800;
  font-size: 6.5vw;
  letter-spacing: .04em;
  line-height: 1;
}
/*タイトル部分ここまで*/

/* 右：リンク（右寄せ） */
.titlebar__nav{
  display: none;
}
/*タイトル部分ここまで*/

/*タイトル部分ここまで*/


/*---------------------------------------------------------*/

/* 共通 */
section {
border-top: 5px solid #99bed6;
border-bottom: 5px solid #99bed6;
  max-width:100%;
  margin:0 auto 5em;
  padding:4em 0;
  text-align: center;
  font-size: 85%;
}

/*---------------------------------------------------------*/

.txt_1 {
line-height: 2.2em;
}

.txt_2 {
font-weight: 700;
margin-top: 3em;
}

}












