@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/*---------------
   追加 reset
---------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

/*---------------
   共通
---------------*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 1200px;
  color: #000;
  font-family: "游ゴシック体","Yu Gothic", YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 1.4rem;
  letter-spacing: .15em;
  line-height: 2.0;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  body {
    min-width: 100%;
    color: #444;
    font-size: calc((30/760)*100vw);
    letter-spacing: 0;
    line-height: 1.6;
  }
}

p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

.inner {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 640px) {
  .inner {
    width: 100%;
    min-width: 100%;
    padding: 0 calc((20/760)*100vw);
  }
}

.flex_wrap {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  justify-content: space-between;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .sp {
    display: inherit !important;
  }
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
}

/*---------------
   header
---------------*/
.header {
  background: #FFF;
}
@media screen and (max-width: 640px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc((135/760)*100vw);
  }
}
.header .inner {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  width: 100%;
  padding: 17px 30px;
}
@media screen and (max-width: 640px) {
  .header .inner {
    padding: calc((30/760)*100vw);
  }
}
.header_logo {
  width: 308px;
}
@media screen and (max-width: 640px) {
  .header_logo {
    width: calc((510/760)*100vw);
  }
}
.header .gnav .drawer_button {
  display: none;
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_button {
    display: block;
    background: none;
    border: none;
    padding: 0;
    width: calc((70/760)*100vw);
    cursor: pointer;
    position: fixed;
    top: calc((21/760)*100vw);
    right: calc((40/760)*100vw);
    z-index: 1001;
    outline: none;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_button.active .drawer_bar {
    width: calc((86/760)*100vw);
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_button.active .drawer_bar1 {
    transform: rotate(42deg);
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_button.active .drawer_bar2 {
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_button.active .drawer_bar3 {
    transform: rotate(-42deg);
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_button.active .drawer_menu_text {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_button.active .drawer_close {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_button .drawer_bar {
    display: block;
    height: 2px;
    margin: calc((23/760)*100vw) 0;
    transition: all 0.2s;
    transform-origin: 0 0;
    background-color: #F39700;
  }
}
.header .gnav .drawer_menu {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_menu {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_menu_wrapper {
    width: calc((450/760)*100vw);
    transition: all 0.2s;
    transform: translate(calc((450/760)*100vw));
    position: fixed;
    top: calc((135/760)*100vw);
    right: 0;
    z-index: 1000;
    background-color: #F39700;
    border: #FFF 2px solid;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav .drawer_menu_wrapper.open {
    transform: translate(0);
  }
}
.header .gnav li {
  margin: 0 15px;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .header .gnav li {
    width: 100%;
    margin: 0;
    border-bottom: #FFF 2px solid;
  }
}
@media screen and (max-width: 640px) {
  .header .gnav li:last-child {
    border-bottom: none;
  }
}
.header .gnav li a {
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .header .gnav li a {
    display: block;
    width: 100%;
    padding: 1em 0;
    color: #FFF;
    font-size: calc((30/760)*100vw);
    letter-spacing: .2em;
    text-indent: .2em;
    text-align: center;
  }
}
.header .gnav li a:hover {
  text-decoration: underline;
}
.header .gnav li.tel {
  margin-right: 0;
  padding-left: 20px;
  background: url("../images/header_ico_tel.png") top 50% left no-repeat;
  color: #F39700;
  font-family: "Times New Roman", Times, "serif";
  font-size: 2.4rem;
}
@media screen and (max-width: 640px) {
  .header .gnav li.tel {
    background: url("../images/header_ico_tel_sp.png") top 50% left 15% no-repeat;
    background-size: calc((30/760)*100vw);
    padding-left: 1.5em;
    color: #FFF;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: calc((30/760)*100vw);
  }
}
.header .gnav li.tel a:hover {
  text-decoration: none;
  opacity: .6;
  transition: .5s;
}

/*---------------
   main
---------------*/
@media screen and (max-width: 640px) {
  .mv {
    margin-top: calc((135/760)*100vw);
  }
}
.mv p img {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .content {
    margin-top: calc((-135/760)*100vw);
    padding-top: calc((135/760)*100vw);
  }
}
.content_inner {
  padding: 0 0 80px;
}
@media screen and (max-width: 640px) {
  .content_inner {
    padding: 0 0 calc((80/760)*100vw);
  }
}
.content_lttl {
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .content_lttl {
    margin-bottom: calc((40/760)*100vw);
  }
}
.content_lttl .en {
  color: rgba(0, 160, 233, 0.3);
  font-family: "Times New Roman", Times, "serif";
  font-size: 6.0rem;
  font-weight: bold;
  letter-spacing: .1em;
  letter-spacing: .1em;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .content_lttl .en {
    font-size: calc((60/760)*100vw);
  }
}
.content_lttl .en:first-letter {
  color: rgba(243, 151, 0, 0.3);
}
.content_lttl .jp {
  font-size: 2.0rem;
  font-weight: bold;
  letter-spacing: .2em;
  letter-spacing: .2em;
}
@media screen and (max-width: 640px) {
  .content_lttl .jp {
    color: #000;
    font-size: calc((50/760)*100vw);
    font-weight: 500;
  }
}

.greeting .content_inner {
  padding-top: 60px;
}
@media screen and (max-width: 640px) {
  .greeting .content_inner {
    padding-top: calc((70/760)*100vw);
  }
}
.greeting_ttl {
  margin-bottom: 40px;
  padding-top: 110px;
  background: url("../images/greeting_ttl_ico.png") top center no-repeat;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .greeting_ttl {
    margin-bottom: calc((50/760)*100vw);
    padding-top: calc((145/760)*100vw);
    background-size: calc((235/760)*100vw);
  }
}
.greeting_ttl .en {
  margin-bottom: 30px;
  font-family: "Times New Roman", Times, "serif";
  font-size: 2.0rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-indent: .1em;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .greeting_ttl .en {
    margin-bottom: calc((30/760)*100vw);
    font-size: calc((20/760)*100vw);
  }
}
.greeting_ttl .jp {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.0rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-indent: .2em;
}
@media screen and (max-width: 640px) {
  .greeting_ttl .jp {
    font-size: calc((50/760)*100vw);
  }
}
.greeting_ttl .jp .blue {
  color: #00A0E9;
}
.greeting_ttl .jp .orange {
  color: #F39700;
}
.greeting_text01 {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .greeting_text01 {
    text-align: left;
  }
}
.greeting_text02 {
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 640px) {
  .greeting_text02 {
    color: #000;
  }
}
.greeting_text02 .name {
  display: inline-block;
  margin-left: .5em;
  font-size: 2.0rem;
}
@media screen and (max-width: 640px) {
  .greeting_text02 .name {
    font-size: calc((40/760)*100vw);
  }
}

.business_list {
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .business_list {
    margin-bottom: calc((60/760)*100vw);
    padding: 0 calc((30/760)*100vw);
  }
}
.business_list_item {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .business_list_item {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    margin-bottom: calc((60/760)*100vw);
  }
}
.business_list_item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px) {
  .business_list_item:nth-child(even) {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
.business_list_item:last-child {
  margin-bottom: 0;
}
.business_list_img {
  width: 60%;
}
@media screen and (max-width: 640px) {
  .business_list_img {
    width: 100%;
    margin-bottom: calc((20/760)*100vw);
  }
}
.business_list_textarea {
  width: 40%;
  padding: 0 7%;
}
@media screen and (max-width: 640px) {
  .business_list_textarea {
    width: 100%;
    padding: 0;
  }
}
.business_list_ttl {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .business_list_ttl {
    justify-content: center;
  }
}
.business_list_ttl_num {
  color: rgba(243, 151, 0, 0.3);
  font-family: "Times New Roman", Times, "serif";
  font-size: 100px;
}
@media screen and (max-width: 640px) {
  .business_list_ttl_num {
    font-size: calc((100/760)*100vw);
  }
}
.business_list_ttl_jp {
  font-size: 2.0rem;
  letter-spacing: .2em;
}
@media screen and (max-width: 640px) {
  .business_list_ttl_jp {
    color: #000;
    font-size: calc((40/760)*100vw);
    font-weight: 500;
  }
}
.business_text01 {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.0rem;
  letter-spacing: .2em;
  text-indent: .2em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .business_text01 {
    color: #000;
    font-size: calc((40/760)*100vw);
  }
}

.outline .inner {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .outline .inner {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}
.outline .content_lttl {
  width: 440px;
}
@media screen and (max-width: 640px) {
  .outline .content_lttl {
    width: 100%;
  }
}
.outline_table {
  width: 700px;
  border-top: #CCC 1px solid;
}
@media screen and (max-width: 640px) {
  .outline_table {
    width: 100%;
  }
}
.outline_table tr {
  border-bottom: #CCC 1px solid;
}
.outline_table th, .outline_table td {
  padding: .7em 30px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .outline_table th, .outline_table td {
    padding: .7em 0;
    font-size: calc((28/760)*100vw);
  }
}
.outline_table th {
  width: 25%;
}
.outline_table .bank_list {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.outline_table .bank_list_item {
  width: 35%;
  margin-right: 2em;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .outline_table .bank_list_item {
    width: 100%;
    white-space: normal;
  }
}
.outline_table .bank_list_item:last-child:after {
  content: '（順不同）';
}
@media screen and (max-width: 640px) {
  .outline_table .bank_list_item:last-child:after {
    display: block;
  }
}

.contact_tel {
  margin-bottom: 0;
  font-size: 3.0rem;
  line-height: 1.6;
  letter-spacing: .05em;
  text-indent: .05em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .contact_tel {
    color: #000;
    font-size: calc((50/760)*100vw);
    line-height: 1.3;
  }
}
.contact_closed {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .contact_closed {
    font-size: calc((26/760)*100vw);
  }
}

.privacy_frame {
  height: 245px;
  overflow-y: scroll;
}
@media screen and (max-width: 640px) {
  .privacy_frame {
    height: calc((300/760)*100vw);
  }
}
.privacy_frame p {
  font-size: 1.3rem;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .privacy_frame p {
    font-size: calc((26/760)*100vw);
  }
}
.privacy_ttl {
  margin: 2.5em 0 1.5em;
  color: #00A0E9;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .privacy_ttl {
    font-size: calc((36/760)*100vw);
  }
}
.privacy_list {
  margin-bottom: 1em;
  margin-left: 2em;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .privacy_list {
    font-size: calc((26/760)*100vw);
  }
}
.privacy_list li {
  position: relative;
  padding-left: 1em;
}
.privacy_list li:before {
  position: absolute;
  top: .5em;
  left: 0;
  content: '';
  width: 8px;
  height: 8px;
  background: #000;
}
@media screen and (max-width: 640px) {
  .privacy_list li:before {
    width: calc((8/760)*100vw);
    height: calc((8/760)*100vw);
  }
}

.footer {
  padding: 70px 0 30px;
  background: rgba(178, 220, 249, 0.5);
  text-align: center;
}
@media screen and (max-width: 640px) {
  .footer {
    padding: calc((70/760)*100vw) 0 calc((30/760)*100vw);
  }
}
.footer_logo {
  margin-bottom: 15px;
}
@media screen and (max-width: 640px) {
  .footer_logo {
    width: calc((350/760)*100vw);
    margin: 0 auto calc((15/760)*100vw);
  }
}
.footer_address, .footer_tel {
  margin-bottom: 0;
  line-height: 1.6;
  font-style: normal;
}
.footer_closed {
  font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
  .footer_closed {
    font-size: calc((26/760)*100vw);
  }
}
.footer_copy {
  margin-bottom: 0;
  font-family: "Times New Roman", Times, "serif";
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 640px) {
  .footer_copy {
    font-size: calc((26/760)*100vw);
  }
}
