@charset "UTF-8";

/*--------------------------------------------------------------
reset.css
リセット関係・clearfixなど

common.css
reset.cssのimport、レイアウト、TOPのスタイル記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
	content: "\f099";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ 
　　479：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  font-size: 1.4rem; 
  line-height: 1.8; 
  font-weight: 400;
  font-style: normal;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", -apple-system, system-ui, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  overflow-wrap: break-word; 
  text-size-adjust: 100%; 
  font-feature-settings: "palt";
  letter-spacing: 1.6px; 
}
.pc {
  display: none;
}
.sp-only {
  display: block;
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */

/* ------------------------------------------------------------ */
/* font size */
/* ------------------------------------------------------------ */
@media screen and (min-width: 768px) {
  /* 768px以上 */
  body {
    font-size: 1.5rem; /* 15px */
  }
}
@media screen and (min-width: 1024px) {
  /* 1154px以上 */
  body {
    font-size: 1.6rem; /* 16px */
  }
}

/* ------------------------------------------------------------ */
/* img */
/* ------------------------------------------------------------ */
.thum {
  margin: 0 auto 1em;
  text-align: center;
}

/* ------------------------------------------------------------ */
/* link */
/* ------------------------------------------------------------ */
::selection {
  color: #383838;
  background: rgba(0,0,0,0.1);
  text-shadow: none;
}

::-moz-selection {
  color: #383838;
  background: rgba(0,0,0,0.1);
  text-shadow: none;
}

a {
  color: #111;
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

/* ------------------------------------------------------------ */
/* ボタン */
/* ------------------------------------------------------------ */
.btn {
  text-align: center;
  /*  min-width: 300px;*/
  height: auto;
  margin: 0 auto;
}

.btn a,
.btn.close {
  display: inline-block;
  margin: 0 auto;
    min-width: 200px;
    background: #E6363D;
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: .15em;
    border-radius: 50px;
    padding: .5em 2em;
    transition: all 0.3s ease-in-out;
}
.btn.close {
    background: #707070;
    color: #fff;
}
.btn a:hover {
  opacity: 1;
  background: #000;
}
.btn.wht a {
     background: #000;
    color: #fff;
}
.btn.wht a:hover {
  opacity: 1;
  background: #e0422c;
}

/* ------------------------------------------------------------ */
/* common layouts */
/* ------------------------------------------------------------ */
.wrapper {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 1.5em;
  margin: 0 auto;
  clear: both;
}
.inner::after {
  content: "";
  clear: both;
  display: block;
}
/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
  width: 100%;
  height: 60px;
  background: #fff;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  /* スマホ用の慣性スクロール */
  -webkit-overflow-scrolling: touch;
}
.main-logo {
	width: 100%;
	max-width: 250px;
    padding-left: 1em;
    margin: 0;
}
.main-logo a {
	display: flex;
}

/* ------------------------------------------------------------ */
/* gnav */
/* ------------------------------------------------------------ */
.gnav {
  width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 1em;
}
.gnav button,
.gnav input[type=button] {
    font-size: 1.3rem;
    background: #E6363D;
    border-radius: 50px;
    color: #ffff;
    margin: 0 2.5px;
    white-space: nowrap;
    padding: 0 1em;
    display: inline-block;
    transition: all .3s;
}
.gnav button:hover, .gnav input[type=button]:hover {
        background: #000;
    }

/* ------------------------------------------------------------ */
/* common content */
/* ------------------------------------------------------------ */
.content {
  width: 100%;
  height: auto;
    min-height: 100vh;
  position: relative;
  padding: 0;
  margin: 0 auto;
}
.sub .content {
    padding-top: 60px;
}
.base {
  width: 100%;
  height: auto;
  position: relative;
  padding: 2.5em 0;
  margin: 0 auto;
}
.center-position {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}
.sub.center-position {
    min-height: calc(100vh - 60px);
}
.bg_color {
    background: #F6F1ED
}
.bg {
    background: #000;
}
.bg .inner {
    color: #fff;
}
.wh_area {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 6px rgb(0 0 0/ 16%);
    padding: 2em 8%;
    color: #000;
}
.wh_area.round {
    width: 100%;
    color: #000;
    border-radius: 2em;
    padding: 8%;
}
.wh_area.square {
    width: 100%;
    color: #000;
    padding: 2em;
}

/* ------------------------------------------------------------ */
/* ttl */
/* ------------------------------------------------------------ */
.logo-top {
    text-align: center;
    max-width: 290px;
    margin: 0 auto 2em
}
h3 {
    font-size: 1.2em;
    text-align: center;
/*    padding: 1em 0;*/
    margin: 0 auto 1em;
}
.message {
    margin: 0 auto 2em;
    text-align: center;
}
.paragraph {
    margin: 0 auto 1.5em;
}
/* ------------------------------------------------------------ */
/* flx_box */
/* ------------------------------------------------------------ */
.flx_box {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* カラム共通 */
.flx_item {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
}
.flx_item .thum {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
}
/* ------------------------------------------------------------ */
/* list */
/* ------------------------------------------------------------ */
.txtList {
    padding: 2em 0;
}
.txtList li {
    position: relative;
    padding-left: 1em;
}
.txtList li::before {
    content: '・';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
/* ------------------------------------------------------------ */
/* swiper */
/* ------------------------------------------------------------ */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: auto;
  height: auto;
  margin-top: 0;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transform: translateY(-50%);
}

/* ------------------------------------------------------------ */
/* animation */
/* ------------------------------------------------------------ */
.inview {
    opacity: 0;
}
/* ------------------------------------------------------------ */
/*  parts */
/* ------------------------------------------------------------ */
.form_box {
    width: 100%;
    margin: 0 auto;
}
.form-item {
    width: 100%;
    max-width: 630px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    margin: 0 auto 1em;
}
.form-item .field-ttl {
    width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.2em;
}
.form-item .field-input {
    width: 100%;
}
.form_box input[type="text"], 
.form_box input[type="email"],
.form_box input[type="tel"],
.form_box input[type="date"], 
.form_box input[type="password"],
.form_box input[type="number"],
.form_box select, .form_box textarea {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #707070;
    padding: 5px;
}
.submit-item {
    padding-top: 1em;
    text-align: center;
}
.submit-item > div {
    width: 100%;
   text-align: center;
}

input[type="submit"].button, 
input[type="reset"].button, 
input[type="button"].button,
button.button {
    width: auto;
    min-width: 200px;
    background: #E6363D;
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: .15em;
    border-radius: 50px;
    padding: .5em 1em;
    margin: 5px 0;
    transition: all 0.2s ease-in-out;
}
input[type="submit"].button:hover, 
input[type="reset"].button:hover, 
input[type="button"].button:hover,
button.button:hover{
    background: #000;
}
input[type="submit"].button.wht, 
input[type="reset"].button.wht, 
input[type="button"].button.wht {
    background: #fff;
    color: #000;
}
input[type="submit"].button.wht:hover, 
input[type="reset"].button.wht:hover, 
input[type="button"].button.wht:hover {
    background: #000;
}
.txt_link {
    text-align: center;
    padding-top: 2em;
}
.txt_link a {
    text-underline-position: under;
    text-decoration: underline;
    text-decoration-color: #707070;
    -webkit-text-decoration: underline solid #707070 1px;
}
.txt_link a:hover {
    text-decoration: none;
}
.login .form-item {
    max-width: 250px;
}
.login .form-item .field-ttl,
.entry .form-item .field-ttl{
    font-size: 1em;
    font-weight: 400;
}
.login .submit-item input[type="submit"], 
.login .submit-item input[type="reset"], 
.login .submit-item input[type="button"]  {
    margin: 0;
}
.entry.wh_area {
    width: 100%;
    max-width: 500px;
    padding: 2em 5%;
}



/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
  width: 100%;
  padding: 1em 0;
  background: #111;
  color: #fff;
  z-index: 9998;
}
.copy {
  font-size: 1.2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
  text-align: center;
}

@media screen and (min-width: 480px) {
  /* スマートフォン横 */
  .sp {
    display: block;
  }

  .main-header .main-logo {
    max-width: 350px;
  }

  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */

  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 0.5em);
    margin: 0 0.5em 1em 0;
  }
  .flx_2cols .flx_item:nth-child(2n),
  .flx_2cols .flx_item:last-child {
    margin: 0 0 1em;
  }

  /* 3カラム */
  .flx_3cols .flx_item {
    width: calc(100% / 3 - 0.5em);
    margin: 0 0.5em 1em 0;
  }
  .flx_3cols .flx_item:nth-child(3n) {
    margin: 0 0 1em;
  }

  /* 4カラム */
  .flx_4cols .flx_item {
    width: calc(100% / 4 - 0.5em);
    margin: 0 0.5em 1em 0;
  }

  .flx_4cols .flx_item:nth-child(4n) {
    margin: 0 0 1em;
  }

  /* ------------------------------------------------------------ */
  /* parts */
  /* ------------------------------------------------------------ */
    .wh_area {
        width: max-content;
        width: -moz-max-content;
        width: -webkit-max-content;
    }
    .form_box input.sizeS {
        max-width: 350px;
    }
    .login.wh_area {
        max-width: 500px;
    }
    .submit-item > div {
        width: 48%;
        text-align: center;
    }
    .submit-item > div input.button {
        width: 100%;
        min-width: inherit;
        white-space: unset;
    }
}

@media screen and (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */
  .sp-only {
    display: none;
  }

  /* ------------------------------------------------------------ */
  /* main-header */
  /* ------------------------------------------------------------ */
    
  /* ------------------------------------------------------------ */
  /* gnav */
  /* ------------------------------------------------------------ */
  /* ------------------------------------------------------------ */
  /* common content */
  /* ------------------------------------------------------------ */
  .base {
    padding: 4em 0;
  }

  /* ------------------------------------------------------------ */
  /* ttl */
  /* ------------------------------------------------------------ */
    h3 {
        font-size: 2.4rem;
    }
    
    .message {
        font-size: 1.8rem;
    }

  /* ------------------------------------------------------------ */
  /* swiper */
  /* ------------------------------------------------------------ */

  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */

  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 1em);
    margin: 0 1em 2em 0;
  }
  .flx_2cols .flx_item:nth-child(2n),
  .flx_2cols .flx_item:last-child {
    margin: 0 0 2em;
  }

  /* 3カラム */
  .flx_3cols .flx_item {
    width: calc(100% / 3 - 1em);
    margin: 0 1em 2em 0;
  }
  .flx_3cols .flx_item:nth-child(3n) {
    margin: 0 0 2em;
  }

  /* 4カラム */
  .flx_4cols .flx_item {
    width: calc(100% / 4 - 1em);
    margin: 0 1em 2em 0;
  }
  .flx_4cols .flx_item:nth-child(4n) {
    margin: 0 0 2em;
  }


  /* ------------------------------------------------------------ */
  /* parts */
  /* ------------------------------------------------------------ */
    .entry .form-item {
        align-items: center;
    }
    .entry .form-item .field-ttl {
        width: 35%;
        text-align: right;
        padding-right: .5em;
        margin-bottom: 0;
    }
    .entry .form-item .field-input {
        width: 65%;
    }
}
@media screen and (min-width: 1025px) {
  /* デスクトップ/タブレット横 */
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .sp-only {
    display: none;
  }
    .sub .center-position {
        min-height: calc(100vh - 67px);
    }
  /* ------------------------------------------------------------ */
  /* header */
  /* ------------------------------------------------------------ */
  .main-header {
      height: auto;
      padding: .8em 0;
  }
  .main-header .main-logo {
    max-width: 435px;
  }
  /* ------------------------------------------------------------ */
  /* gnav */
  /* ------------------------------------------------------------ */
    .gnav button, .gnav input[type=button] {
        font-size: 1.5rem;
        margin: 0 5px;
        padding: .5em 2em;
    }
    
  /* ------------------------------------------------------------ */
  /* common content */
  /* ------------------------------------------------------------ */
    .sub .content {
        padding-top:  67px;
    }
    .inner {
        max-width: 1024px;
        padding: 0 2em;
    }
    .base {
        padding: 5em 0;
    }
    
    h3 {
        font-size: 3rem;
    }
    .message {
        font-size: 2rem;
    }
  /* ------------------------------------------------------------ */
  /* section */
  /* ------------------------------------------------------------ */

}
