@charset "UTF-8";

/* reset CSS */
*,::after,::before{-webkit-box-sizing:border-box;box-sizing:border-box}html{line-sizing:normal}body{margin:0}h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.17rem}h4{font-size:1rem}h5{font-size:.83rem}h6{font-size:.67rem}h1{margin:.67em 0}pre{white-space:pre-wrap}hr{border-style:solid;border-width:1px 0 0;color:inherit;height:0;overflow:visible}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle;max-width:100%}canvas,img,svg,video{height:auto}audio{width:100%}img{border-style:none}svg{overflow:hidden}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}


/* Basic
------------------------------------------ */
section,
header,
footer,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
pre,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

input,
textarea {
  font-size: 100%;
  vertical-align: middle;
}

body,
div,
p,
address,
dl,
dt,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  border: none;
  max-width: 100%;
  height: auto;
}

caption {
  text-align: left;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  word-break: break-all;
}

fieldset {
  border: 0;
}

input {
  line-height: 100%;
}

ol,
ul {
  list-style-type: none;
}

label {
  cursor: pointer;
}

address {
  font-style: normal;
}

hr {
  display: none;
  visibility: hidden;
  height: 0;
  border: 0;
}

article,
aside,
header,
hgroup,
footer,
nav,
section,
dialog,
figure {
  display: block;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

em {
  font-weight: bold;
  font-style: normal;
}

/* Form
------------------------------------------ */
button,
select,
textarea,
input {
  font-family: inherit;
}

/* select */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  /*outline: none;*/
}

/* text */
input[type=email],
input[type=tel],
input[type=text] {
  line-height: normal;
}

/* password */
input[type=password] {
  font-family: arial;
  ime-mode: disabled;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button],
input[type=image] {
  cursor: pointer;
}

/* radio */
input[type=checkbox],
input[type=radio] {
  margin: 0 10px 0 0;
  padding: 0;
  vertical-align: 1px;
}

/* iOS style reset */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

textarea,
input[type=email],
input[type=tel],
input[type=text] {
  border-radius: 0;
  -webkit-appearance: none;
  border: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  max-width: 100%;
  font-size: 16px;
}

input[type=email]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=text]::-ms-clear {
  display: none;
}

/**************************************************
baseCSS
**************************************************/
/**************************************************
共通スタイル
**************************************************/
body {
  color: #222;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.-is-modal-opened {
  /*overflow: hidden;*/
}
a {
  color: #222;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:focus {
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

/**************************************************
ユーティリティ
**************************************************/
.u-show-pc {
  display: block;
}
.u-show-pc.-inline {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-show-pc {
    display: none;
  }
}

.u-show-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-show-sp {
    display: block;
  }
  .u-show-sp.-inline {
    display: inline;
  }
}

/******************************************************
video */
.c-background-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  background: #000;
}
.c-background-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.c-background-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/******************************************************
common */
@keyframes anime-slide-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes anime-slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes anime-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* c-lower-bg
*************/
.c-lower-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
  overflow: hidden;
}
.c-lower-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* c-contents
*************/
.c-contents {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* c-header-top
*************/
.c-header-top {
  display: grid;
  place-content: center;

  width: 100%;
  min-height: calc(100vh - 50px);
}
.c-header-top.-lower {
  min-height: 120px;
}
.c-header-top__h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-header-top__logo {
  line-height: 0;
  text-align: center;
}
.c-header-top__logo img {
  max-width: 50vw;
  height: auto;
}
.c-header-top.-lower .c-header-top__logo img {
    width: auto;
    max-width: 100%;
    height: 100px;
}
@media screen and (max-width: 767px) {
  .c-header-top {
    min-height: 100vh;
  }
  .c-header-top__logo img {
    max-width: 85vw;
  }
  .c-header-top.-lower .c-header-top__logo img {
    width: auto;
    max-width: 100%;
    height: 80px;
  }
}

/* c-navigation
*************/
.c-navigation {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  z-index: 10;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: #000;
}
.c-navigation__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.c-navigation__a {
  color: #fff;
}
@media (hover: hover) {
  .c-navigation__a:hover {
    filter: brightness(50%);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-navigation {
    position: fixed;
    height: 100%;
    background: #fff;
    mix-blend-mode: normal;

    opacity: 0;
    pointer-events: none;
  }
  body.-is-sp-menu-open .c-navigation {
    opacity: 1;
    pointer-events: auto;
  }
  .c-navigation__vessel {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    background: #fff;

    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  .c-navigation__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
    font-size: 20px;
    text-align: center;
  }
  .c-navigation__item {
    padding: 0;
  }
  .c-navigation__a {
    color: #222;
  }
}

/* c-hamburger
*************/
.c-hamburger {
  opacity: 0;
  pointer-events: none;

  position: fixed;
  top: 0;
  right: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  
  border: none;
	width: 45px;
	height: 45px;
  background: #fff;

  z-index: 12;
  cursor: pointer;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.c-hamburger__text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-hamburger__icon {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
}
.c-hamburger__line {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
  transition: transform 0.3s ease;
}
.c-hamburger__icon .c-hamburger__line:nth-of-type(1) {
	top: 4px;
}
.c-hamburger__icon .c-hamburger__line:nth-of-type(2) {
	top: 11px;
}
.c-hamburger__icon .c-hamburger__line:nth-of-type(3) {
	bottom: 5px;
}
body.-is-sp-menu-open .c-hamburger__line:nth-of-type(1) {
	top: 0;
	transform: translateY(11.5px) rotate(45deg);
}
body.-is-sp-menu-open .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
body.-is-sp-menu-open .c-hamburger__line:nth-of-type(3) {
  bottom: 0;
  transform: translateY(-11.5px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    opacity: 1;
    pointer-events: auto;
    animation: anime-fadein 1.5s ease forwards;
  }
}

/* c-main
*************/
.c-main {
  position: relative;
  z-index: 1;
}

/* c-footer
*************/
.c-footer {
  position: relative;
  padding: 20px 4%;
  background: transparent;
  color: #fff;
  z-index: 1;
}
.c-footer a {
  color: #fff;
}
.c-footer__vessel {
  margin-inline: auto;
  max-width: 900px;
}
.c-footer__company {
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.c-footer__copy {
  margin-top: 5px;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

/* c-section
*************/
.c-section {
  padding-inline: 4%;
  background: #fff;
}
.c-section.-transparent {
  background: transparent;
}
.c-section.-transparent .c-section-title,
.c-section.-transparent .c-section-h3 {
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.c-section__vessel {
  margin-inline: auto;
  padding-block: 80px;
  max-width: 900px;
}
@media screen and (max-width: 767px) {
  .c-section {
    padding-inline: 20px;
  }
  .c-section__vessel {
    padding-block: 30px;
  }
}

/* c-reserve-section
*************/
.c-section.c-reserve-section {
  margin-top: 30px;
  background: transparent;
}
.c-section.c-reserve-section .c-section__vessel {
  padding: 40px;
  background: #fff;
}
.c-reserve-section__title {
  font-size: 24px;
}
.c-reserve-section__description {
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-section.c-reserve-section {
    margin-top: 20px;
  }
  .c-section.c-reserve-section .c-section__vessel {
    padding: 20px;
  }
  .c-reserve-section__title {
    font-size: 17px;
  }
  .c-reserve-section__description {
    font-size: 14px;
  }
}

/* c-section-title
*************/
.c-section-title {
  font-size: 3.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 28px;
  }
}

/* c-section-h3
*************/
.c-section-h3 {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
* + .c-section-h3 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .c-section-h3 {
    font-size: 20px;
  }
}

/* c-text
*************/
.c-text {
  font-size: 16px;
  text-wrap: pretty;
}
.c-text .fa-solid,
.c-text .fa-brands {
  margin-right: 4px;
  font-size: 24px;
}
.c-text .fa-solid.fa-arrow-up-right-from-square {
  margin-left: 5px;
  font-size: 14px;
}
.c-text.-small {
  font-size: 14px;
}
* + .c-text {
  margin-top: 20px;
}
.c-text + .c-text {
  margin-top: 1.5em;
}
.c-text a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 14px;
  }
  .c-text .fa-solid,
  .c-text .fa-brands {
    font-size: 20px;
  }
  .c-text.-small {
    font-size: 12px;
  }
}

/* c-form-wrap
*************/
.c-form-wrap {
  margin-top: 20px;
}
.c-form-wrap__note {
  font-size: 14px;
}
form + .c-form-wrap__note {
  margin-top: 10px;
  font-size: 14px;
}

/* c-form-table
*************/
.c-form-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.c-form-table th,
.c-form-table td {
  padding: 10px;
  border: 1px solid #ccc;
  vertical-align: top;
}
.c-form-table th {
  width: 30%;
  background: #f5f5f5;
  text-align: left;
}
.c-form-table td input[type="text"],
.c-form-table td input[type="email"],
.c-form-table td textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}
.c-form-table td textarea {
  min-height: 100px;
}
@media screen and (max-width: 767px) {
  .c-form-table {
    display: block;
  }
  .c-form-table tbody {
    display: block;
  }
  .c-form-table th,
  .c-form-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .c-form-table td {
    border-top: none;
  }
  .c-form-table tr {  
    display: block;
  }
  .c-form-table tr + tr th {
    border-top: none;
  }
}

/* c-form-submit-wrap
*************/
.c-form-submit-wrap {
  text-align: center;
  margin-top: 20px;
}

/* c-form-submit
*************/
.c-form-submit {
  display: inline-block;
  padding: 10px 30px;
  width: 200px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background-color: #222;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-form-submit:focus,
.c-form-submit:hover {
  background-color: #555;
}

/* c-form-require
*************/
.c-form-require {
  display: inline-block;
  margin-left: 10px;
  color: #dc143c;
  font-size: 14px;
}

/* c-date
*************/
.c-date {
  margin-top: 10px;
  font-size: 14px;
}

/* c-pickup-gig
*************/
.c-pickup-gig {
  margin-top: 20px;
  padding: 20px;
  background: #f5f5f5;
  border: 3px double #222;
}
.c-pickup-gig__title {
  font-size: 1.2rem;
  font-weight: 700;
}
.c-pickup-gig__text {
  margin-top: 10px;
  font-size: 1rem;
}
.c-pickup-gig__image {
  margin-top: 15px;
  line-height: 0;
}
.c-pickup-gig__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-pickup-gig__title {
    font-size: 16px;
  }
  .c-pickup-gig__text {
    font-size: 14px;
  }
}

/* c-pickup-news
*************/
.c-pickup-news {
  margin-top: 20px;
  padding: 20px;
  background: #f5f5f5;
  border: 3px double #222;
}
.c-pickup-news__title {
  font-size: 1.2rem;
  font-weight: 700;
}
.c-pickup-news__text {
  margin-top: 10px;
  font-size: 1rem;
}
.c-pickup-news__image {
  margin-top: 15px;
  line-height: 0;
}
.c-pickup-news__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-pickup-news__title {
    font-size: 16px;
  }
  .c-pickup-news__text {
    font-size: 14px;
  }
}

/* c-gig-list
*************/
.c-gig-list {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-gig-list {
    margin-top: 10px;
    font-size: 14px;
  }
}

/* c-top-angels
*************/
.c-top-angels {
  margin-top: 20px;
  text-align: center;
}
.c-top-angels img {
  width: 100%;
  height: auto;
}

/* c-angels-list
*************/
.c-angels-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.c-angels-list__item {
  padding: 20px;
  border: 3px double #222;
}
.c-angels-list__photo {
  line-height: 0;
}
.c-angels-list__photo img {
  width: 100%;
  height: auto;
}
.c-angels-list__main {
  margin-top: 15px;
}
.c-angels-list__title {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-angels-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .c-angels-list__photo {
    text-align: center;
  }
  .c-angels-list__photo img {
    max-width: 250px;
  }
  .c-angels-list__title {
    font-size: 24px;
  }
}

/* c-angels-sns
*************/
.c-angels-sns {
  margin-top: 20px;
  
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.c-angels-sns li + li {
  margin-top: 10px;
}
.c-angels-sns i {
  color: #222;
  font-size: 1.8rem;
}

/* c-youtube-video
*************/
* + .c-youtube-video {
  margin-top: 20px;
}
.c-youtube-video + .c-youtube-video {
  margin-top: 30px;
}
.c-youtube-video__wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.c-youtube-video__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* c-release-item
*************/
.c-release-item {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 20px;

  padding: 20px;
  border: 3px double #222;
  background: #fff;
}
.c-release-item.-only-text {
  grid-template-columns: 1fr;
}
* + .c-release-item {
  margin-top: 20px;
}
.c-release-item + .c-release-item {
  margin-top: 30px;
}
.c-release-item__photo {
  line-height: 0;
}
.c-release-item__photo img {
  width: 100%;
  height: auto;
}
.c-release-item__title {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.c-release-item__text {
  font-size: 16px;
  text-wrap: pretty;
}
.c-release-item__text .fa-solid,
.c-release-item__text .fa-brands {
  margin-right: 4px;
  font-size: 24px;
}
.c-release-item__text  .fa-solid.fa-arrow-up-right-from-square {
  margin-left: 5px;
  font-size: 14px;
}
.c-release-item__text.-small {
  font-size: 14px;
}
* + .c-release-item__text.-small,
* + .c-release-item__text {
  margin-top: 10px;
}
.c-release-item__text a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 767px) {
  .c-release-item {
    display: block;
  }
  .c-release-item__photo {
    text-align: center;
  }
  .c-release-item__photo img {
    max-width: 300px;
  }
  .c-release-item__main {
    margin-top: 15px;
  }
}

/* modal
*************/
.c-modal-bg {
  position: absolute;
  top: -30px;
  right: 0;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  background: rgba(0,0,0,0.5);
}
.c-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  text-align: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s;

  z-index: 1000;
}
.c-modal.-is-opened {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal__vessel {
  position: absolute;
  display: table;
  width: 100%;
  height: 100vh;

  pointer-events: none;
}
.c-modal__inner {
  display: table-cell;
  padding: 40px 20px;
  vertical-align: middle;
  pointer-events: none;
}
.c-modal__box {
  position: relative;
  display: inline-block;
  margin-inline: auto;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 80vh;
  background: #fff;
  text-align: left;

	overflow: hidden;
	overflow-y: auto;
	webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
  pointer-events: auto;
}
.c-modal h1 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.c-modal * + .c-text {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .c-modal__box {
    max-height: 80dvh;
  }
  .c-modal h1 {
    font-size: 20px;
  }
}

/* c-modal-close
*************/
.c-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  z-index: 2;
}
.c-modal-close:hover {
  color: #555;
}

/* c-modal-profile
*************/
.c-modal-profile {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 20px;
}
.c-modal-profile__image {
  line-height: 0;
}
.c-modal-profile__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-modal-profile {
    display: block;
  }
  .c-modal-profile__image {
    text-align: center;
  }
  .c-modal-profile__image img {
    max-width: 200px;
  }
  .c-modal-profile__main {
    margin-top: 12px;
  }
}

/* c-form-select
*************/
.c-form-select {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 40px;
  vertical-align: middle;
  overflow: hidden;
}
.c-form-select i {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #222;
  pointer-events: none;
}
.c-form-select select {
  display: inline-block;
  padding: 0 40px 0 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  height: 40px;
  line-height: 1.5;
  background: #FFF;
  color: #101010;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  outline: none;
  text-overflow: ellipsis;
  box-sizing: border-box;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  transition: all 0.3s ease;
}
.c-form-select select.-is-placeholder {
  color: #888;
}
body:not(.-is-touchDevice) .c-form-select select:hover {
  background: #FAFAFA;
}
.c-form-select select:invalid { /* placeholder的なもの */
  color: #A5A9B5;
}
.c-form-select select:focus {
  border-color: #039;
}
.c-form-select select::-ms-expand { /* For IE */
  display: none;
}