@charset "UTF-8";
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
/* =====================
  fonts
===================== */
@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/noto-sans-jp-v53-japanese-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/noto-sans-jp-v53-japanese-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/noto-sans-jp-v53-japanese-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/noto-sans-jp-v53-japanese-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/noto-sans-jp-v53-japanese-900.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Shippori Mincho';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/shippori-mincho-v15-japanese_latin-700.woff2') format('woff2');
}

.reimin {
  font-family: "UD黎ミン B", sans-serif;
}

.reimin-eb {
  font-family: "UD黎ミン EB", sans-serif;
}

.reimin-h {
  font-family: "UD黎ミン H", sans-serif;
}

.oradano {
  font-family: "oradano-mincho-gsrr", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.shippori {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-style: normal;
}

/* =====================
  base
===================== */

*, *:before, *:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  display: block;
}


/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:760px) {

  body {
    font-family: 'Noto Sans JP', 'Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic', sans-serif;
    color: #3C2202;
    background-color: #FFFDF8;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2.3;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .pc_none {
    display: none !important;
  }

  #wrap {
    width: 900px;
    margin: 0 auto;
    padding: 40px 0 ;
  }
  #header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #header .logo {
    margin-bottom: 20px;
    text-align: left;
    width: 220px;
  }
  #header .logo img {
    height: 40px;
    width: 207px;
    margin-left: 0;
  }

  #header .list_link {
    display: inline-block;
    width: calc(100% - 220px);
    text-align: right;
    padding-top: 15px;
  }

  #header .list_link li {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    font-size: 15px;
    margin-right: 20px;
  }

  #header .list_link li::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 7px solid #179DB2;
    left: 0px;
    margin-top: -4px;
  }

  #header .list_link li a {
    color: #179DB2;
    text-decoration: none;
  }

  .content_box .head {
    background: #179DB2;
    color: #FFF;
    padding: 50px 50px 40px 50px;
    border-radius: 30px 30px 0 0;
    text-align: center;
    font-size: 22px;
    line-height: 2;
  }

  .content_box .head .txt {
    margin-bottom: 30px;
  }

  .content_box .info {
    border-left: solid 2px #179DB2;
    border-right: solid 2px #179DB2;
  }

  .content_box .bottom {
    background: #179DB2;
    color: #FFF;
    padding: 50px 50px 40px 50px;
    border-radius:  0 0 30px 30px;
    text-align: center;
  }

  #footer address {
    font-size: 12px;
    font-style: normal;
    text-align: center;
    padding: 10px;
  }

  /* =====================
    btn
  ===================== */
  
  .btn {
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
  }

  .btn a {
    width: 500px;
    display: inline-block;
    padding: 25px;
    color: #179DB2;
    background: #fff;
    border-radius: 8px;
    box-shadow: 5px 5px 0 #007486;
    border: 4px solid #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.2s linear;
  }

  .btn a:hover {
    background-color: transparent;
    color: #fff;
    border: 4px solid #fff;
  }

  .btn a::after {
    content: '';
    width: 48px;
    height: 48px;
    display: block;
    border-radius: 50%;
    background-image: url(/assets/img/250701/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 48px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .btn a:hover::after {
    background-image: url(/assets/img/250701/icon_arrow_on.svg);
  }

  .btn .icon_arrow::after {
    background-color: #179DB2;
  }

  /* =====================
    btn_tel
  ===================== */
  
  .btn_tel {
    text-align: center;
  }

  .btn_tel a {
    width: 500px;
    display: inline-block;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background-color: #E2570D;
    pointer-events: none;
  }

  .btn_tel a img {
    width: 355px;
    display: inline-block;
  }

}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

@media screen and (max-width:759px) {

  body {
    font-family: 'Noto Sans JP', 'Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic', sans-serif;
    color: #3C2202;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2.3;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sp_none {
    display: none !important;
  }

  #wrap {
    width: 95%;
    margin: 0 auto;
    padding: 20px 0 ;
  }

  #header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #header .logo {
    margin-bottom: 15px;
    text-align: left;
    width: 33%;
    height: auto;
  }

  #header .list_link {
    display: inline-block;
    width: calc(100% - 35%);
    text-align: right;
    padding-right: 2%;
  }

  #header .list_link li {
    display: inline-block;
    position: relative;
    padding-left: 10px;
    font-size: 12px;
  }

  #header .list_link li:first-child {
    margin-right: 10px;
  }

  #header .list_link li::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 7px solid #179DB2;
    left: 0px;
    margin-top: -4px;
  }

  #header .list_link li a {
    color: #179DB2;
    text-decoration: none;
  }

  .content_box .head {
    background: #179DB2;
    color: #FFF;
    padding: 25px 5% 25px;
    border-radius: 30px 30px 0 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
  }

  .content_box .head .txt {
    margin-bottom: 30px;
  }

  .content_box .info {
    border-left: solid 2px #179DB2;
    border-right: solid 2px #179DB2;
  }

  .content_box .bottom {
    background: #179DB2;
    color: #FFF;
    padding: 30px 5% 10px;
    border-radius:  0 0 30px 30px;
    text-align: center;
  }

  #footer address {
    font-size: 12px;
    font-style: normal;
    text-align: center;
    padding: 10px;
  }

  /* =====================
    btn
  ===================== */
  
  .btn {
    font-size: 4.6vw;
    letter-spacing: 0.05em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
  }

  .btn a {
    width: 100%;
    display: inline-block;
    padding: 15px 20px;
    color: #179DB2;
    background: #fff;
    border-radius: 8px;
    box-shadow: 5px 5px 0 #007486;
    border: 4px solid #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.2s linear;
  }

  .btn a::after {
    content: '';
    width: 36px;
    height: 36px;
    display: block;
    border-radius: 50%;
    background-image: url(/assets/img/250701/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 36px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .btn a:hover::after {
    background-image: url(/assets/img/250701/icon_arrow_on.svg);
  }

  .btn .icon_arrow::after {
    background-color: #179DB2;
  }

  /* =====================
    btn_tel
  ===================== */
  
  .btn_tel {
    text-align: center;
  }

  .btn_tel a {
    width: 100%;
    display: inline-block;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background-color: #E2570D;
    box-shadow: 5px 5px 0 #007486;
  }

  .btn_tel a img {
    width: 90%;
    display: inline-block;
  }

}