@charset "utf-8";

/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
html {
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  line-height: 1.8em;
  color: #000;
  height: 100%;
  font-family: 'Shippori Mincho',游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 400;
}

@media only screen and ( max-width : 767px ) {
  body {
    font-size: 14px;
  }
}
sup,sub {
  font-size: 70%;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #000;
}

a:hover {
  text-decoration: none;
}


a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
.fit {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
}
@media only screen and ( max-width : 767px ) {
  .section {
    padding: 40px 0;
  }
  .box {
    margin-bottom: 40px;
  }
  .br_pc {
    display: none;
  }
  .sp_none {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 60px 0;
  }
  .box {
    margin-bottom: 60px;
  }
  .br_sp {
    display: none;
  }
  .sp {
    display: none;
  }
}



/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  position: sticky;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: #fff;
}
#header_inner {
  position: relative;
}
#nav li a:hover {
  color: #DC000C;
}


@media only screen and ( max-width : 767px ) {
  #header {
    padding: 0 0 0 15px;
  }
  #h_logo {
    padding: 15px 0;
  }
  #h_logo img {
    max-width: 180px;
  }

  #menu_btn {
    cursor: pointer;
    position: relative;
    z-index: 9999;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .3s;
    width: 60px;
    height: 60px;
  }
  .menu-trigger {
    position: relative;
    width: 26px;
    height: 20px;
  }
  .menu-trigger .menu-trigger-line {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #DC000C;
    transition: all .5s;
    border-radius: 4px;
  }
  #menu_btn.active .menu-trigger .menu-trigger-line {
    background-color: #DC000C;
  }
  .menu-trigger .menu-trigger-line:nth-of-type(1) {
    top: 0;
  }
  #menu_btn.active .menu-trigger .menu-trigger-line:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger .menu-trigger-line:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger .menu-trigger-line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .menu-trigger .menu-trigger-line:nth-of-type(2) {
    top: 9px;
  }
  #menu_btn.active .menu-trigger .menu-trigger-line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }

  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    height: 100%;
    transition: all .5s;
  }
  .g_nav {
    width: 300px;
    height: 100%;
    overflow: auto;
    padding: 90px 0 40px;
    background: rgba(255,255,255,.95);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    right: -300px;
    transition: all .3s;
  }
  .g_nav li a {
    position: relative;
    padding: 20px 30px;
    display: block;
    font-size: 16px;
    text-align: center;
  }
  .sub-menu {
    display: none;
    background: #eee;
    padding: 20px 0;
  }
  .sub-menu li a {
    padding: 10px 30px;
    font-size: 15px;
  }

}
@media print, screen and ( min-width : 768px ) {
  #h_logo {
    width: 200px;
  }
  #header_inner {
    padding: 0 20px;
    height: 80px;
    transition: .3s;
  }
  #header.fixed #header_inner {
    height: 50px;
  }
  .overlay,
  #menu_btn {
    display: none;
  }
  .g_nav li {
    margin-right: 20px;
    position: relative;
  }
  .g_nav li:last-child {
    margin-right: 0;
  }
  .g_nav li a {
    font-size: 14px;
    display: block;
    padding: 10px 0;
  }
  .g_nav li ul {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    z-index: 4;
    background-color: #fff;
    width: 180px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    overflow: hidden;
    border: 1px solid #000;
  }
  .g_nav li.parent:hover > ul,
  .g_nav li.parent:active > ul {
    visibility: visible;
    opacity: 1;
  }
  .g_nav li ul li {
    margin-right: 0;
    border-bottom: 1px solid #000;
  }
  .g_nav li ul li:last-child {
    border-bottom: none;
  }
  .g_nav li ul li a {
    padding: 15px 20px;
    display: block;
    line-height: 1.4em;
    text-align: center;
  }
  .g_nav li ul li a:hover {
    color: #E05252;
  }
}
@media print, screen and ( min-width : 992px ) {
  #header_inner {
    padding: 0 40px;
    height: 120px;
  }
  #h_logo {
    width: 260px;
  }
  .g_nav li {
    margin-right: 40px;
  }
  .g_nav li a {
    font-size: 16px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  color: #E71B1E;
}
.f_copy {
  letter-spacing: .15em;
}


@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 30px 0;
    font-size: 12px;
  }

}
@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 60px 0;
    font-size: 14px;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
.btn {
  text-align: center;
  max-width: 250px;
  padding: 20px;
  display: block;
  background: #000;
  color: #fff;
}
.btn_center {
  margin: 0 auto;
}
.sec_tit {
  text-align: center;
  margin-bottom: 1em;
}
.sec_tit:before {
  content: "";
  background: url(../img/pink_line01.png) no-repeat center / 100%;
  display: block;
  margin: 0 auto 1em;
}
.btn_area li {
  position: relative;
}
.btn_area_txt {
  text-align: center;
  display: block;
}
.btn_area_txt span {
  display: inline-block;
  position: relative;
  padding: 0 1em;
}
.btn_area_txt span:before,
.btn_area_txt span:after {
  content: "";
  width: 1px;
  height: 1.2em;
  background: #000;
  position: absolute;
  bottom: 0;
}
.btn_area_txt span:before {
  left: 0;
  transform: rotate(-40deg);
}
.btn_area_txt span:after {
  right: 0;
  transform: rotate(40deg);
}

@media only screen and ( max-width : 767px ) {
  .sec_tit {
    font-size: 22px;
  }
  .sec_tit:before {
    width: 120px;
    height: 16px;
  }
  .btn_area li {
    margin-bottom: 20px;
  }
  .btn_area li:last-child {
    margin-bottom: 0;
  }
  .btn_area_txt {
    margin-bottom: 10px;
  }
}

@media print, screen and ( min-width : 768px ) {
  .sec_tit {
    font-size: 32px;
  }
  .sec_tit:before {
    width: 180px;
    height: 24px;
  }
  .btn_area li {
    width: 250px;
    margin-right: 20px;
  }
  .btn_area li:last-child {
    margin-right: 0;
  }
  .btn_area_txt {
    position: absolute;
    left: 0;
    top: -2em;
    width: 100%;
  }
}



/* ---------------------------------------------------------------------------------------------

　   ANIMATION

--------------------------------------------------------------------------------------------- */

.fadein {
  opacity: 0;
  transition: .8s;
}
.fadein.fadein__active {
  opacity: 1;
  transition-delay: .1s;
}
.fadein.fadein__active.delay1 {
  transition-delay: .4s;
}
.fadein.fadein__active.delay2 {
  transition-delay: .8s;
}
.fadein.fadein__active.delay3 {
  transition-delay: 1.2s;
}
.fadein.fadein__active.delay4 {
  transition-delay: 1.6s;
}
@media print, screen and ( min-width : 768px ) {
  .col3_anim .fadein.fadein__active:nth-child(3n+2) {
    transition-delay: .3s !important;
  }
  .col3_anim .fadein.fadein__active:nth-child(3n) {
    transition-delay: .6s !important;
  }
}

.fadein_up {
  opacity: 0;
  transition: .8s;
  animation-timing-function:cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fadein_up.fadein_up__active {
  opacity: 1;
  animation-name: fadein_up__active;
  animation-duration: 1.2s;
}
@media print, screen and ( min-width : 992px ) {
  .col3_anim .fadein_up.fadein_up__active:nth-child(3n+2) {
    transition-delay: .3s;
    animation-delay: .3s;
  }
  .col3_anim .fadein_up.fadein_up__active:nth-child(3n) {
    transition-delay: .6s;
    animation-delay: .6s;
  }
}
@keyframes fadein_up__active {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}
.fadein_up.fadein_up__active.delay1 {
  transition-delay: .2s;
  animation-delay: .2s;
}
.fadein_up.fadein_up__active.delay2 {
  transition-delay: .4s;
  animation-delay: .4s;
}