@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Oswald:wght@400;600;700&display=swap');/*外部font読み込み*/

/*--------------------共通--------------------*/

*,
*::before,
*::after {
    box-sizing: border-box;
	font-variant-ligatures: none;
    /*-webkit-backface-visibility: hidden;
    backface-visibility: hidden; */
    -webkit-appearance: none;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    font-weight: initial;
}

nav ul,
li{
    list-style:none;
}

a {
    text-decoration: none;
}

input:focus,
textarea:focus {
    outline: none;
}


/* Setting-basic
---------------------------------------*/
body {
    font-family: 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴシック ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 400;
    color: #000;
    font-size: 14px;
    letter-spacing: 0.1em;
}
@media all and (min-width:681px){
  body {
    min-width: 1200px;
  }
}


/* Font
---------------------------------------*/
/*.sans {
    font-family:  'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴシック ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 400;
}
.serif{
      font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	  font-weight: 500;
}*/

.osw {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}



/* Image
---------------------------------------*/
img {
    border: 0;
    vertical-align: bottom;
    max-width: 100%;
    display: block;
}

/* Link
---------------------------------------*/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #000;
}
a:active,
a:focus {
    outline: none;
}
a img {
  transition: 0.3s ease;
}
@media all and (min-width: 681px) {
  a:hover {
    /*opacity: 0.7;*/
    transition: 0.3s ease;
  }
}



/*.hide_txt{
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap;
    display: block;
}*/


/*pc sp only*/

@media all and (min-width: 681px) {
  .nonePC {
    display: none !important;
  }
}
@media all and (max-width:680px) {
  .noneSP {
    display: none !important;
  }
}

/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  animation: opacity ease 1s forwards;
}



/* Common
***************************************************************/
.sec{
  padding-top: 100px;
  padding-bottom: 100px;
}
@media all and (min-width:681px){
  body {
      overflow-x: hidden;
  }
  .inner{
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width:680px){
  .inner {
      width: auto;
      margin-left: 5%;
      margin-right: 5%;
  }
  .sec{
    padding-top: 35px;
    padding-bottom: 35px;
  }
}


.anchor {
    visibility: hidden !important;
    height: 0px !important;
    pointer-events: none !important;
    margin-top: -102px;
    position: absolute;
}
@media all and (min-width:681px){
  /*header{
    display: flex;
  }*/
}
@media all and (max-width:680px){
  .anchor {
      margin-top: -92px;
  }
}
@media all and (max-width:370px){}


/*-----header-----*/

header{
  position: fixed;
  top: 0;
  width: 100%;
  height: 73px;
  z-index: 100;
  background: #fff;
}
header .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.head_logo{
  width: 173px;
  height: auto;
  display: block;
}
header .inner nav{
  display: flex;
  align-items: center;
}
header .inner nav a {
    padding: 0 30px;
    position: relative;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.41;
    font-size: 16px;
    display: flex;
    align-items: center;
    height: 2.9em;
}
@media all and (min-width:681px){
  header .inner nav a + a::before {
      content: '';
      width: 1px;
      height: 55px;
      background-color: #000;
      display: block;
      position: absolute;
      left: 0;
      transform: rotate(38.4deg);
      top: -2px;
  }
  header .inner nav a:hover{
    color: rgb(237, 114, 113);
  }
  header + *{
    margin-top: 73px;
  }
}
@media all and (max-width:680px){
  header{
    height: 108px;
  }
  header + *{
    margin-top: 108px;
  }
  .head_logo{
    width: 118px;
    height: auto;
    margin: 0px auto;
    padding: 10px 0;
  }
  header .inner {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  header .inner nav {
    justify-content: space-between;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #e1ebeb;
    padding: 9px 0;
  }
  header .inner nav a{
    width: 25%;
    padding:0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.05em;
    padding-bottom: 12px;
  }
  header .inner nav a::after {
      content: '';
      width: 11px;
      height: 7px;
      left: calc(50% - 5.5px);
      background: url(../img/matching/arrow_b.svg) center / contain no-repeat;
      position: absolute;
      bottom: 2px;
  }
  header .inner nav a + a{
    border-left: 1px solid #000;
  }
}
@media all and (max-width:370px){}




/*-----コンバージョンボタン(float)-----*/
.conWrap{
  display: flex;
}
.conWrap a{
  display: flex;
  line-height: 45px;
  border-radius: 30px;
  white-space: nowrap;
  align-items: center;
}
.conWrap a p{
  font-weight: 700;
}
.conWrap a + a{
  margin-left: 6px;
}
.conWrap a p.telText1 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.conWrap__mail{
  background-color: #ec7271;
  color: #fff;
  padding:0 27px;
  font-size: 16px;
}
.conWrap__mail span{
  width: 18px;
  height: auto;
  margin-right: 5px;
}
.conWrap__tel{
  background-color: #30afba;
  color: #fff;
  padding:0 20px;
  font-size: 20px;
}
.conWrap__tel span{
  width: 12px;
  height: auto;
  margin-right: 5px;
}
.conWrap__tel p{
  width: 127px;
  height: auto;
}
@media all and (min-width:681px){
  .conWrap__mail:hover{
    background-color: #b03635;
  }
  .conWrap__tel{
    pointer-events: none;
  }
}
@media all and (max-width:680px){
  .conWrap {
      position: fixed;
      bottom:20px;
      transform: translateY(80px);
      transition: 0.5s;
      width: auto;
      justify-content: center;
      width: 100%;
  }
  .scroller .conWrap{
    transform: translateY(0);
    transition: 0.5s;
  }
/*.conWrap a {
    line-height: 38px;
    font-size: 13px;
    padding: 0 18px;
    width: calc((100% - 13%) / 2);
    display: flex;
    justify-content: center;
}*/
.conWrap a {
    line-height: 50px;
    font-size: 15px;
    padding: 0 10px;
    border-radius: 0;
    width: 50%;
    display: flex;
    justify-content: center;
}
.conWrap a + a {
    margin-left: 0;
}

  .conWrap__mail {
  }
  .conWrap__tel {
  }
  /*.conWrap__tel p {
    width: 104px;
    height: auto;
  }*/
  .conWrap__tel p {
    width: 113px;
    height: auto;
  }
  .conWrap a p.telText1 {
    font-size: 20px;
  }
}
@media all and (max-width:370px){
  /*.convReserve{
    width: calc((100% - 50px) / 2);
  }
  .convShiryo{
    width: calc((100% - 50px) / 2);
  }
  .convTel{
    width: 50px;
  }*/
}


/*-----go scroll-----*/

@keyframes scroll{
  0%{
    height: 0;
  }
  100%{
    height: 40px;
  }
}
.gotoarrow{
  position: absolute;
  left: 50px;
  top: 20px;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #1f3134;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.gotoarrow::after{
  position: absolute;
  top:68px;
  right: 0.5em;
  content: '';
  width: 1px;
  height: 40px;
  background-color: #1f3134;
  animation : scroll 1s linear 0.0s infinite alternate none running;
}


/*-----footer-----*/
footer{
  position: relative;
}
footer small{
  font-size: 18px;
  letter-spacing: 0.075em;
  text-align: center;
  display: block;
  padding: 25px 0 35px;
}
footer div {
    position: absolute;
    right: 30px;
    display: flex;
    bottom: 35px;
}
footer div a{
  color: #787878;
  font-size: 16px;
  letter-spacing: 0.075em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
footer div a::after{
      content: '';
      width: 16px;
      height: 15px;
      margin-left: 5px;
      background: url(../img/common/link_ico.svg) center / contain no-repeat;
      position: relative;
}
footer div a + a{
  margin-left: 35px;
}
@media all and (min-width:681px){
  footer div a:hover{
    opacity: 0.6;
  }
}
@media all and (max-width:680px){
  footer small {
      font-size: 10px;
      padding: 50px 0 80px;
  }
  footer div {
      position: absolute;
      right: auto;
      display: flex;
      bottom: auto;
      align-items: center;
      top: 20px;
      left: calc(50% - 8.3em);
  }
  footer div a {
    font-size: 11px;
  }
  footer div a::after {
    width: 12px;
    height: 11px;
  }
  footer div a + a {
    margin-left: 25px;
  }
}
@media all and (max-width:370px){}
