@charset "UTF-8";
/* CSS Document */
/********************************************

Common CSS

********************************************/
html {
  font-size: 62.5%; /*フォントの基準を10pxに*/
}
body {
  color: #484848;
  font-size: 1rem;
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif;
  box-sizing: border-box;
  overflow-y: scroll;
  overflow-x: hidden;
  font-feature-settings: "palt"1; /*文字詰め*/
  letter-spacing: .08em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #1f1f1f 20%, #303333 100%);
}
*, *::before, *::after {
  box-sizing: border-box;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
.txt_under {
  text-decoration: underline;
}
img {
  vertical-align: top;
}
/*テキストを選択した時の装飾*/ ::selection {
  background: #537895;
  color: #fff;
}
::-moz-selection {
  background: #537895;
  color: #fff;
}
li {
  list-style-type: none;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  color: white;
  display: none;
  font-family: 'source_sans_proregular';
  line-height: 25px;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
select, input[type=radio], input[type=date], input[type=time] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
  background: #fff;
  color: #333;
}
input[type=date]::-webkit-date-and-time-value, input[type=time]::-webkit-date-and-time-value {
  text-align: left;
}
.my-radio {
  position: relative;
  display: block; /* 縦並びに */
  margin: 0.2em 0; /* 前後のスペース */
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
}
/* inputは非表示にする */
.my-radio input {
  display: none;
}
/* 常に表示する枠線の円 */
.radio-mark {
  position: absolute;
  top: 0; /* 上からの位置 */
  left: 0;
  height: 22px; /* 大きさ */
  width: 22px; /* 大きさ */
  border: solid 2px #d4dae2; /* 線 */
  border-radius: 50%;
  box-sizing: border-box;
}
/* 選択時に重ねる円 */
.radio-mark:after {
  content: "";
  position: absolute;
  background: #f1890e; /* 色 */
  border-radius: 50%;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  opacity: 0; /* 透明にしておく */
}
/* 選択時に重ねた円の透明を解除 */
.my-radio input:checked + .radio-mark:after {
  opacity: 1;
}
/* 常に表示する枠線の円 */
.radio-mark-en {
  position: absolute;
  top: 2px; /* 上からの位置 */
  left: 0;
  height: 22px; /* 大きさ */
  width: 22px; /* 大きさ */
  border: solid 2px #d4dae2; /* 線 */
  border-radius: 50%;
  box-sizing: border-box;
}
/* 選択時に重ねる円 */
.radio-mark-en:after {
  content: "";
  position: absolute;
  background: #2e80ff; /* 色 */
  border-radius: 50%;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  opacity: 0; /* 透明にしておく */
}
/* 選択時に重ねた円の透明を解除 */
.my-radio input:checked + .radio-mark-en:after {
  opacity: 1;
}
.placeholder::before {
  content: attr(placeholder);
  color: rgb(117, 117, 117);
}
.placeholder::-webkit-datetime-edit-fields-wrapper {
  display: none;
}
.placeholder::-webkit-calendar-picker-indicator {
  display: none;
}
.mgb_1rem {
  margin-bottom: 1rem !important;
}
.width_50 {
  width: 55% !important;
}
.width_100 {
  width: 100% !important;
}
input[type="date"] {
  height: 3.6rem;
  position: relative;
  text-align: left !important;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left !important;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}
input[type="date"]::after {
  content: '';
  background-image: url("../images/ico_calendar.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
input[type="time"] {
  height: 3.6rem;
}
/*********************************

Font

**********************************/
.bold_400 {
  font-weight: 400 !important;
}
.bold_600 {
  font-weight: 600 !important;
}
.bold_700 {
  font-weight: 700 !important;
}
.bold_800 {
  font-weight: 800 !important;
}
.bold_900 {
  font-weight: 900 !important;
}
.txt_08em {
  font-size: 0.8em !important;
}
.txt_14rem {
  font-size: 1.4rem !important;
}
.txt_11em {
  font-size: 1.1em !important;
}
.txt_12em {
  font-size: 1.2em !important;
}
.txt_15em {
  font-size: 1.5em !important;
  font-weight: 900;
}
.txt_18em {
  font-size: 1.8em !important;
}
.txt_20em {
  font-size: 2em !important;
}
.txt_22em {
  font-size: 2.2em !important;
  font-weight: 900;
}
.txt_26em {
  font-size: 2.2em !important;
  font-weight: 900;
}
.color_r_red {
  color: #BF0000 !important;
}
.color_yel {
  color: #FBF91B !important;
}
.color_blue {
  color: #406DD1 !important;
}
.color_white {
  color: #fff !important;
}
.color_green {
  color: #195c4e !important;
}
.txt_line {
  text-decoration: line-through !important;
}
.bg_yel {
  background: #eee8aa;
}
.bg_bk {
  background-color: #000 !important;
}
.bg_r_red {
  background-color: #BE0000 !important;
}
.bg_yel_txt {
  background: #FBF91B !important;
  color: #333 !important;
  font-weight: 900;
}
.dot {
  position: relative;
}
.dot::after {
  position: absolute;
  content: "";
  background-image: url("../images/dot.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.1rem;
  height: 1.1rem;
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
}
.under_line {
  text-decoration: underline !important;
}
.mincho-seri {
  font-family: 'Noto Serif JP', serif;
}
/*********************************
PC/MOBILE 
**********************************/
.pc {
  display: none;
}
.mb {
  display: block;
}
/*********************************

header

**********************************/
main {
  position: relative;
  margin: 0 auto;
  display: block;
  padding: 2.4rem;
}
/*********************************

header

**********************************/
header {
  position: relative;
  display: flex;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  width: 14.5rem;
  position: relative;
  height: auto;
  left: 0.8rem;
}
header h1 img {
  width: 100%;
}
header p {
  width: 50%;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}
header p img {
  width: 100%;
}
/*********************************

wrapper

**********************************/
.wrapper {
  width: 100%;
  position: relative;
  display: block;
  padding: 3rem 0;
}
/**********************************
Tab 採用内容切り替え
***********************************/
/*tabの形状*/
.tab {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  margin-top: 0;
}
.tab li {
  flex-grow: 1;
}
.tab li a {
  display: block;
  background: rgba(245, 245, 245, .2);
  margin: 0 2px;
  padding: 1rem .5rem;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #195c4e;
  color: #fff;
  border: 2px solid #fff;
  font-weight: bold;
}
/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
  padding: 4rem 1.4rem;
  min-height: 100vh;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.area .head {
  font-size: 1.8rem;
  text-align: center;
  padding: 1rem;
  border: 2px solid #195c4e;
  margin-top: 0;
  margin-bottom: 3rem;
  color: #fff;
  background: #195c4e;
}
.area .sub_ex_ttl {
  font-size: 1.6rem;
  padding-left: 1rem;
  border-left: 1rem solid #D53965;
  line-height: 1.1;
  margin: 0 auto 2rem;
  color: #333;
  font-weight: bold;
}
.link-box {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-bottom: 3.4rem;
}
.link-box h4 {
  position: relative;
  padding: 1rem;
  text-align: left;
  font-size: 1.6rem;
  color: #195c4e;
  background: #e3f5d8;
  margin-bottom: 0;
  border: 1px solid #d1d1d1;
}
.link-box h4::before {
  font-size: 1.4rem;
  position: absolute;
  top: -2.4rem;
  left: 0;
  height: 2.4rem;
  padding: .1em 1em;
  content: 'URL LINK';
  color: #fff;
  border-radius: .5rem .5rem 0 0;
  background: linear-gradient(135deg, #1f1f1f 20%, #303333 100%);
}
.link-box h4 a{
    display: block;
    width: 100%;
    color: #195c4e;
    position: relative;
    letter-spacing: 0;
}
.link-box h4 a::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 2rem;
    height: 2rem;
    transform: translate(0,-50%);
    background: url("../images/link.png")no-repeat center;
    background-size: contain;
}
.link-box .url {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.link-box .url a{
    width: 87%;
    display: block;
}
.link-box .url a .url-txt {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  padding: 1rem 1rem 1.3rem;
  border: 1px solid #d1d1d1;
  font-size: 1.6rem;
  overflow-x: auto;
}
.link-box .url button {
  width: 13%;
  text-align: left;
  margin: 0 auto;
  border: 1px solid #d1d1d1;
  background: #f1f1f1;
  cursor: pointer;
}
.link-box .url button img {
  width: 100%;
}
.link-box .sns {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}
.link-box .sns a {
  width: 25%;
  border: 1px solid #fff;
  background: #195c4e;
  padding: 1rem 1em;
  text-align: center;
}
.link-box .sns a:nth-child(4) {
  background: #f1f1f1;
}
.link-box .sns a img {
  width: 50%;
}
/*******************************
サクセスメッセージ
********************************/
.success-msg {
  display: none;
  position: fixed;
  font-size: 1.6rem;
  width: 90%;
  height: 4rem;
  line-height: 4rem;
  background-color: #29aba4;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
  border-radius: 5px;
  z-index: 999;
}
/*******************************

U-Construction

********************************/
#staff{
    position: relative;
    width: 100%;
}
.u-construction{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
}
.u-construction p{
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
    margin: 0 auto 1em;
    width: 100%;
    color: #195c4e;
}
/*******************************

Footer

********************************/
footer {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}
/*ディスプレイ幅が768px(タブレット)より大きい端末のみへの記述*/
@media only screen and (min-width: 767px){
    .wrapper {
    width: 76rem;
    margin: 0 auto;
}
    .area {
    display: none;
    opacity: 0;
    padding: 6rem;
}
    .link-box .url button {
    text-align: center;
    padding: .5em
}
    .link-box .url button img {
    width: 50%;
}
    .link-box .sns a img {
    width: 20%;
}
    
}